File size: 7,049 Bytes
8969e08
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5ea8c60
8969e08
35dc44c
8969e08
35dc44c
8969e08
 
 
 
255df8a
 
dabdaa1
db8fe34
 
6053688
4aaaeba
 
 
 
 
 
7183031
dabdaa1
8969e08
 
 
 
 
 
 
 
 
537010f
ed7f81c
679da7c
8969e08
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5ea8c60
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
---
language:
- en
- zh
- ja
- ko
- fr
- es
- pt
- de
- it
- ru
- ar
- vi
- th
tags:
- text-generation
- ternary
- bitnet
- 1.58bit
- cpu
- gguf
- qwen2.5
- deepseek
- deepseek-r1
- efficient
- low-memory
- jirack
- web-ui
- routing
- tool-call
- robotics
license: mit
---

# JiRack Ultra 32B (CPU)
A fast and efficient 32B model optimized for CPU inference. The model was refactored with BitNet features and an updated tokenizer that includes new **Routing**, **Media**, **Vision**, **Sound**, **Tool call**, and **Robotics** tags. Built on a DeepSeek R1-32B architecture with native ternary (BitNet-style) support and ready-to-run GGUF quantizations.
- JiRack is a cloud-ready model that helps save money on cloud infrastructure. It can be used as an expert model in RAG deployments, with the ONNX JiRack Java server as an alternative.
- Subscription: **$1 per month per user** (updated license for non-company use).
- Corp Subscription: **$3 per month per user** (updated license for company use).
- It works without subscription but send message about subscription


# JiRack sevice options
- Current quantizations were done from the FP16 model, but the model allows for more compression thanks to its ternary architecture. 
- If you need to do ternary compression, please write to me and I'll perform QAT from your dataset, tailored specifically to your task.
- Plus double QAT via ONNX QAT. 


