Text Generation
Transformers
Safetensors
English
qwen3_5_moe
image-text-to-text
text-to-sql
sql
bird
spider
agentic
qwen3.6
Mixture of Experts
conversational
Instructions to use feyninc/sqrl-35b-a3b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use feyninc/sqrl-35b-a3b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="feyninc/sqrl-35b-a3b") 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("feyninc/sqrl-35b-a3b") model = AutoModelForMultimodalLM.from_pretrained("feyninc/sqrl-35b-a3b", 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 feyninc/sqrl-35b-a3b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "feyninc/sqrl-35b-a3b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "feyninc/sqrl-35b-a3b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/feyninc/sqrl-35b-a3b
- SGLang
How to use feyninc/sqrl-35b-a3b 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 "feyninc/sqrl-35b-a3b" \ --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": "feyninc/sqrl-35b-a3b", "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 "feyninc/sqrl-35b-a3b" \ --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": "feyninc/sqrl-35b-a3b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use feyninc/sqrl-35b-a3b with Docker Model Runner:
docker model run hf.co/feyninc/sqrl-35b-a3b
Model card: measured pass@1 and vote-of-8 results, family comparison, voting notes
Browse files
README.md
CHANGED
|
@@ -33,13 +33,30 @@ a 3-model LLM-judge panel; BIRD-dev was never trained on.
|
|
| 33 |
|
| 34 |
## Results
|
| 35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
| Benchmark | Metric | Score |
|
| 37 |
|---|---|---|
|
| 38 |
-
| BIRD-dev
|
| 39 |
-
| BIRD-dev
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
|
| 44 |
## How it works — the agentic protocol
|
| 45 |
|
|
|
|
| 33 |
|
| 34 |
## Results
|
| 35 |
|
| 36 |
+
All BIRD-dev numbers measured on the full 1534-question set at temperature 0.7 with the
|
| 37 |
+
agentic harness (execution-clustered majority vote = sample 8 candidates, group them by
|
| 38 |
+
identical execution result set, return the largest cluster's query).
|
| 39 |
+
|
| 40 |
| Benchmark | Metric | Score |
|
| 41 |
|---|---|---|
|
| 42 |
+
| BIRD-dev | pass@1 (avg over 8 samples) | **68.7%** EX |
|
| 43 |
+
| BIRD-dev | vote-of-8 (execution-clustered) | **70.6%** EX |
|
| 44 |
+
|
| 45 |
+
Family comparison on identical seeds (pass@1 / vote@8):
|
| 46 |
+
[sqrl-4b](https://huggingface.co/feyninc/sqrl-4b) 64.6 / 68.8 ·
|
| 47 |
+
[sqrl-9b](https://huggingface.co/feyninc/sqrl-9b) 66.6 / 69.8 ·
|
| 48 |
+
[sqrl-35b-a3b](https://huggingface.co/feyninc/sqrl-35b-a3b) 68.7 / 70.6.
|
| 49 |
+
|
| 50 |
+
Notes from the measurement campaign:
|
| 51 |
+
- **70.6% vote-of-8 is the family's best system number**, but only +0.8 over the 9B's —
|
| 52 |
+
if serving cost matters, the distilled [sqrl-9b](https://huggingface.co/feyninc/sqrl-9b)
|
| 53 |
+
with voting is the better deployment.
|
| 54 |
+
- This model is heavily RL-sharpened: it answers unanimously on 1,072/1534 questions
|
| 55 |
+
(all 8 samples produce the same result). That gives it the family's best pass@1 but
|
| 56 |
+
the smallest voting gain (+1.9) — sharpening traded sample diversity for single-shot
|
| 57 |
+
reliability.
|
| 58 |
+
- Vote unanimity is a strong free confidence signal: unanimous answers are right ~87% of
|
| 59 |
+
the time; narrow/tied votes far less — useful for routing or escalation.
|
| 60 |
|
| 61 |
## How it works — the agentic protocol
|
| 62 |
|