Instructions to use deepreinforce-ai/Ornith-1.0-35B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use deepreinforce-ai/Ornith-1.0-35B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="deepreinforce-ai/Ornith-1.0-35B") 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("deepreinforce-ai/Ornith-1.0-35B") model = AutoModelForMultimodalLM.from_pretrained("deepreinforce-ai/Ornith-1.0-35B", 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]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use deepreinforce-ai/Ornith-1.0-35B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "deepreinforce-ai/Ornith-1.0-35B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "deepreinforce-ai/Ornith-1.0-35B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/deepreinforce-ai/Ornith-1.0-35B
- SGLang
How to use deepreinforce-ai/Ornith-1.0-35B 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 "deepreinforce-ai/Ornith-1.0-35B" \ --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": "deepreinforce-ai/Ornith-1.0-35B", "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 "deepreinforce-ai/Ornith-1.0-35B" \ --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": "deepreinforce-ai/Ornith-1.0-35B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use deepreinforce-ai/Ornith-1.0-35B with Docker Model Runner:
docker model run hf.co/deepreinforce-ai/Ornith-1.0-35B
Guidance for compaction prompt
#29 opened about 17 hours ago
by
ahmedihamdy
Qwen35b-Agent-R2O3: SVD-extracted Ornith LoRA fusion results
#28 opened 7 days ago
by
hotdogs
When will Ornit-2.0 will release based on Qwen-3.6-35b-a3b
π 3
2
#27 opened 8 days ago
by
rbtasd
MTP layers
#26 opened 14 days ago
by
Treene
Is it possible to give 35B a bigger J-space?
π 2
#25 opened 14 days ago
by
QuestionableCube
merge -> Agents-A1 / Ornith-1.0-35B / Qwen3.5-35B-A3B
π₯ 1
#24 opened 17 days ago
by
tepirale
After tweaking the llamacpp settings, this model is a goat (crazy good)
π 1
4
#23 opened 20 days ago
by
lolren
lmstudio text.format!!!
#22 opened 20 days ago
by
huotuai
NVFP4 quantization of Ornith-1.0-35B (single-Blackwell-GPU, vLLM-validated)
π 8
1
#20 opened 21 days ago
by
ressl
Can you share more details on how you managed to fine tune it to be better?
#17 opened 23 days ago
by
sprapp
Does Ornith-1.0-35B preserve historical reasoning traces like Qwen3.6?
9
#16 opened 23 days ago
by
eflaneble
Two critical checkpoint errors prevent quantization (MTP config mismatch + wrong tensor naming)
π₯ 1
1
#15 opened 24 days ago
by
Maennekes
I was surprised that Ornith can tackle what Gemma and Qwen did fail - 16GB VRAM user
π 18
#14 opened 24 days ago
by
MasonKAT
Consider to replace it
π 4
#13 opened 24 days ago
by
usermma
Keeps getting stuck in thinking loops
π 7
3
#12 opened 25 days ago
by
jpschroeder
Fix chat_template.jinja: drop hard raise_exception on message order (breaks tool-calling in llama.cpp/LM Studio/Ollama)
π 1
4
#10 opened 25 days ago
by
hasanbasbunar
where is 31B-Dense
π 63
5
#9 opened 25 days ago
by
waynesjtu
Add evaluation results (including Claw-eval)
#8 opened 25 days ago
by
SaylorTwift
Add evaluation results
#7 opened 25 days ago
by
SaylorTwift
27B dense ?
#6 opened 25 days ago
by
beyoru
This model is way better than qwen 3.6 35b a3b
π 1
2
#5 opened 25 days ago
by
Narutoouz
FP8 for 35B ?
β€οΈ 1
#4 opened 26 days ago
by
hampsonw
Will you do Gemma 4 26B-A4B too???
1
#3 opened 26 days ago
by
Iwaku-Real
Small mistake in the descriptions
π 3
1
#1 opened 26 days ago
by
DarkStyle