Image-Text-to-Text
Transformers
Safetensors
English
Chinese
hy_v3_vl
embodied-ai
vision-language-model
robotics
spatial-reasoning
multimodal
Mixture of Experts
vllm
conversational
custom_code
Instructions to use tencent/Hy-Embodied-VLM-1.0 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tencent/Hy-Embodied-VLM-1.0 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="tencent/Hy-Embodied-VLM-1.0", 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 AutoModelForImageTextToText model = AutoModelForImageTextToText.from_pretrained("tencent/Hy-Embodied-VLM-1.0", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use tencent/Hy-Embodied-VLM-1.0 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tencent/Hy-Embodied-VLM-1.0" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tencent/Hy-Embodied-VLM-1.0", "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/tencent/Hy-Embodied-VLM-1.0
- SGLang
How to use tencent/Hy-Embodied-VLM-1.0 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 "tencent/Hy-Embodied-VLM-1.0" \ --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": "tencent/Hy-Embodied-VLM-1.0", "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 "tencent/Hy-Embodied-VLM-1.0" \ --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": "tencent/Hy-Embodied-VLM-1.0", "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 tencent/Hy-Embodied-VLM-1.0 with Docker Model Runner:
docker model run hf.co/tencent/Hy-Embodied-VLM-1.0
Add model card
Browse files
README.md
CHANGED
|
@@ -48,7 +48,7 @@ To deliver strong physical-world understanding and interaction capabilities whil
|
|
| 48 |
|
| 49 |
## ⭐️ Key Features
|
| 50 |
|
| 51 |
-
* 🧠 **Efficient
|
| 52 |
* 🌏 **Action-Centric Capability Taxonomy** — We define three progressive levels of embodied intelligence: (i) **Action-Relevant State Understanding** for accurately understanding the states of the agent and its environment, (ii) **Action–Transition Reasoning** for understanding actions, planning them, and reasoning about their consequences, and (iii) **Sequential and Adaptive Reasoning** for long-horizon planning, reflection, repair, and recovery. Data and training are systematically designed around this taxonomy.
|
| 53 |
* 🔁 **Self-Evolving Post-Training** — Embodied agentic reasoning is cultivated through a self-evolving loop that couples reinforcement learning with rejection-sampling fine-tuning, seeded from a small curated set of high-quality thinking traces. A final reward-specialized stage trains continuous-reward and discrete-reward RL policies separately and fuses them, delivering sharp geometric precision alongside robust decision-making, planning, and reflection quality.
|
| 54 |
* 🏆 **State-of-the-Art on Embodied Benchmarks** — Ranks 1st on 19 of 38 benchmarks and 2nd on another 11, outperforming Qwen3.6-A3B (+4.4% avg), Cosmos 3-8B, and Embodied-R1.5-8B. State-of-the-art on R2R-CE vision-and-language navigation (RGB-only setting) and strong zero-shot performance on Matterport3D Object Goal Navigation.
|
|
|
|
| 48 |
|
| 49 |
## ⭐️ Key Features
|
| 50 |
|
| 51 |
+
* 🧠 **Efficient MoE, ~3B activated** — Combines the Hy3-A3B language backbone with the Hy-ViT2 vision encoder in a Mixture-of-Experts architecture. Only ~3B parameters are activated per token — approximately one-tenth of the activated parameters of the previous-generation A32B system, while achieving nearly comparable overall performance.
|
| 52 |
* 🌏 **Action-Centric Capability Taxonomy** — We define three progressive levels of embodied intelligence: (i) **Action-Relevant State Understanding** for accurately understanding the states of the agent and its environment, (ii) **Action–Transition Reasoning** for understanding actions, planning them, and reasoning about their consequences, and (iii) **Sequential and Adaptive Reasoning** for long-horizon planning, reflection, repair, and recovery. Data and training are systematically designed around this taxonomy.
|
| 53 |
* 🔁 **Self-Evolving Post-Training** — Embodied agentic reasoning is cultivated through a self-evolving loop that couples reinforcement learning with rejection-sampling fine-tuning, seeded from a small curated set of high-quality thinking traces. A final reward-specialized stage trains continuous-reward and discrete-reward RL policies separately and fuses them, delivering sharp geometric precision alongside robust decision-making, planning, and reflection quality.
|
| 54 |
* 🏆 **State-of-the-Art on Embodied Benchmarks** — Ranks 1st on 19 of 38 benchmarks and 2nd on another 11, outperforming Qwen3.6-A3B (+4.4% avg), Cosmos 3-8B, and Embodied-R1.5-8B. State-of-the-art on R2R-CE vision-and-language navigation (RGB-only setting) and strong zero-shot performance on Matterport3D Object Goal Navigation.
|