Recommended models
ollama pull translategemma:4b
ollama pull translategemma:12b
ollama pull translategemma:27b
translategemma:4b is the weak-PC first-test and compatibility model, not the quality baseline.
translategemma:12b is the recommended base model, but it is not a good
first choice below 16 GB RAM. translategemma:27b usually gives better
translation quality, but it needs strong hardware, should show a warning before use, and is not recommended below 32 GB RAM.
You do not need all three models. Pick one for the first test, and try another later if needed.
PowerShell / cmd commands
# Faster model for weaker machines
ollama pull translategemma:4b
# Balanced default model
ollama pull translategemma:12b
# Larger, usually better-quality model
ollama pull translategemma:27b
# Verify
ollama list
Quick runtime test
ollama run translategemma:4b "Translate to Hungarian: Hello, this is a short test."
ollama run translategemma:12b "Translate to Hungarian: Hello, this is a short test."
ollama run translategemma:27b "Translate to Hungarian: Hello, this is a short test."
If ollama run returns a sensible translation, the model is really running.
The 27b model is listed separately because it is a heavy quality mode for strong machines.