Image-Text-to-Text
Transformers
Safetensors
multilingual
internvl_chat
feature-extraction
internvl
vision-language model
monolithic
conversational
custom_code
Instructions to use OpenGVLab/HoVLE-HD with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use OpenGVLab/HoVLE-HD with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="OpenGVLab/HoVLE-HD", trust_remote_code=True) messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("OpenGVLab/HoVLE-HD", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use OpenGVLab/HoVLE-HD with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "OpenGVLab/HoVLE-HD" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OpenGVLab/HoVLE-HD", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/OpenGVLab/HoVLE-HD
- SGLang
How to use OpenGVLab/HoVLE-HD 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 "OpenGVLab/HoVLE-HD" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OpenGVLab/HoVLE-HD", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'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 "OpenGVLab/HoVLE-HD" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OpenGVLab/HoVLE-HD", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use OpenGVLab/HoVLE-HD with Docker Model Runner:
docker model run hf.co/OpenGVLab/HoVLE-HD
Add link to Github repository
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,20 +1,23 @@
|
|
| 1 |
---
|
| 2 |
-
license: mit
|
| 3 |
-
pipeline_tag: image-text-to-text
|
| 4 |
-
library_name: transformers
|
| 5 |
base_model:
|
| 6 |
- internlm/internlm2-chat-1_8b
|
| 7 |
-
base_model_relation: merge
|
| 8 |
language:
|
| 9 |
- multilingual
|
|
|
|
|
|
|
|
|
|
| 10 |
tags:
|
| 11 |
- internvl
|
| 12 |
- vision-language model
|
| 13 |
- monolithic
|
|
|
|
| 14 |
---
|
|
|
|
| 15 |
# HoVLE
|
| 16 |
|
| 17 |
-
[\[π HoVLE Paper\]](https://arxiv.org/pdf/2412.16158) [\[π Quick Start\]](#quick-start)
|
|
|
|
|
|
|
| 18 |
|
| 19 |
<a id="radar"></a>
|
| 20 |
|
|
@@ -54,8 +57,7 @@ This repository releases the HoVLE-HD model with 2.6B parameters. It is built up
|
|
| 54 |
<img src="assets/performance2.png" width="90%" />
|
| 55 |
</p>
|
| 56 |
|
| 57 |
-
- Sources of the results include the original papers, our evaluation with [VLMEvalKit](https://github.com/open-compass/VLMEvalKit), and [OpenCompass](https://rank.opencompass.org.cn/leaderboard-multimodal/?m=REALTIME).
|
| 58 |
-
- Please note that evaluating the same model using different testing toolkits can result in slight differences, which is normal. Updates to code versions and variations in environment and hardware can also cause minor discrepancies in results.
|
| 59 |
|
| 60 |
|
| 61 |
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
base_model:
|
| 3 |
- internlm/internlm2-chat-1_8b
|
|
|
|
| 4 |
language:
|
| 5 |
- multilingual
|
| 6 |
+
library_name: transformers
|
| 7 |
+
license: mit
|
| 8 |
+
pipeline_tag: image-text-to-text
|
| 9 |
tags:
|
| 10 |
- internvl
|
| 11 |
- vision-language model
|
| 12 |
- monolithic
|
| 13 |
+
base_model_relation: merge
|
| 14 |
---
|
| 15 |
+
|
| 16 |
# HoVLE
|
| 17 |
|
| 18 |
+
[\\[π HoVLE Paper\\]](https://arxiv.org/pdf/2412.16158) [\\[π Quick Start\\]](#quick-start)
|
| 19 |
+
|
| 20 |
+
For code, see https://github.com/OpenGVLab/HoVLE.
|
| 21 |
|
| 22 |
<a id="radar"></a>
|
| 23 |
|
|
|
|
| 57 |
<img src="assets/performance2.png" width="90%" />
|
| 58 |
</p>
|
| 59 |
|
| 60 |
+
- Sources of the results include the original papers, our evaluation with [VLMEvalKit](https://github.com/open-compass/VLMEvalKit), and [OpenCompass](https://rank.opencompass.org.cn/leaderboard-multimodal/?m=REALTIME).\n- Please note that evaluating the same model using different testing toolkits can result in slight differences, which is normal. Updates to code versions and variations in environment and hardware can also cause minor discrepancies in results.
|
|
|
|
| 61 |
|
| 62 |
|
| 63 |
|