Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -54,17 +54,26 @@ def generate_answer_git(processor, model, image, question):
|
|
54 |
# print(generated_ids)
|
55 |
# generated_answer = processor.batch_decode(generated_ids.sequences, skip_special_tokens=True)
|
56 |
# print(generated_answer)
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
print(
|
66 |
-
|
67 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
|
69 |
|
70 |
return 'haha'
|
|
|
54 |
# print(generated_ids)
|
55 |
# generated_answer = processor.batch_decode(generated_ids.sequences, skip_special_tokens=True)
|
56 |
# print(generated_answer)
|
57 |
+
inputs = processor(images=image, text=question, add_special_tokens=False, return_tensors="pt")
|
58 |
+
inputs["max_length"] = 20
|
59 |
+
inputs["num_beams"] = 1
|
60 |
+
inputs["do_sample"] = True
|
61 |
+
inputs["top_k"] = 50
|
62 |
+
inputs["top_p"] = 0.95
|
63 |
+
|
64 |
+
out = model.generate(**inputs)
|
65 |
+
print(processor.batch_decode(out, skip_special_tokens=True)[0])
|
66 |
+
|
67 |
+
# encoding = processor(images=image, text=question, return_tensors="pt")
|
68 |
+
|
69 |
+
# with torch.no_grad():
|
70 |
+
# outputs = model(**encoding)
|
71 |
+
# print(outputs.logits)
|
72 |
+
# predicted_class_idx = outputs.logits[0].argmax(-1).item
|
73 |
+
# # return model.config.id2label[predicted_class_idx]
|
74 |
+
# print(predicted_class_idx)
|
75 |
+
# print(model.config.id2label)
|
76 |
+
# print(model.config.id2label[predicted_class_idx])
|
77 |
|
78 |
|
79 |
return 'haha'
|