11 lines
279 B
Plaintext
11 lines
279 B
Plaintext
FROM functiongemma:270m
|
|
|
|
# --- PARAMETERS (Precision focus) ---
|
|
# Garantisce i 32k di contesto richiesti
|
|
PARAMETER num_ctx 32768
|
|
# Bassa temperatura per evitare allucinazioni in un modello così piccolo
|
|
PARAMETER temperature 0.2
|
|
PARAMETER top_p 0.9
|
|
PARAMETER repeat_penalty 1.1
|
|
|