# JiRack RoboTech
- Advanced Tokenizer with  Robotics & Routing & Tool calls Tokenizer and other
- [CMSManhattan/JiRackPrecisionTokenizer](https://huggingface.co/CMSManhattan/JiRackPrecisionTokenizer)
  
 

## Available Variants
| Tag | Quant | Size | Approx. RAM | Description |
|-----|-------|------|-------------|-------------|
| `cmsmanhattan/jirack-ultra-32b-cpu:latest` | Full | ~65 GB | ~64–72 GB | Full precision reference |
| `cmsmanhattan/jirack-ultra-32b-cpu-q4:latest` | Q4_K_M | ~19.5 GB | ~20–28 GB | Recommended balance |
| `cmsmanhattan/jirack-ultra-32b-cpu-q3:latest` | Q3_K_M | ~16.2 GB | ~17–24 GB | Good quality / size trade-off |
| `cmsmanhattan/jirack-ultra-32b-cpu-q2:latest` | Q2_K | ~13.1 GB | ~14–20 GB | Maximum compression |
## Quick Start
### Run with Docker
- 32 B docker can be provided by request .
- Build docker on local from source or request fro me

**Default CPU (Q4 recommended)**
```bash
docker run -d \
  --name jirack_ultra_32b \
  -p 7869:7869 \
  --restart unless-stopped \
  cmsmanhattan/jirack-ultra-32b-cpu-q4:latest
```
**Q3**
```bash
docker run -d \
  --name jirack_ultra_32b \
  -p 7869:7869 \
  --cpus=16 \
  -e THREADS=16 \
  -e THREADS_BATCH=16 \
  --restart unless-stopped \
  cmsmanhattan/jirack-ultra-32b-cpu-q3:latest
```
**Q2 (lowest memory)**
```bash
docker run -d \
  --name jirack_ultra_32b \
  -p 7869:7869 \
  --cpus=16 \
  -e THREADS=16 \
  -e THREADS_BATCH=16 \
  --restart unless-stopped \
  cmsmanhattan/jirack-ultra-32b-cpu-q2:latest
```
**Full precision**
```bash
docker run -d \
  --name jirack_ultra_32b \
  -p 7869:7869 \
  --cpus=16 \
  -e THREADS=16 \
  -e THREADS_BATCH=16 \
  --restart unless-stopped \
  cmsmanhattan/jirack-ultra-32b-cpu:latest
```
**Multi CPU**
```bash
docker run -d \
  --name jirack_ultra_32b \
  -p 7869:7869 \
  --cpus=16 \
  -e THREADS=16 \
  -e THREADS_BATCH=16 \
  --restart unless-stopped \
  --memory=32g \
  --cpus=8 \
  cmsmanhattan/jirack-ultra-32b-cpu-q4:latest
```
### Docker Compose Example
```yaml
services:
  jirack:
    image: cmsmanhattan/jirack-ultra-32b-cpu-q4:latest
    container_name: jirack_ultra_32b
    ports:
      - "7869:7869"
    volumes:
      - .:/app
      - ./web:/app/web
    environment:
      - MAX_TOKENS=2048
      - TEMPERATURE=0.7
      - TOP_P=0.9
      - DEFAULT_STREAM=False
      - INTRA_THREADS=4
      - USE_ENV_ALLOCATOR=1
      - THREADS=16
      - THREADS_BATCH=16
    deploy:
      resources:
        limits:
          memory: 32g
```
## Access the UI
Once the container is running, open your browser and navigate to:
`http://localhost:7869`
This opens the JiRack UI — a clean web interface.
## Changing the Port
The listening port can be easily modified directly from the **Settings** panel within the JiRack UI.
## Licensing
- The JiRack Ultra 32B model is provided under a commercial license ($12 per user per year).
- All JiRack UI clients are provided under a commercial license.
- However, the UI clients can be used for free when running together with the official JiRack Docker containers, as long as they are not redistributed separately.
For commercial licensing, cluster deployment, or enterprise use of JiRack models, please contact us.
- **JiRack MS Windows 11 Desktop Client (with Ollama API):**
  https://huggingface.co/kgrabko/JiRackTernary_1b/resolve/main/jirack-chat.zip
- **Live email chat with the model:** support@cmsmanhattan.com
## Hardware Recommendations
### Recommended Hardware for JiRack Ultra 32B (single Docker container)
| Use Case          | CPU                        | RAM       | Recommended Quant | Expected Speed      | Recommendation |
|-------------------|----------------------------|-----------|-------------------|---------------------|----------------|
| Recommended       | Ryzen 9 / Intel i9 / Xeon  | 32–48 GB  | Q4_K_M            | Good interactive    | Best choice    |
| High Performance  | High-core server CPU       | 64 GB+    | Full / Q4         | Excellent           | Excellent      |
| Low Memory        | Modern 12+ core CPU        | 24–32 GB  | Q3_K_M or Q2_K    | Usable              | Acceptable     |
| Edge / Minimal    | Strong workstation CPU     | 24 GB     | Q2_K              | Acceptable          | Budget option  |
## Important Memory Notes
Even though the quantized 32B models are relatively compact for their size, we recommend the following for best experience:
- Q4_K_M: 24–32 GB system RAM minimum
- Q3_K_M / Q2_K: 20–28 GB system RAM
- Full precision: 64 GB+ system RAM recommended
Reasons for extra headroom:
- KV-cache consumption during generation
- Runtime overhead and temporary buffers
- System stability and avoiding out-of-memory errors
- Room for larger context windows
**Minimum recommended (Q4):** 24 GB system RAM  
**Ideal:** 32–48 GB system RAM
I added the default model in full precision. This serves as the base for quantization, allowing us to find the optimal balance between model size and performance.
## Architecture Notes
- **Refactored with BitNet features**: Native BitLinear ternary path (b1.58-style) with λ-warmup STE
- **Updated tokenizer**: Extended with new special tags for **Routing**, **Tool call**, and **Robotics**
- Base: DeepSeek-R1-Distill-Qwen-32B / Qwen2.5-32B style  
  (Hidden 5120, 64 layers, GQA 40/8, intermediate 27648, vocab 152064)
- RoPE θ = 1 000 000, RMSNorm ε = 1e-5
- Ready-to-run GGUF quantizations (Q2_K, Q3_K_M, Q4_K_M)
## 📧 Contact & Licensing
For joint venture opportunities, hardware integration, or licensing inquiries:
- **Email:** grabko@cmsmanhattan.com
- **Phone:** +1 (516) 777-0945
- **Location:** New York, USA


## License
MIT License