Views
No views yet
| Arquivo | Tamanho | Tipo |
|---|---|---|
gemma-4-12B-it-Q4_K_M.gguf | 7.66 GB | Modelo principal |
mmproj-gemma-4-12B-it-f16.gguf | ~122 MB | Projetor visual (multimodal) |
gemma-4-12B-it-imatrix.gguf | — | Calibração imatrix |
Modelfile | — | Template Ollama pronto para uso |
gemma4)1# Baixar e criar modelo
2huggingface-cli download bandtor/gemma-4-12B-it-GGUF --local-dir ./gemma4-12b
3ollama create gemma4-12b -f ./gemma4-12b/Modelfile
4ollama run gemma4-12bollama run hf.co/bandtor/gemma-4-12B-it-GGUF1# Apenas texto
2llama-cli -m gemma-4-12B-it-Q4_K_M.gguf \
3 --ctx-size 32768 \
4 -fa 1 \
5 --prompt "<|turn>user\nOlá!<turn|>\n<|turn>model\n"
6
7# Multimodal (visão)
8llama-cli -m gemma-4-12B-it-Q4_K_M.gguf \
9 --mmproj mmproj-gemma-4-12B-it-f16.gguf \
10 --image imagem.jpg \
11 --prompt "<|turn>user\nDescreva esta imagem.<turn|>\n<|turn>model\n"<bos><|turn>system
{system_prompt}<turn|>
<|turn>user
{mensagem}<turn|>
<|turn>model
{resposta}<turn|>