Views
No views yet
google/gemma-4-E2B base (non-instruction-tuned)
checkpoint, converted with mlx_lm.convert for use with MLX
and MLX-Swift on Apple Silicon.google/gemma-4-E2B to 5-bit precision (group size 64) using
mlx_lm.convert -q --q-bits 5, mlx-lm version 0.31.3. No other modification was made —
architecture, tokenizer, and generation config are unchanged from upstream.LICENSE in this repository), matching
the license Google publishes google/gemma-4-E2B under.NOTICE for the upstream attribution this repository carries forward.pip install -U mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("Animateus/gemma-4-E2B-5bit")
4
5prompt = "The quick brown fox"
6response = generate(model, tokenizer, prompt=prompt, verbose=True)