Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -14,9 +14,9 @@ else:
|
|
14 |
device, dtype = "cpu", torch.float32
|
15 |
|
16 |
model_id = "vikhyatk/moondream2"
|
17 |
-
tokenizer = AutoTokenizer.from_pretrained(model_id, revision="2024-03-
|
18 |
moondream = AutoModelForCausalLM.from_pretrained(
|
19 |
-
model_id, trust_remote_code=True, revision="2024-03-
|
20 |
).to(device=device, dtype=dtype)
|
21 |
moondream.eval()
|
22 |
|
|
|
14 |
device, dtype = "cpu", torch.float32
|
15 |
|
16 |
model_id = "vikhyatk/moondream2"
|
17 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id, revision="2024-03-06")
|
18 |
moondream = AutoModelForCausalLM.from_pretrained(
|
19 |
+
model_id, trust_remote_code=True, revision="2024-03-06"
|
20 |
).to(device=device, dtype=dtype)
|
21 |
moondream.eval()
|
22 |
|