Gemma 4

Gemma 4 is a family of multimodal models from Google. This guide covers how to train them with Axolotl.

Getting started

  1. Install Axolotl following the installation guide.

  2. Install Cut Cross Entropy to reduce training VRAM usage.

  3. Run the finetuning example:

# 26B MoE QLoRA (1x80GB)
axolotl train examples/gemma4/26b-a4b-moe-qlora.yaml

# 31B Dense QLoRA (1x80GB @ ~25.2 GiB)
axolotl train examples/gemma4/31b-qlora.yaml

# E2B vision LoRA (1x80GB @ ~10.4 GiB)
axolotl train examples/gemma4/e2b-vision-lora.yaml

MoE Expert Quantization & Expert LoRA (26B-A4B only)

The 26B-A4B config uses ScatterMoE kernels via the transformers ExpertsInterface and quantizes expert weights on load. To learn about expert quantization, expert LoRA targeting, and related limitations, see the MoE Expert Quantization docs.

Limitations

  • Flash Attention: FA2 (max head_dim=256) and FA4 (max head_dim=128) cannot serve Gemma 4’s global_head_dim=512 on their own. Use flex_attention, or gemma4_hybrid_attn_impl: true to run the sliding-window layers under FA2 and the global (head_dim=512) layers under sdpa (requires attn_implementation: flash_attention_2 and a flash-attn build for your GPU arch).
  • LoRA kernels: Not supported for models with KV-sharing layers.
  • lora_target_linear: Incompatible for multimodal models; use lora_target_modules with a regex to restrict LoRA to the text backbone.

TIPS

  • gemma4_hybrid_attn_impl: true trains ~2× faster than flex_attention on 31B (~25.2 GiB reserved, packing on) and avoids the flex head_dim=512 kernel, which can exhaust shared memory on Blackwell.
  • Read more on how to load your own dataset at docs.
  • You can run full finetuning by removing adapter: qlora, load_in_4bit: true, and quantize_moe_experts: true from the config. This is heavy and has not been tested.

Optimization Guides

Please check the Optimizations doc.