Views
No views yet
| Property | Value |
|---|---|
| Base model | Qwen/Qwen3.5-4B |
| Quantization | 4-bit (4.503 bits/weight) |
| Framework | MLX (Apple Silicon) |
| Size on disk | ~2.4 GB |
| RAM at runtime | ~2.5 GB |
| License | Apache 2.0 |
1import MLXLLM
2
3let modelID = "apexlearn/BECoach-Qwen3.5-4B-4bit-mlx"
4let config = ModelConfiguration(id: modelID)
5let model = try await LLMModelFactory.shared.loadContainer(configuration: config)1from mlx_lm import load, generate
2
3model, tokenizer = load("apexlearn/BECoach-Qwen3.5-4B-4bit-mlx")
4response = generate(model, tokenizer, prompt="Hello, how can you help me?")
5print(response)| Device | RAM | Status |
|---|---|---|
| iPhone 16 Pro / Pro Max | 8 GB | ✅ Recommended |
| iPhone 15 Pro / Pro Max | 8 GB | ✅ Supported |
| iPhone 15 / 16 (standard) | 6 GB | ⚠️ May hit memory pressure |
| iPhone 14 and earlier | ≤6 GB | ❌ Not recommended |
| iPad Pro M1+ | 8–16 GB | ✅ Works well |
| Mac (Apple Silicon) | Any | ✅ Full performance |
mlx-lm:1python3 -m mlx_lm.convert \
2 --hf-path Qwen/Qwen3.5-4B \
3 --mlx-path ./BECoach-Qwen3.5-4B-4bit-mlx \
4 --quantize \
5 --q-bits 4