Views
No views yet
| Property | Value |
|---|---|
| Method | MLX MXFP8 |
| Bits | 8 |
| Group size | 32 |
| Measured BPW | 8.250 |
| Size on disk | 7.9 GB |
| Reference signal | bf16 |
ByteDance-Seed/Seed-Coder-8B-Base. It uses an SPM-style, multi-marker FIM format rather than a chat template.1<[fim-suffix]>{code after cursor}
2<[fim-prefix]><filename>{file_path}
3{code before cursor}<|marker_1|><|marker_2|>
4<[fim-middle]>examples/zeta_fim.py for a standard-library client targeting LM Studio.1from mlx_lm import load, generate
2from mlx_lm.sample_utils import make_sampler
3
4model, tokenizer = load("bouroo/zeta-2.1-mlx-mxfp8")
5prompt = "<[fim-suffix]>\n return total\n<[fim-prefix]><filename>app.py\ndef sum_list(items):\n<|marker_1|><|marker_2|>\n<[fim-middle]>"
6out = generate(model, tokenizer, prompt=prompt, max_tokens=128,
7 sampler=make_sampler(temp=0.2, top_p=0.95))1lms get https://huggingface.co/bouroo/zeta-2.1-mlx-mxfp8
2lms load zeta-2.1-mlx-mxfp8examples/ or a compatible editor integration.mlx_lm load + generation using the canonical FIM prompt. The output produced a complete sum_list implementation enclosed by <|marker_1|> and <|marker_2|>.