Text Generation
Transformers
Safetensors
mistral
nvfp4
conversational
text-generation-inference
compressed-tensors
Instructions to use DataSnake/Mistral-Nemo-Instruct-2407-Down-4over6 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use DataSnake/Mistral-Nemo-Instruct-2407-Down-4over6 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="DataSnake/Mistral-Nemo-Instruct-2407-Down-4over6") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("DataSnake/Mistral-Nemo-Instruct-2407-Down-4over6") model = AutoModelForCausalLM.from_pretrained("DataSnake/Mistral-Nemo-Instruct-2407-Down-4over6") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.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(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use DataSnake/Mistral-Nemo-Instruct-2407-Down-4over6 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "DataSnake/Mistral-Nemo-Instruct-2407-Down-4over6" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "DataSnake/Mistral-Nemo-Instruct-2407-Down-4over6", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/DataSnake/Mistral-Nemo-Instruct-2407-Down-4over6
- SGLang
How to use DataSnake/Mistral-Nemo-Instruct-2407-Down-4over6 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 "DataSnake/Mistral-Nemo-Instruct-2407-Down-4over6" \ --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": "DataSnake/Mistral-Nemo-Instruct-2407-Down-4over6", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "DataSnake/Mistral-Nemo-Instruct-2407-Down-4over6" \ --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": "DataSnake/Mistral-Nemo-Instruct-2407-Down-4over6", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use DataSnake/Mistral-Nemo-Instruct-2407-Down-4over6 with Docker Model Runner:
docker model run hf.co/DataSnake/Mistral-Nemo-Instruct-2407-Down-4over6
Add pipeline tag, library name and code link
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,8 +1,30 @@
|
|
| 1 |
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
base_model:
|
| 4 |
- mistralai/Mistral-Nemo-Instruct-2407
|
|
|
|
| 5 |
tags:
|
| 6 |
- nvfp4
|
|
|
|
|
|
|
| 7 |
---
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
base_model:
|
| 3 |
- mistralai/Mistral-Nemo-Instruct-2407
|
| 4 |
+
license: apache-2.0
|
| 5 |
tags:
|
| 6 |
- nvfp4
|
| 7 |
+
pipeline_tag: text-generation
|
| 8 |
+
library_name: transformers
|
| 9 |
---
|
| 10 |
+
|
| 11 |
+
Quantized NVFP4 version of [Mistral-Nemo-Instruct-2407](https://huggingface.co/mistralai/Mistral-Nemo-Instruct-2407) with the `down_proj` tensors calibrated in `FP8_DYNAMIC` and the rest using [Four Over Six](https://arxiv.org/abs/2512.02010) adaptive block scaling, created to compare against my [hybrid quant](https://huggingface.co/DataSnake/Mistral-Nemo-Instruct-2407-NVFP4-FP8). Made with the same version of llm-compressor and compressed-tensors, using the same calibration data, to isolate the variables as much as possible.
|
| 12 |
+
|
| 13 |
+
## Resources
|
| 14 |
+
|
| 15 |
+
- **Paper:** [Four Over Six: More Accurate NVFP4 Quantization with Adaptive Block Scaling](https://arxiv.org/abs/2512.02010)
|
| 16 |
+
- **GitHub Repository:** [mit-han-lab/fouroversix](https://github.com/mit-han-lab/fouroversix)
|
| 17 |
+
|
| 18 |
+
## Citation
|
| 19 |
+
|
| 20 |
+
```bibtex
|
| 21 |
+
@misc{cook2025sixaccuratenvfp4quantization,
|
| 22 |
+
title={Four Over Six: More Accurate NVFP4 Quantization with Adaptive Block Scaling},
|
| 23 |
+
author={Jack Cook and Junxian Guo and Guangxuan Xiao and Yujun Lin and Song Han},
|
| 24 |
+
year={2025},
|
| 25 |
+
eprint={2512.02010},
|
| 26 |
+
archivePrefix={arXiv},
|
| 27 |
+
primaryClass={cs.CL},
|
| 28 |
+
url={https://arxiv.org/abs/2512.02010},
|
| 29 |
+
}
|
| 30 |
+
```
|