Views
No views yet
| Metric | Value |
|---|---|
| Speed | ~34 tok/s |
| Peak RAM | 4.3 GB |
| Quantization | 4-bit (4.501 bits/weight) |
| Hardware | Mac Mini M4 16GB |
| Model | Weight | What it brings |
|---|---|---|
| emanubiz/super-gemopus-4-e4b-abl-chimera | 71% | Strong reasoning, abliterated refusals, human-aligned tone |
| deadbydawn101/gemma-4-E4B-Agentic-Opus-Reasoning-GeminiCLI | 29% | Opus 4.6 reasoning, Claude Code tool-use patterns, <think> tag reasoning |
1mlx_lm generate \
2 --model emanubiz/super-gemopus-4-e4b-trimera-mlx-4bit \
3 --prompt "<start_of_turn>user\nCiao, chi sei?<end_of_turn>\n<start_of_turn>model\n" \
4 --max-tokens 5121mlx_lm server \
2 --model emanubiz/super-gemopus-4-e4b-trimera-mlx-4bit \
3 --port 8080 \
4 --host 0.0.0.01curl http://localhost:8080/v1/chat/completions \
2 -H "Content-Type: application/json" \
3 -d '{
4 "model": "emanubiz/super-gemopus-4-e4b-trimera-mlx-4bit",
5 "messages": [{"role": "user", "content": "Hello!"}],
6 "max_tokens": 512
7 }'1{
2 "id": "emanubiz/super-gemopus-4-e4b-trimera-mlx-4bit",
3 "name": "Trimera",
4 "apiBase": "http://localhost:8080/v1",
5 "apiKey": "dummy",
6 "contextWindow": 128000,
7 "maxTokens": 16000
8}gemma4_text.py to support Gemma 4's per-layer KV sharing architecture (num_kv_shared_layers: 18).