Views
No views yet
| Parameters | ~7 B |
| Format | MLX safetensors (quantized linear layers + fp16 features) |
| Quantization | 4-bit per-group min-max, group size 64 |
| Sample rate | 16 kHz (raw waveform input) |
| Frame rate | 50 fps |
| Max duration | 40 s |
| Languages | 1,600+ |
| Vocabulary | 10,288 SentencePiece tokens |
config.json.| File | Description |
|---|---|
model.safetensors | 4-bit quantized transformer weights + fp16 conv frontend |
tokenizer.model | SentencePiece tokenizer |
config.json | Architecture + quantization metadata |
1import mlx.core as mx
2from safetensors import safe_open
3
4weights = {}
5with safe_open("model.safetensors", framework="mlx") as f:
6 for k in f.keys():
7 weights[k] = f.get_tensor(k)