Spaces:
Running
on
Zero
Running
on
Zero
khang119966
commited on
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/
|
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/
|
107 |
|
108 |
|
109 |
@spaces.GPU
|
@@ -174,11 +174,11 @@ CSS ="""
|
|
174 |
|
175 |
demo = gr.ChatInterface(
|
176 |
fn=chat,
|
177 |
-
description="""Try [Vintern-1B](https://huggingface.co/5CD-AI/Viet-InternVL2-1B) in this demo. Vintern-1B consists of [InternViT-300M-448px](https://huggingface.co/OpenGVLab/InternViT-300M-448px), an MLP projector, and [Qwen2-0.5B-Instruct](https://huggingface.co/Qwen/Qwen2-0.5B-Instruct).""",
|
178 |
examples=[{"text": "Mô tả hình ảnh.", "files":["./demo_3.jpg"]},
|
179 |
{"text": "Trích xuất các thông tin từ ảnh.", "files":["./demo_1.jpg"]},
|
180 |
{"text": "Mô tả hình ảnh một cách chi tiết.", "files":["./demo_2.jpg"]}],
|
181 |
-
title="❄️ Vintern-1B ❄️",
|
182 |
multimodal=True,
|
183 |
css=CSS
|
184 |
)
|
|
|
98 |
return pixel_values
|
99 |
|
100 |
model = AutoModel.from_pretrained(
|
101 |
+
"5CD-AI/Vintern-1B-v2",
|
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-1B-v2", trust_remote_code=True, use_fast=False)
|
107 |
|
108 |
|
109 |
@spaces.GPU
|
|
|
174 |
|
175 |
demo = gr.ChatInterface(
|
176 |
fn=chat,
|
177 |
+
description="""Try [Vintern-1B-v2](https://huggingface.co/5CD-AI/Viet-InternVL2-1B) in this demo. Vintern-1B-v2 consists of [InternViT-300M-448px](https://huggingface.co/OpenGVLab/InternViT-300M-448px), an MLP projector, and [Qwen2-0.5B-Instruct](https://huggingface.co/Qwen/Qwen2-0.5B-Instruct).""",
|
178 |
examples=[{"text": "Mô tả hình ảnh.", "files":["./demo_3.jpg"]},
|
179 |
{"text": "Trích xuất các thông tin từ ảnh.", "files":["./demo_1.jpg"]},
|
180 |
{"text": "Mô tả hình ảnh một cách chi tiết.", "files":["./demo_2.jpg"]}],
|
181 |
+
title="❄️ Vintern-1B-v2 ❄️",
|
182 |
multimodal=True,
|
183 |
css=CSS
|
184 |
)
|