mrhacker7599
commited on
Commit
•
429e08a
1
Parent(s):
ed0f56d
Update README.md
Browse files
README.md
CHANGED
@@ -8,7 +8,7 @@ language:
|
|
8 |
1.6B parameter model built by [@vikhyatk](https://x.com/vikhyatk) using SigLIP, Phi-1.5 and the LLaVa training dataset.
|
9 |
The model is release for research purposes only, commercial use is not allowed.
|
10 |
|
11 |
-
Try it out on [Huggingface Spaces](https://huggingface.co/spaces/
|
12 |
|
13 |
**Usage**
|
14 |
|
@@ -20,7 +20,7 @@ pip install transformers timm einops
|
|
20 |
from transformers import AutoModelForCausalLM, CodeGenTokenizerFast as Tokenizer
|
21 |
from PIL import Image
|
22 |
|
23 |
-
model_id = "
|
24 |
model = AutoModelForCausalLM.from_pretrained(model_id, trust_remote_code=True)
|
25 |
tokenizer = Tokenizer.from_pretrained(model_id)
|
26 |
|
|
|
8 |
1.6B parameter model built by [@vikhyatk](https://x.com/vikhyatk) using SigLIP, Phi-1.5 and the LLaVa training dataset.
|
9 |
The model is release for research purposes only, commercial use is not allowed.
|
10 |
|
11 |
+
Try it out on [Huggingface Spaces](https://huggingface.co/spaces/mrhacker7599/moondream-Vision)!
|
12 |
|
13 |
**Usage**
|
14 |
|
|
|
20 |
from transformers import AutoModelForCausalLM, CodeGenTokenizerFast as Tokenizer
|
21 |
from PIL import Image
|
22 |
|
23 |
+
model_id = "mrhacker7599/moondream1.0"
|
24 |
model = AutoModelForCausalLM.from_pretrained(model_id, trust_remote_code=True)
|
25 |
tokenizer = Tokenizer.from_pretrained(model_id)
|
26 |
|