惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Help Net Security
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
博客园_首页
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
B
Blog
D
DataBreaches.Net
腾讯CDC
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
U
Unit 42
月光博客
月光博客
V
V2EX
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
The Cloudflare Blog
博客园 - 叶小钗
Y
Y Combinator Blog

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - mrothroc/mixlab: GPU ML architecture exploration...
mrothroc · 2026-04-22 · via Hacker News: Show HN

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 build

This 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.bin

generate

./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.