Instructions to use vikhyatk/moondream2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use vikhyatk/moondream2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="vikhyatk/moondream2", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("vikhyatk/moondream2", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use vikhyatk/moondream2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "vikhyatk/moondream2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "vikhyatk/moondream2", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/vikhyatk/moondream2
- SGLang
How to use vikhyatk/moondream2 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "vikhyatk/moondream2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "vikhyatk/moondream2", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "vikhyatk/moondream2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "vikhyatk/moondream2", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use vikhyatk/moondream2 with Docker Model Runner:
docker model run hf.co/vikhyatk/moondream2
Update README.md
Browse files
README.md
CHANGED
|
@@ -7,14 +7,15 @@ moondream2 is a small vision language model designed to run efficiently on edge
|
|
| 7 |
|
| 8 |
**Benchmarks**
|
| 9 |
|
| 10 |
-
| Release | VQAv2 | GQA | TextVQA | TallyQA<br>(simple/full) | POPE<br>(rand/pop/adv)
|
| 11 |
-
| --- | --- | --- | --- | --- | --- |
|
| 12 |
-
| **2024-
|
| 13 |
-
| 2024-05-
|
| 14 |
-
| 2024-
|
| 15 |
-
| 2024-
|
| 16 |
-
| 2024-03-
|
| 17 |
-
| 2024-03-
|
|
|
|
| 18 |
|
| 19 |
|
| 20 |
**Usage**
|
|
|
|
| 7 |
|
| 8 |
**Benchmarks**
|
| 9 |
|
| 10 |
+
| Release | VQAv2 | GQA | TextVQA | DocVQA | TallyQA<br>(simple/full) | POPE<br>(rand/pop/adv) |
|
| 11 |
+
| --- | --- | --- | --- | --- | --- | --- |
|
| 12 |
+
| **2024-07-23** (latest) | 79.4 | 64.9 | 60.2 | 61.9 | 82.0 / 76.8 | 91.3 / 89.7 / 86.9 |
|
| 13 |
+
| 2024-05-20 | 79.4 | 63.1 | 57.2 | - | 82.1 / 76.6 | 91.5 / 89.6 / 86.2 |
|
| 14 |
+
| 2024-05-08 | 79.0 | 62.7 | 53.1 | - | 81.6 / 76.1 | 90.6 / 88.3 / 85.0 |
|
| 15 |
+
| 2024-04-02 | 77.7 | 61.7 | 49.7 | - | 80.1 / 74.2 | - |
|
| 16 |
+
| 2024-03-13 | 76.8 | 60.6 | 46.4 | - | 79.6 / 73.3 | - |
|
| 17 |
+
| 2024-03-06 | 75.4 | 59.8 | 43.1 | - | 79.5 / 73.2 | - |
|
| 18 |
+
| 2024-03-04 | 74.2 | 58.5 | 36.4 | - | - | - |
|
| 19 |
|
| 20 |
|
| 21 |
**Usage**
|