Image-Text-to-Text
GGUF
English
llama.cpp
qwen
qwen3.6
qwen-vl
multimodal
vision
ornith
turboquant
tq3_4s
conversational
Instructions to use YTan2000/Ornith-1.0-35B-TQ3_4S with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use YTan2000/Ornith-1.0-35B-TQ3_4S with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf YTan2000/Ornith-1.0-35B-TQ3_4S:F16 # Run inference directly in the terminal: llama cli -hf YTan2000/Ornith-1.0-35B-TQ3_4S:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf YTan2000/Ornith-1.0-35B-TQ3_4S:F16 # Run inference directly in the terminal: llama cli -hf YTan2000/Ornith-1.0-35B-TQ3_4S:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf YTan2000/Ornith-1.0-35B-TQ3_4S:F16 # Run inference directly in the terminal: ./llama-cli -hf YTan2000/Ornith-1.0-35B-TQ3_4S:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf YTan2000/Ornith-1.0-35B-TQ3_4S:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf YTan2000/Ornith-1.0-35B-TQ3_4S:F16
Use Docker
docker model run hf.co/YTan2000/Ornith-1.0-35B-TQ3_4S:F16
- LM Studio
- Jan
- vLLM
How to use YTan2000/Ornith-1.0-35B-TQ3_4S with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "YTan2000/Ornith-1.0-35B-TQ3_4S" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "YTan2000/Ornith-1.0-35B-TQ3_4S", "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/YTan2000/Ornith-1.0-35B-TQ3_4S:F16
- Ollama
How to use YTan2000/Ornith-1.0-35B-TQ3_4S with Ollama:
ollama run hf.co/YTan2000/Ornith-1.0-35B-TQ3_4S:F16
- Unsloth Desktop
- Pi
How to use YTan2000/Ornith-1.0-35B-TQ3_4S with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf YTan2000/Ornith-1.0-35B-TQ3_4S:F16
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "YTan2000/Ornith-1.0-35B-TQ3_4S:F16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use YTan2000/Ornith-1.0-35B-TQ3_4S with Docker Model Runner:
docker model run hf.co/YTan2000/Ornith-1.0-35B-TQ3_4S:F16
- Lemonade
How to use YTan2000/Ornith-1.0-35B-TQ3_4S with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull YTan2000/Ornith-1.0-35B-TQ3_4S:F16
Run and chat with the model
lemonade run user.Ornith-1.0-35B-TQ3_4S-F16
List all available models
lemonade list
- Hermes Agent
How to use YTan2000/Ornith-1.0-35B-TQ3_4S with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf YTan2000/Ornith-1.0-35B-TQ3_4S:F16
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default YTan2000/Ornith-1.0-35B-TQ3_4S:F16
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use YTan2000/Ornith-1.0-35B-TQ3_4S with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf YTan2000/Ornith-1.0-35B-TQ3_4S:F16
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "YTan2000/Ornith-1.0-35B-TQ3_4S:F16" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,123 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
library_name: gguf
|
| 6 |
+
pipeline_tag: text-generation
|
| 7 |
+
model_name: Ornith-1.0-35B-TQ3_4S
|
| 8 |
+
tags:
|
| 9 |
+
- gguf
|
| 10 |
+
- llama.cpp
|
| 11 |
+
- qwen
|
| 12 |
+
- qwen3.6
|
| 13 |
+
- ornith
|
| 14 |
+
- turboquant
|
| 15 |
+
- tq3_4s
|
| 16 |
+
base_model:
|
| 17 |
+
- deepreinforce-ai/Ornith-1.0-35B
|
| 18 |
+
model-index:
|
| 19 |
+
- name: Ornith-1.0-35B-TQ3_4S
|
| 20 |
+
results: []
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
+
# Ornith-1.0-35B-TQ3_4S
|
| 24 |
+
|
| 25 |
+

