CoolFace
Modelpublic

cyburn/Ornith-1.0-35B-int4-AutoRound

sourceHugging Facemitupdated 3mo agoView on Hugging Face
1likes319downloads
Model Card

Ornith-1.0-35B — INT4 AutoRound

INT4 quantization of deepreinforce-ai/Ornith-1.0-35B using spark-auto-round.

Model Details

PropertyValue
Base modeldeepreinforce-ai/Ornith-1.0-35B
ArchitectureQwen3.5 MoE (256 experts, 8 active)
Parameters35B
Context window196,608 tokens
QuantizationINT4, group_size=128, symmetric
Packing formatautoround:autogptq
AutoRound version0.14.3
Calibration512 samples, 1000 iters

Shared expert gate layers are kept in FP16 for accuracy.

Capabilities

  • —Agentic coding — tool-calling with qwen3_xml format (OpenAI-compatible)
  • —Reasoning — built-in chain-of-thought via <think>...</think> blocks
  • —Multimodal — image + text inputs
  • —Long context — up to 196K tokens

Benchmarks (base model, BF16)

BenchmarkScore
SWE-bench Verified75.6%
SWE-bench Pro50.4%
Terminal-Bench 2.164.2%
NL2Repo34.6%
Claw-eval Average69.8%

Usage

vLLM

bash
vllm serve cyburn/Ornith-1.0-35B-int4-AutoRound \
  --served-model-name qwen/qwen3.5 \
  --load-format instanttensor \
  --tensor-parallel-size 1 \
  --gpu-memory-utilization 0.80 \
  --kv-cache-dtype fp8 \
  --max-model-len 196608 \
  --max-num-batched-tokens 16384 \
  --attention-backend FLASHINFER \
  --quantization compressed-tensors \
  --enable-prefix-caching \
  --enable-chunked-prefill \
  --enable-auto-tool-choice \
  --tool-call-parser qwen3_xml \
  --reasoning-parser qwen3 \
  --chat-template chat_template.jinja \
  --generation-config auto \
  --trust-remote-code

Requires vLLM ≥ 0.19.1.

Transformers

python
from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained(
    "cyburn/Ornith-1.0-35B-int4-AutoRound",
    device_map="auto",
    trust_remote_code=True,
)
tokenizer = AutoTokenizer.from_pretrained("cyburn/Ornith-1.0-35B-int4-AutoRound")

Requires transformers ≥ 5.8.1.

Quantization

Produced with spark-auto-round v0.14.3:

bits=4, group_size=128, sym=True, iters=1000, nsamples=512
packing_format=auto_round:auto_gptq

License

MIT — same as the base model.