Spaces:
Running
on
Zero
Running
on
Zero
khang119966
commited on
Commit
•
988fb91
1
Parent(s):
fdf7dcf
Update app.py
Browse files
app.py
CHANGED
@@ -98,12 +98,12 @@ def load_image(image_file, input_size=448, max_num=12):
|
|
98 |
return pixel_values
|
99 |
|
100 |
model = AutoModel.from_pretrained(
|
101 |
-
"5CD-AI/Vintern-
|
102 |
torch_dtype=torch.bfloat16,
|
103 |
low_cpu_mem_usage=True,
|
104 |
trust_remote_code=True,
|
105 |
).eval().cuda()
|
106 |
-
tokenizer = AutoTokenizer.from_pretrained("5CD-AI/Vintern-
|
107 |
|
108 |
|
109 |
@spaces.GPU
|
@@ -203,11 +203,11 @@ button.svelte-1lcyrx4[aria-label="user's message: a file of type image/jpeg, "]
|
|
203 |
|
204 |
demo = gr.ChatInterface(
|
205 |
fn=chat,
|
206 |
-
description="""Try [Vintern-4B-v1](https://huggingface.co/5CD-AI/Vintern-
|
207 |
examples=[{"text": "Mô tả hình ảnh.", "files":["./demo_3.jpg"]},
|
208 |
{"text": "Trích xuất các thông tin từ ảnh.", "files":["./demo_1.jpg"]},
|
209 |
{"text": "Mô tả hình ảnh một cách chi tiết.", "files":["./demo_2.jpg"]}],
|
210 |
-
title="❄️ Vintern-
|
211 |
multimodal=True,
|
212 |
css=CSS
|
213 |
)
|
|
|
98 |
return pixel_values
|
99 |
|
100 |
model = AutoModel.from_pretrained(
|
101 |
+
"5CD-AI/Vintern-3B-beta",
|
102 |
torch_dtype=torch.bfloat16,
|
103 |
low_cpu_mem_usage=True,
|
104 |
trust_remote_code=True,
|
105 |
).eval().cuda()
|
106 |
+
tokenizer = AutoTokenizer.from_pretrained("5CD-AI/Vintern-3B-beta", trust_remote_code=True, use_fast=False)
|
107 |
|
108 |
|
109 |
@spaces.GPU
|
|
|
203 |
|
204 |
demo = gr.ChatInterface(
|
205 |
fn=chat,
|
206 |
+
description="""Try [Vintern-4B-v1](https://huggingface.co/5CD-AI/Vintern-3B-beta) in this demo. Vintern-3B-beta consists of [InternViT-300M-448px](https://huggingface.co/OpenGVLab/InternViT-300M-448px), an MLP projector, and [Qwen2.5-3B-Instruct](https://huggingface.co/Qwen/Qwen2.5-3B-Instruct).""",
|
207 |
examples=[{"text": "Mô tả hình ảnh.", "files":["./demo_3.jpg"]},
|
208 |
{"text": "Trích xuất các thông tin từ ảnh.", "files":["./demo_1.jpg"]},
|
209 |
{"text": "Mô tả hình ảnh một cách chi tiết.", "files":["./demo_2.jpg"]}],
|
210 |
+
title="❄️ Vintern-3B-beta ❄️",
|
211 |
multimodal=True,
|
212 |
css=CSS
|
213 |
)
|