Explore ML architectures fast. Define a model in JSON, train it on your Mac in seconds and iterate until you find a winner, then ship the same config to a cloud GPU for full-scale runs. One JSON file, two platforms, no code changes.
laptop (Metal) cloud GPU (CUDA)
mixlab -config my_model.json ===> mixlab -config my_model.json
-train 'data/*.bin' -train 'data/*.bin'
mixlab compiles JSON configs into a typed Go IR and executes them on GPU through the MLX backend. No Python model code to write, no framework translation between local and remote. Supports plain transformers, GQA, Mamba, RetNet, RWKV, Perceiver, U-Net layouts, and fully custom JSON-defined blocks.
Platforms: macOS (Apple Silicon) and Linux (NVIDIA CUDA via Docker).
Quickstart (macOS)
# 1. Install Go 1.24+ (https://go.dev/dl/) and MLX pip install mlx # 2. Build mixlab make build # 3. Install Python deps for data preparation, then download example data (~5 MB) pip install numpy tokenizers bash scripts/download_example_data.sh # 4. Train a 3-layer attention model ./mixlab -mode arch \ -config examples/plain_3L.json \ -train 'data/example/train_*.bin'
You should see training loss printed every 100 steps. The example config trains for 200 steps and finishes in seconds.
Quickstart (Docker / NVIDIA GPU)
# Pull the pre-built CLI image, or build your own; see docker/README.md. docker pull michaelrothrock/mixlab:latest # Smoke test docker run --gpus all michaelrothrock/mixlab:latest -mode smoke # Train (mount your data directory) docker run --gpus all -v $(pwd)/data:/data michaelrothrock/mixlab:latest \ -mode arch -config /examples/plain_3L.json -train '/data/*.bin'
Features
- JSON-first model definition: no Go or Python changes required for most experiments.
- Built-in block families:
plain,swiglu,mamba,mamba3,retnet,rwkv,perceiver,bottleneck,cross_attention,token_blend,custom. - Architecture features: U-Net skip connections, parallel residuals, recurrence, residual mixing, tied embeddings, hashed bigram embeddings, configurable MLP width.
- Trainer features: grouped optimizer settings, Muon for matrix weights, AdamW
for scalar/head/embed groups, SWA/EMA averaging, validation-loss early
stopping via
training.target_val_loss, safetensors import/export. - Custom blocks: declare weights and op graphs directly in JSON.
When to use mixlab
Good fit:
- Rapid architecture iteration — edit a JSON config, train on Metal, see results in seconds
- Mac-first workflow — prototype on Apple Silicon, scale to cloud GPU with the same config
- Comparing block families (attention vs Mamba vs RetNet) on the same data
- Teaching/learning — visible JSON configs make architecture choices explicit
- Fast block development — import mixlab, register your block, build in <2s, test in ~5s
Not the right tool for:
- Production training at scale — use PyTorch, JAX, or dedicated frameworks
- Custom CUDA kernels or operator-level debugging
- Distributed training across multiple GPUs
mixlab is an architecture exploration tool, not a training framework. It trades generality for speed of iteration.
Extensibility: Need ops beyond JSON custom blocks? Create a Go package
that imports github.com/mrothroc/mixlab/arch, registers new block types
via arch.RegisterBlock(), and emits IR using the public op API
(prog.MatMul(), prog.RMSNorm(), etc.). Your blocks compile into the
same binary and automatically inherit everything mixlab provides: Metal and
CUDA backends, the training loop, Muon/AdamW optimizers, safetensors
import/export, checkpointing, profiling, and all CLI modes. No C++
extensions, no custom build systems — just a Go import and an init()
function. See arch/registry.go for the registration
API.
Install
Homebrew (recommended)
brew install mrothroc/tap/mixlab
This installs MLX automatically as a dependency.
For data preparation (prepare mode), also install Python deps:
pip install numpy tokenizers
Build from source (macOS Apple Silicon)
Requires Go 1.24+ and MLX (brew install mlx or pip install mlx).
pip install numpy tokenizers # for data preparation
make buildThis produces a mixlab binary in the project root.
Docker (NVIDIA CUDA)
For Linux with an NVIDIA GPU. The pre-built images support A100, A40, RTX 3090, RTX 4090, L40, and L40S (sm_80/86/89). For other GPUs (H100, RTX 5090), see docker/README.md to build with your architecture.
# Pull the pre-built CLI image. docker pull michaelrothrock/mixlab:latest # Run smoke test docker run --gpus all michaelrothrock/mixlab:latest -mode smoke # Train a model (mount your data directory) docker run --gpus all -v $(pwd)/data:/data michaelrothrock/mixlab:latest \ -mode arch -config /examples/plain_3L.json -train '/data/train_*.bin'
Usage
mixlab has eight modes, selected with -mode:
| Mode | Description |
|---|---|
arch |
Train a single architecture from a JSON config. The default mode. |
arch_race |
Train every JSON config in a directory and compare results. |
smoke |
Run diagnostic checks (MLX availability, GPU health). |
prepare |
Tokenize raw text or JSONL into binary training shards. |
count |
Print parameter, size, block, and IR op counts for a config. |
eval |
Load safetensors and evaluate validation loss. |
hiddenstats |
Export one batch of hidden states as float32 binary. |
generate |
Generate token IDs from a safetensors checkpoint. |
arch (default)
./mixlab -mode arch -config examples/plain_3L.json -train 'data/example/train_*.bin'Additional flags:
| Flag | Description |
|---|---|
-eval |
Run full validation BPB evaluation after training |
-safetensors FILE |
Export weights to safetensors after training |
-safetensors-load FILE |
Load weights before training (resume or eval-only) |
-quantize MODE |
Weight quantization: none (default), int8, int6 |
-lut-dir DIR |
Directory for BPB lookup tables (default: data) |
-checkpoint-dir DIR |
Directory for periodic safetensors checkpoints |
-checkpoint-every N |
Save a checkpoint every N training steps (0 disables) |
arch_race
./mixlab -mode arch_race -configs examples/ -train 'data/example/train_*.bin'Trains every .json config in the given directory and prints a ranked summary.
count
./mixlab -mode count -config examples/plain_3L.json
eval
./mixlab -mode eval -config examples/plain_3L.json \ -safetensors-load weights.st -train 'data/example/train_*.bin'
hiddenstats
./mixlab -mode hiddenstats -config examples/plain_3L.json \
-safetensors-load weights.st -train 'data/example/train_*.bin' \
-output hidden.bingenerate
./mixlab -mode generate -config examples/plain_3L.json \ -safetensors-load weights.st -prompt token_ids:0,1,2
| Flag | Description |
|---|---|
-max-tokens |
Maximum generated tokens (default: 256) |
-temperature |
Sampling temperature (default: 0.8) |
-top-k |
Top-k sampling cutoff; 0 disables the cutoff |
-prompt |
Prompt token IDs in token_ids:0,1,2 form |
prepare
Requires Python 3 with numpy and tokenizers (pip install numpy tokenizers).
Tokens are stored as uint16, so vocab-size must be 65,535 or less.
./mixlab -mode prepare -input raw_text/ -output data/shards/ -vocab-size 1024
| Flag | Description |
|---|---|
-input |
Input text file, JSONL file, or directory |
-output |
Output directory for binary shards |
-vocab-size |
BPE vocabulary size (default: 1024) |
-val-split |
Fraction of tokens reserved for validation (default: 0.1) |
-tokenizer-path |
Path to a pre-trained tokenizer.json (optional) |
-text-field |
JSON field name for text in JSONL input (default: text) |
Architecture
JSON config --> Go IR builder --> IR program (typed ops) --> MLX runtime
--> Metal (macOS)
--> CUDA (Linux)
The Go IR builder compiles JSON configs into a typed intermediate representation. The runtime executes that IR on GPU and applies grouped optimization: AdamW for embedding/head/scalar groups and Muon for matrix weights.
Sequential models can run as plain stacks or as U-Net layouts with learned skip
connections. Config features such as parallel_residual, recurrence,
resid_mix, tie_embeddings, and mlp_mult all lower directly into the IR.
Block types
These built-in block types are available in JSON configs:
| Type | Description |
|---|---|
plain |
Causal self-attention + FFN. Requires heads. Optional kv_heads for grouped-query attention. |
swiglu |
SwiGLU feed-forward block with residual connection. |
mamba |
Mamba selective state-space block. Optional inner_dim. |
mamba3 |
Mamba-3 style gated scan block with learned delta-t gating. Optional inner_dim. |
retnet |
RetNet retention block. Requires heads. Optional decay field in config. |
rwkv |
RWKV-style recurrent mixing block. |
perceiver |
Perceiver latent bottleneck. Requires heads. Optional num_latents. |
bottleneck |
Smaller latent bottleneck block. Requires heads. Optional num_latents. |
cross_attention |
Cross-attention from the current stream into source_stream. Requires heads, source_stream. |
token_blend |
Learned token blending gate over adjacent positions. |
custom |
User-defined block with declared weights and IR ops. |
Advanced Architecture Example
examples/recurrent_parallel.json demonstrates the most advanced config surface —
depth recurrence, parallel residuals, GQA, tied embeddings, and Muon optimizer:
See also examples/unet_transformer.json for a U-Net architecture with skip
connections, and the other examples for commented configs covering the common
feature paths.
Custom blocks
Custom blocks let you define novel architectures entirely in JSON.
{
"type": "custom",
"name": "geglu",
"weights": [
{"name": "w_gate", "shape": ["D", "FFN"]},
{"name": "w_up", "shape": ["D", "FFN"]},
{"name": "w_down", "shape": ["FFN", "D"]}
],
"ops": [
{"op": "matmul", "inputs": ["x", "w_gate"], "output": "gate"},
{"op": "silu", "inputs": ["gate"], "output": "gate_act"},
{"op": "matmul", "inputs": ["x", "w_up"], "output": "up"},
{"op": "mul", "inputs": ["gate_act", "up"], "output": "ff"},
{"op": "matmul", "inputs": ["ff", "w_down"], "output": "ff_out"},
{"op": "add", "inputs": ["x", "ff_out"], "output": "x"}
]
}See examples/custom_geglu.json for a runnable example and
docs/config-reference.md for the full JSON schema,
shape symbols, op list, and training fields.
Troubleshooting
MLX not found / wrong Python version
The Makefile auto-detects your MLX install path via python3 -c "import mlx; ...".
Run make check-mlx to see what it found.
If detection fails (e.g. MLX is in a virtualenv or a different Python):
# Point to MLX manually make build MLX_PREFIX=$(python3.12 -c "import mlx, os; print(os.path.dirname(mlx.__file__))") # Or export it for the session export MLX_PREFIX=/opt/homebrew/lib/python3.12/site-packages/mlx make build
Performance
On Apple M1 Max (Metal): ~8.5 seconds per 100 training steps at d=1024,
seq_len=1024. Smaller models (d=128) train in seconds.
CUDA graph tuning: MLX uses CUDA graphs but defaults to small graph batches (20 ops) on some GPUs. mixlab auto-tunes this based on your model's IR op count, which typically gives ~10% speedup on GPUs like the A40. If you still see low GPU utilization, you can override manually:
MLX_MAX_OPS_PER_BUFFER=2000 MLX_MAX_MB_PER_BUFFER=4000 ./mixlab -mode arch ...
Higher values batch more kernels into each CUDA graph, reducing dispatch overhead at the cost of more GPU memory. The auto-tuned default (3x IR ops) captures most of the benefit.
Profiling
mixlab is written in Go, which has built-in profiling with zero overhead when disabled. No extra tools to install.
# CPU profile — where is time spent? ./mixlab -mode arch -config my_model.json -train 'data/*.bin' -cpuprofile cpu.prof go tool pprof -http :8080 cpu.prof # interactive flame graph in your browser # Memory profile — what's allocating? ./mixlab -mode arch -config my_model.json -train 'data/*.bin' -memprofile mem.prof go tool pprof mem.prof
Both flags are safe for real training runs — profiling adds negligible
overhead and the output is a standard pprof file that works with go tool pprof, Speedscope, or any pprof-compatible viewer.
Remote GPU profiling (RunPod / cloud): Generate a signed upload URL,
pass the training command in setup, and upload the profile in post:
# Generate a signed URL (1 hour expiry) gcloud storage sign-url gs://your-bucket/profiles/cpu.prof \ --http-verb=PUT --duration=1h \ --impersonate-service-account=your-sa@project.iam.gserviceaccount.com # Submit RunPod job with profiling curl -X POST https://api.runpod.ai/v2/YOUR_ENDPOINT/run \ -H 'Authorization: Bearer YOUR_API_KEY' \ -d '{ "input": { "setup": [ "mixlab -mode arch -config /examples/plain_3L.json -train /data/*.bin -cpuprofile /tmp/cpu.prof" ], "mode": "smoke", "post": [ "curl -X PUT -H '"'"'Content-Type: application/octet-stream'"'"' --data-binary @/tmp/cpu.prof '"'"'SIGNED_URL'"'"'" ] } }' # Download and view the flame graph locally gcloud storage cp gs://your-bucket/profiles/cpu.prof . go tool pprof -http :8080 cpu.prof
Contributing
Before submitting changes, run make test from the repository root. The block
registry in arch/registry.go and config validation in arch/config.go must
both be updated when adding a new block type.
License
MIT. See LICENSE.


















