Views
No views yet
max (BF16 GGUF)easy / medium / hard so a router can dispatch it to the right tier of a model pool.max variant is optimized for routing accuracy: it gives the sharpest easy/medium/hard split so hard queries reliably reach the strongest tier.| Property | Value |
|---|---|
| Quantization | BF16 |
| File | brick-complexity-2-max-BF16.gguf |
| Size | 1.5 GB |
| Bits per weight | 16.0 |
| Original model | regolo/brick-complexity-2-max |
| Base model | Qwen/Qwen3.5-0.8B |
| Output classes | 3 (easy, medium, hard) |
| License | CC BY-NC 4.0 |
| Model | Quant | Size | BPW |
|---|---|---|---|
| BF16-GGUF | BF16 | 1.5 GB | 16.0 |
| Q8_0-GGUF | Q8_0 | 775 MB | 8.0 |
| Q4_K_M-GGUF | Q4_K_M | 494 MB | 5.5 |
1huggingface-cli download regolo/brick-complexity-2-max-BF16-GGUF brick-complexity-2-max-BF16.gguf --local-dir ./models
2
3./llama-cli -m ./models/brick-complexity-2-max-BF16.gguf \
4 -p "<|im_start|>system
5You are a query difficulty classifier for an LLM routing system.
6Classify each query as easy, medium, or hard based on the cognitive depth and domain expertise required to answer correctly.
7Respond with ONLY one word: easy, medium, or hard.<|im_end|>
8<|im_start|>user
9Classify: What is the capital of France?<|im_end|>
10<|im_start|>assistant
11" \
12 -n 5 --temp 01cat > Modelfile <<EOF
2FROM ./brick-complexity-2-max-BF16.gguf
3
4SYSTEM """You are a query difficulty classifier for an LLM routing system.
5Classify each query as easy, medium, or hard based on the cognitive depth and domain expertise required to answer correctly.
6Respond with ONLY one word: easy, medium, or hard."""
7
8TEMPLATE """<|im_start|>system
9{{ .System }}<|im_end|>
10<|im_start|>user
11Classify: {{ .Prompt }}<|im_end|>
12<|im_start|>assistant
13"""
14
15PARAMETER temperature 0
16PARAMETER num_predict 5
17EOF
18
19ollama create brick-complexity-2-max -f Modelfile
20ollama run brick-complexity-2-max "Design a distributed consensus algorithm"
21# Output: hard1from vllm import LLM, SamplingParams
2
3llm = LLM(model="regolo/brick-complexity-2-max-BF16-GGUF")
4sp = SamplingParams(temperature=0, max_tokens=5)
5
6prompt = """<|im_start|>system
7You are a query difficulty classifier for an LLM routing system.
8Classify each query as easy, medium, or hard based on the cognitive depth and domain expertise required to answer correctly.
9Respond with ONLY one word: easy, medium, or hard.<|im_end|>
10<|im_start|>user
11Classify: Explain the rendering equation from radiometric first principles<|im_end|>
12<|im_start|>assistant
13"""
14
15out = llm.generate([prompt], sp)
16print(out[0].outputs[0].text.strip())
17# Output: hard