|
| 26 |
+
|
| 27 |
+
`Ornith-1.0-35B-TQ3_4S` is a compact TurboQuant GGUF build of [deepreinforce-ai/Ornith-1.0-35B](https://huggingface.co/deepreinforce-ai/Ornith-1.0-35B).
|
| 28 |
+
|
| 29 |
+
## Required Runtime
|
| 30 |
+
|
| 31 |
+
This model uses the custom `TQ3_4S` tensor type and requires [turbo-tan/llama.cpp-tq3](https://github.com/turbo-tan/llama.cpp-tq3).
|
| 32 |
+
|
| 33 |
+
> Stock `llama.cpp` builds without TurboQuant support cannot load this model.
|
| 34 |
+
|
| 35 |
+
This is the standard 35B model, not an MTP release. Do not add draft-MTP speculative-decoding flags.
|
| 36 |
+
|
| 37 |
+
## Files
|
| 38 |
+
|
| 39 |
+
- [`Ornith-1.0-35B-TQ3_4S.gguf`](Ornith-1.0-35B-TQ3_4S.gguf) - main model, 13.30 GB (12.39 GiB)
|
| 40 |
+
- [`thumbnail.png`](thumbnail.png) - model card banner
|
| 41 |
+
- [`benchmark.png`](benchmark.png) - benchmark comparison card
|
| 42 |
+
- [`benchmark_notes.md`](benchmark_notes.md) - compact benchmark provenance and comparison
|
| 43 |
+
|
| 44 |
+
## Build the Required Runtime
|
| 45 |
+
|
| 46 |
+
```bash
|
| 47 |
+
git clone https://github.com/turbo-tan/llama.cpp-tq3
|
| 48 |
+
cd llama.cpp-tq3
|
| 49 |
+
|
| 50 |
+
cmake -S . -B build \
|
| 51 |
+
-DCMAKE_BUILD_TYPE=Release \
|
| 52 |
+
-DGGML_CUDA=ON \
|
| 53 |
+
-DGGML_CUDA_FA_ALL_QUANTS=OFF \
|
| 54 |
+
-DGGML_CUDA_GRAPHS=ON
|
| 55 |
+
|
| 56 |
+
cmake --build build --target llama-server -j
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
For an RTX 3090, `-DCMAKE_CUDA_ARCHITECTURES=86` may be added explicitly. Use the architecture matching your GPU on other systems.
|
| 60 |
+
|
| 61 |
+
## Recommended Runtime
|
| 62 |
+
|
| 63 |
+
Validated on an NVIDIA GeForce RTX 3090 Founders Edition with 24 GiB VRAM:
|
| 64 |
+
|
| 65 |
+
```bash
|
| 66 |
+
./build/bin/llama-server \
|
| 67 |
+
-m Ornith-1.0-35B-TQ3_4S.gguf \
|
| 68 |
+
--alias Ornith-1.0-35B-TQ3_4S \
|
| 69 |
+
--host 127.0.0.1 --port 8080 \
|
| 70 |
+
-c 32768 -np 1 -ngl 99 -fa on \
|
| 71 |
+
-ctk q8_0 -ctv tq3_0 \
|
| 72 |
+
--reasoning off --jinja
|
| 73 |
+
```
|
| 74 |
+
|
| 75 |
+
Runtime notes:
|
| 76 |
+
|
| 77 |
+
- `-fa on` enables flash attention at runtime.
|
| 78 |
+
- The validated CUDA build uses `GGML_CUDA_FA_ALL_QUANTS=OFF`.
|
| 79 |
+
- `-ngl 99` fully offloads the model on supported GPUs. Avoid partial offload when comparing the published speed.
|
| 80 |
+
- Reduce context from `32768` if the available VRAM is lower than 24 GiB.
|
| 81 |
+
|
| 82 |
+
## Quick Smoke Test
|
| 83 |
+
|
| 84 |
+
```bash
|
| 85 |
+
curl -s http://127.0.0.1:8080/v1/chat/completions \
|
| 86 |
+
-H 'Content-Type: application/json' \
|
| 87 |
+
-d '{"model":"Ornith-1.0-35B-TQ3_4S","messages":[{"role":"user","content":"Write ONLY the word ok."}],"max_tokens":16,"temperature":0.0}'
|
| 88 |
+
```
|
| 89 |
+
|
| 90 |
+
Expected assistant content:
|
| 91 |
+
|
| 92 |
+
```text
|
| 93 |
+
ok
|
| 94 |
+
```
|
| 95 |
+
|
| 96 |
+
## Benchmark Summary
|
| 97 |
+
|
| 98 |
+
Local BenchLoop and Hard86 comparison on an RTX 3090 FE using the TurboTan runtime and the launch settings above:
|
| 99 |
+
|
| 100 |
+

|
| 101 |
+
|
| 102 |
+
| Metric | Result |
|
| 103 |
+
|---|---:|
|
| 104 |
+
| 35B field overall | 95.75 |
|
| 105 |
+
| Hard86 | 81.4% |
|
| 106 |
+
| EasyCode | 100.0% |
|
| 107 |
+
| Toolcall | 88.3% |
|
| 108 |
+
| Data extract | 86.5% |
|
| 109 |
+
| Instruct follow | 65.5% |
|
| 110 |
+
| Reason math | 73.3% |
|
| 111 |
+
| Generation speed | 146.3 tok/s |
|
| 112 |
+
| Size | 13.0 GB reported; 12.39 GiB file |
|
| 113 |
+
|
| 114 |
+
The field score uses `0.85 * task_score + 0.15 * size_factor`, with size normalized to the smallest displayed 35B model. Hard86 is weighted at `2x`, EasyCode at `0.5x`, and the remaining benchmark categories at `1x`.
|
| 115 |
+
|
| 116 |
+
|
| 117 |
+
## Validation Notes
|
| 118 |
+
|
| 119 |
+
- Benchmark results are local measurements, not claims from the parent model repository.
|
| 120 |
+
|
| 121 |
+
## License
|
| 122 |
+
|
| 123 |
+
Use is subject to the [base model](https://huggingface.co/deepreinforce-ai/Ornith-1.0-35B) license and the licenses of [turbo-tan/llama.cpp-tq3](https://github.com/turbo-tan/llama.cpp-tq3).
|