marshadbits commited on
Commit
0a4c910
·
verified ·
1 Parent(s): 7d042d5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gemma
3
+ base_model: google/functiongemma-270m-it
4
+ tags:
5
+ - gguf
6
+ - function-calling
7
+ - tool-use
8
+ - llama.cpp
9
+ ---
10
+
11
+ # Athena FunctionGemma-270M (fine-tuned)
12
+
13
+ LoRA fine-tune of `google/functiongemma-270m-it` for Athena, the on-device HR
14
+ assistant in [Mis-Genie](https://github.com/MAGSoft/Mis-Genie). Text query ->
15
+ structured tool call (name + arguments) only -- never free-form text.
16
+
17
+ - Real-eval launch gate (hand-written, naturally-phrased HR queries, distinct
18
+ from training data): **18/20 correct tool+arguments**.
19
+ - Synthetic held-out eval: 43/46.
20
+ - Trained on 458 examples covering 7 read-only data tools + a clarification-
21
+ popup fallback for underspecified queries.
22
+
23
+ GGUF file (`athena-functiongemma-270m-f16.gguf`) is ready to serve directly
24
+ with `llama-server` (raw llama.cpp, not Ollama) -- pass an explicit
25
+ `"stop": ["<end_function_call>"]` in requests; llama-server has no built-in
26
+ parser for this model's tool-call syntax and will otherwise keep generating
27
+ past the call.
28
+
29
+ Two known, understood gaps (not fixed by more training data):
30
+ - Partial employee names ("Taylor" -> "Taylor Reyes") aren't resolved to full
31
+ names -- an entity-resolution problem for the calling application, not the
32
+ model.
33
+ - One specific day-range phrasing ("between March 1st and March 15th") is
34
+ under-represented in training (12/458 examples) and occasionally fails to
35
+ generate a parseable call.