Views
No views yet
gemma4_unified multi-modal architecture, this model requires the Apple MLX Vision-Language (mlx-vlm) framework to run, even for purely text-based reasoning tasks. It was fine-tuned entirely on Apple Silicon and is fused natively for macOS environments.google/gemma-4-12B-it11-47/claude_opus_4.8_max_thinking_5k_v2mlx_vlm)mxfp8)--train-on-completions enabled) to prevent prompt-memorization and ensure robust zero-shot logical deduction.mlx-vlm package.1pip install mlx-vlm
21python3 -m mlx_vlm.generate \
2 --model PishangShedappp/gemma-4-12B-it-claude-opus-4.8-max-thinking \
3 --max-tokens 1000 \
4 --prompt "Explain why quantum computing is different from classical computing step-by-step."
51from mlx_vlm import load, generate
2
3# Load the fused model and processor
4model, processor = load("PishangShedappp/gemma-4-12B-it-claude-opus-4.8-max-thinking")
5
6# Format your prompt
7prompt = "Explain why quantum computing is different from classical computing step-by-step."
8
9# Generate the reasoning output
10response = generate(
11 model,
12 processor,
13 prompt=prompt,
14 max_tokens=1000,
15 verbose=True
16)
171python3 -m mlx_vlm.server --model PishangShedappp/gemma-4-12B-it-claude-opus-4.8-max-thinking --port 8080
2mlx_vlm.lora:2e-5--train-on-completions (Loss calculated only on generation targets)mxfp8 utilizing the gemma4_unified architecture, it requires a Mac with at least 32GB of Unified Memory to run comfortably during inference, and 64GB of Unified Memory for local LoRA re-training or handling massive context windows.