tpls commited on
Commit
9548411
·
verified ·
1 Parent(s): 871318b

dataset card (gate suite)

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-generation
5
+ tags:
6
+ - function-calling
7
+ - tool-use
8
+ - evaluation
9
+ - gemma4
10
+ pretty_name: Gemma-4 Coder — tool-calling gate suite
11
+ configs:
12
+ - config_name: default
13
+ data_files: tool_eval_cases.jsonl
14
+ ---
15
+
16
+ # Gemma-4 Coder — tool-calling gate suite
17
+
18
+ The **evaluation suite** behind the `tool-call pass rate` reported in our model cards'
19
+ `model-index`. 8 cases: positive tool-use prompts (the model must emit a structured
20
+ tool call) plus a no-tool **abstain** case (it must answer directly, not hallucinate a call).
21
+
22
+ Authored by us — fully permissive (apache-2.0). This is an *eval* set, not training data;
23
+ our training mix is a derivative of public datasets and is **not** redistributed (its
24
+ reproducible recipe — sources, pinned revisions, weights — is on each model card).
25
+
26
+ ## Files
27
+
28
+ | File | What |
29
+ |------|------|
30
+ | `tool_eval_cases.jsonl` | one case/line: `{name, user, tools, expect}` |
31
+ | `tool_calib.txt` | imatrix calibration text (code + tool-call markup) used when quantizing |
32
+
33
+ ## How it scores
34
+
35
+ Serve a GGUF on `llama.cpp` (`llama-server --jinja`), send each case, and check whether a
36
+ structured tool call was emitted (or correctly abstained). Two rates are reported:
37
+ **raw** = llama.cpp's native parse; **shim** = the same output re-parsed for gemma-4's
38
+ native markup (llama.cpp's `--jinja` doesn't recognise that format, so raw undercounts).
39
+
40
+ ```python
41
+ from datasets import load_dataset
42
+ cases = load_dataset("tpls/gemma4-coder-tool-eval", split="train")
43
+ ```
44
+
45
+ ## Used by
46
+
47
+ - [`tpls/gemma-4-12B-coder-fable5-composer2.5-v1-sft-v5`](https://huggingface.co/tpls/gemma-4-12B-coder-fable5-composer2.5-v1-sft-v5)
48
+ - [`tpls/gemma-4-12B-coder-fable5-composer2.5-v1-sft-v5-GGUF`](https://huggingface.co/tpls/gemma-4-12B-coder-fable5-composer2.5-v1-sft-v5-GGUF)