hmahadik commited on
Commit
03fe0c2
·
verified ·
1 Parent(s): 02bcc11

Add Modelfile (renamed from Modelfile.compact, FROM updated)

Browse files
Files changed (1) hide show
  1. Modelfile +18 -0
Modelfile ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # FunctionGemma 270M Physical AI — function-token format
2
+ # Function tokens (<tool_N>) + <end> terminator. ~8-15 output tokens per call.
3
+ # Optimized for CPU decode on small Cortex-A55 / similar edge targets.
4
+
5
+ FROM ./functiongemma-physical-ai-Q4_K_M.gguf
6
+
7
+ PARAMETER temperature 0
8
+ PARAMETER top_p 1
9
+ PARAMETER num_ctx 1024
10
+ PARAMETER num_predict 80
11
+
12
+ # Function-token format terminators + base-model end-of-turn
13
+ PARAMETER stop "<end>"
14
+ PARAMETER stop "<end_of_turn>"
15
+ PARAMETER stop "<eos>"
16
+
17
+ # Use base model's chat template — training data is in messages+tools form,
18
+ # the tokenizer's chat_template.jinja already handles it.