Image-Text-to-Text
Transformers
Safetensors
qwen2_5_vl
autonomous-driving
vision-language-action
trajectory-prediction
navsim
vllm
conversational
text-generation-inference
Instructions to use AppliedIntuitionResearch/nord with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AppliedIntuitionResearch/nord with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="AppliedIntuitionResearch/nord") 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 AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("AppliedIntuitionResearch/nord") model = AutoModelForMultimodalLM.from_pretrained("AppliedIntuitionResearch/nord", device_map="auto") 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?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use AppliedIntuitionResearch/nord with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "AppliedIntuitionResearch/nord" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "AppliedIntuitionResearch/nord", "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/AppliedIntuitionResearch/nord
- SGLang
How to use AppliedIntuitionResearch/nord 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 "AppliedIntuitionResearch/nord" \ --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": "AppliedIntuitionResearch/nord", "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 "AppliedIntuitionResearch/nord" \ --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": "AppliedIntuitionResearch/nord", "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 AppliedIntuitionResearch/nord with Docker Model Runner:
docker model run hf.co/AppliedIntuitionResearch/nord
Update title, GitHub org, and description wording
Browse files
README.md
CHANGED
|
@@ -11,16 +11,16 @@ tags:
|
|
| 11 |
- vllm
|
| 12 |
---
|
| 13 |
|
| 14 |
-
# NoRD:
|
| 15 |
|
| 16 |
-
**CVPR 2026** | [arXiv](https://arxiv.org/abs/2602.21172) | [Project Page](https://nord-vla-ai.github.io/) | [GitHub](https://github.com/
|
| 17 |
|
| 18 |
*Ishaan Rawal · Shubh Gupta · Yihan Hu · Wei Zhan*
|
| 19 |
|
| 20 |
This is the **paper's main result**: [Qwen2.5-VL-3B](https://huggingface.co/Qwen/Qwen2.5-VL-3B-Instruct)
|
| 21 |
supervised fine-tuned and then further trained with Dr. GRPO to directly predict driving
|
| 22 |
-
trajectories as discrete tokens
|
| 23 |
-
reasoning-based VLA baselines.
|
| 24 |
|
| 25 |
| Model | Training | NAVSIM PDMS |
|
| 26 |
|---|---|---|
|
|
@@ -38,7 +38,7 @@ PDMS 0.8626
|
|
| 38 |
|
| 39 |
## Usage
|
| 40 |
|
| 41 |
-
Install the [`nord`](https://github.com/
|
| 42 |
|
| 43 |
```bash
|
| 44 |
pip install "nord[serve]"
|
|
@@ -60,7 +60,7 @@ output = agent.predict(nord.NordInput(
|
|
| 60 |
print(output.trajectory.shape) # (40, 3) — x, y, heading at 10 Hz, 4 seconds
|
| 61 |
```
|
| 62 |
|
| 63 |
-
Full inference and NAVSIM evaluation instructions: [github.com/
|
| 64 |
|
| 65 |
This repo bundles the K-Disc trajectory tokenizer vocab (`vocab.pkl`, 2048 clusters) used to
|
| 66 |
decode the model's output tokens into `(x, y, heading)` trajectories.
|
|
@@ -80,4 +80,4 @@ decode the model's output tokens into `(x, y, heading)` trajectories.
|
|
| 80 |
|
| 81 |
This checkpoint is released under [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/)
|
| 82 |
(non-commercial). The `nord` inference client code is separately licensed under Apache 2.0 —
|
| 83 |
-
see [github.com/
|
|
|
|
| 11 |
- vllm
|
| 12 |
---
|
| 13 |
|
| 14 |
+
# NoRD: A Data-Efficient Vision-Language-Action Model that Drives without Reasoning (SFT + Dr. GRPO)
|
| 15 |
|
| 16 |
+
**CVPR 2026** | [arXiv](https://arxiv.org/abs/2602.21172) | [Project Page](https://nord-vla-ai.github.io/) | [GitHub](https://github.com/Applied-Intuition-Open-Source/nord)
|
| 17 |
|
| 18 |
*Ishaan Rawal · Shubh Gupta · Yihan Hu · Wei Zhan*
|
| 19 |
|
| 20 |
This is the **paper's main result**: [Qwen2.5-VL-3B](https://huggingface.co/Qwen/Qwen2.5-VL-3B-Instruct)
|
| 21 |
supervised fine-tuned and then further trained with Dr. GRPO to directly predict driving
|
| 22 |
+
trajectories as discrete tokens without chain-of-thought reasoning, using 3× fewer tokens
|
| 23 |
+
than reasoning-based VLA baselines.
|
| 24 |
|
| 25 |
| Model | Training | NAVSIM PDMS |
|
| 26 |
|---|---|---|
|
|
|
|
| 38 |
|
| 39 |
## Usage
|
| 40 |
|
| 41 |
+
Install the [`nord`](https://github.com/Applied-Intuition-Open-Source/nord) client and serve with vLLM:
|
| 42 |
|
| 43 |
```bash
|
| 44 |
pip install "nord[serve]"
|
|
|
|
| 60 |
print(output.trajectory.shape) # (40, 3) — x, y, heading at 10 Hz, 4 seconds
|
| 61 |
```
|
| 62 |
|
| 63 |
+
Full inference and NAVSIM evaluation instructions: [github.com/Applied-Intuition-Open-Source/nord](https://github.com/Applied-Intuition-Open-Source/nord).
|
| 64 |
|
| 65 |
This repo bundles the K-Disc trajectory tokenizer vocab (`vocab.pkl`, 2048 clusters) used to
|
| 66 |
decode the model's output tokens into `(x, y, heading)` trajectories.
|
|
|
|
| 80 |
|
| 81 |
This checkpoint is released under [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/)
|
| 82 |
(non-commercial). The `nord` inference client code is separately licensed under Apache 2.0 —
|
| 83 |
+
see [github.com/Applied-Intuition-Open-Source/nord](https://github.com/Applied-Intuition-Open-Source/nord).
|