Update app.py
Browse files
app.py
CHANGED
@@ -141,7 +141,7 @@ def predict(_chatbot, task_history) -> tuple:
|
|
141 |
response = tokenizer.decode(pred.cpu()[0], skip_special_tokens=False)
|
142 |
|
143 |
if 'image' in query[0]:
|
144 |
-
|
145 |
|
146 |
if 'image' in query[0]:
|
147 |
image = tokenizer.draw_bbox_on_latest_picture(response)
|
|
|
141 |
response = tokenizer.decode(pred.cpu()[0], skip_special_tokens=False)
|
142 |
|
143 |
if 'image' in query[0]:
|
144 |
+
print("Model response:", response)
|
145 |
|
146 |
if 'image' in query[0]:
|
147 |
image = tokenizer.draw_bbox_on_latest_picture(response)
|