vigneshwar472
commited on
Commit
•
492def7
1
Parent(s):
b84833d
Update app.py 2
Browse files
app.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
# import libraries and load the model
|
2 |
-
|
3 |
import random
|
4 |
import requests
|
5 |
from PIL import Image, ImageDraw, ImageFont
|
@@ -119,7 +119,7 @@ with gr.Blocks() as demo:
|
|
119 |
with gr.Column(scale=2):
|
120 |
|
121 |
chatbot = gr.Chatbot()
|
122 |
-
msg = gr.Textbox()
|
123 |
clear = gr.ClearButton([msg, chatbot])
|
124 |
|
125 |
def user(message, chat_history):
|
@@ -151,9 +151,9 @@ with gr.Blocks() as demo:
|
|
151 |
return_tensors = "pt"
|
152 |
)
|
153 |
|
154 |
-
inputs = inputs.to("cuda")
|
155 |
|
156 |
-
output_ids = cbt_model.generate(**inputs, max_new_tokens=
|
157 |
|
158 |
generated_ids = [
|
159 |
output_ids[len(input_ids) :]
|
|
|
1 |
# import libraries and load the model
|
2 |
+
|
3 |
import random
|
4 |
import requests
|
5 |
from PIL import Image, ImageDraw, ImageFont
|
|
|
119 |
with gr.Column(scale=2):
|
120 |
|
121 |
chatbot = gr.Chatbot()
|
122 |
+
msg = gr.Textbox(label='Chat with your image', placeholder='Describe the image and highlight the key visual information')
|
123 |
clear = gr.ClearButton([msg, chatbot])
|
124 |
|
125 |
def user(message, chat_history):
|
|
|
151 |
return_tensors = "pt"
|
152 |
)
|
153 |
|
154 |
+
#inputs = inputs.to("cuda")
|
155 |
|
156 |
+
output_ids = cbt_model.generate(**inputs, max_new_tokens=512)
|
157 |
|
158 |
generated_ids = [
|
159 |
output_ids[len(input_ids) :]
|