Views
No views yet
mlx_lm.convert. This is the unmodified Google
Gemma 4 E2B-IT weights — no LEK shift, no fine-tuning — hosted in our
namespace so downstream tools (benchmarks, apps) don't have to depend
on external mlx-community mirrors.lthn/lemer.| Repo | Format | Bits | Use case |
|---|---|---|---|
LetheanNetwork/lemer | safetensors + gguf Q4_K_M | bf16 / 4 | Source weights + llama.cpp/Ollama |
LetheanNetwork/lemer-mlx | mlx | 4 | This repo — Apple Silicon default |
LetheanNetwork/lemer-mlx-8bit | mlx | 8 | Apple Silicon higher-precision |
LetheanNetwork/lemer-mlx-bf16 | mlx | bf16 | Apple Silicon full-precision reference |
1from mlx_lm import load, generate
2
3model, tokenizer = load("LetheanNetwork/lemer-mlx")
4response = generate(
5 model, tokenizer,
6 prompt=tokenizer.apply_chat_template(
7 [{"role": "user", "content": "Hello"}],
8 add_generation_prompt=True,
9 enable_thinking=True,
10 ),
11 max_tokens=512,
12)LetheanNetwork/lemer bf16 safetensors (= google/gemma-4-E2B-it)mlx_lm.convert (mlx-lm — LM Studio / Apple ML Research)