How to use from
MLX LM
Generate or start a chat session
# Install MLX LM
uv tool install mlx-lm
# Interactive chat REPL
mlx_lm.chat --model "nightmedia/LittleLamb-mxfp8-mlx"
Run an OpenAI-compatible server
# Install MLX LM
uv tool install mlx-lm
# Start the server
mlx_lm.server --model "nightmedia/LittleLamb-mxfp8-mlx"
# Calling the OpenAI-compatible server with curl
curl -X POST "http://localhost:8000/v1/chat/completions" \
   -H "Content-Type: application/json" \
   --data '{
     "model": "nightmedia/LittleLamb-mxfp8-mlx",
     "messages": [
       {"role": "user", "content": "Hello"}
     ]
   }'
Quick Links

LittleLamb-mxfp8-mlx

Brainwaves

         arc   arc/e boolq hswag obkqa piqa  wino
LittleLamb
mxfp8    0.309,0.393,0.431,0.372,0.340,0.625,0.553
LittleLamb-ToolCalling
mxfp8    0.288,0.370,0.424,0.364,0.334,0.626,0.543

Qwen3-0.6B
bf16     0.298,0.354,0.378,0.415,0.344,0.649,0.534
q8-hi    0.296,0.355,0.378,0.416,0.348,0.652,0.529

This model LittleLamb-mxfp8-mlx was converted to MLX format from MultiverseComputingCAI/LittleLamb using mlx-lm version 0.31.3.

Use with mlx

pip install mlx-lm
from mlx_lm import load, generate

model, tokenizer = load("LittleLamb-mxfp8-mlx")

prompt = "hello"

if tokenizer.chat_template is not None:
    messages = [{"role": "user", "content": prompt}]
    prompt = tokenizer.apply_chat_template(
        messages, add_generation_prompt=True, return_dict=False,
    )

response = generate(model, tokenizer, prompt=prompt, verbose=True)
Downloads last month
116
Safetensors
Model size
82.5M params
Tensor type
U8
·
U32
·
BF16
·
MLX
Hardware compatibility
Log In to add your hardware

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for nightmedia/LittleLamb-mxfp8-mlx

Finetuned
Qwen/Qwen3-0.6B
Quantized
(3)
this model

Collections including nightmedia/LittleLamb-mxfp8-mlx