happynood commited on
Commit
06585d3
·
verified ·
1 Parent(s): afebc9c

Add dataset card and smoke_v1 evaluation suite

Browse files
Files changed (1) hide show
  1. README.md +72 -0
README.md ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ tags:
6
+ - tool-use
7
+ - function-calling
8
+ - benchmark
9
+ - quantization
10
+ - evaluation
11
+ pretty_name: QuantCall Evaluation Suite
12
+ dataset_info:
13
+ features:
14
+ - name: id
15
+ dtype: string
16
+ - name: tier
17
+ dtype: string
18
+ - name: category
19
+ dtype: string
20
+ - name: query
21
+ dtype: string
22
+ - name: tools
23
+ sequence: string
24
+ - name: ground_truth_calls
25
+ sequence: string
26
+ - name: expects_call
27
+ dtype: bool
28
+ splits:
29
+ - name: smoke_v1
30
+ num_examples: 10
31
+ ---
32
+
33
+ # QuantCall Evaluation Suite
34
+
35
+ Deterministic, versioned evaluation samples used by the
36
+ [QuantCall benchmark](https://github.com/Happynood/quant-toolcall-bench)
37
+ to measure how quantization degrades LLM function-calling reliability.
38
+
39
+ ## Contents
40
+
41
+ | File | Description |
42
+ |------|-------------|
43
+ | `data/smoke_v1.jsonl` | T0 smoke tier — 10 hand-crafted instances, always available without a GPU |
44
+ | `data/schemas/tool_schemas.json` | Extracted JSON Schemas for all tools in `smoke_v1` |
45
+
46
+ ## Format
47
+
48
+ Each instance in `smoke_v1.jsonl` is one JSON object per line:
49
+
50
+ ```json
51
+ {
52
+ "id": "T0-001",
53
+ "tier": "T0",
54
+ "category": "simple",
55
+ "query": "What is the weather like in Paris?",
56
+ "tools": [{"name": "get_weather", "description": "...", "json_schema": {...}}],
57
+ "ground_truth_calls": [{"name": "get_weather", "arguments": {"city": "Paris"}}],
58
+ "expects_call": true
59
+ }
60
+ ```
61
+
62
+ ## Versioning
63
+
64
+ Files are version-pinned (`smoke_v1`, `smoke_v2`, …). Never overwrite a pinned
65
+ version; add new versions when the evaluation set changes. This ensures all
66
+ published results remain reproducible against the exact sample they were run on.
67
+
68
+ ## Links
69
+
70
+ - GitHub: https://github.com/Happynood/quant-toolcall-bench
71
+ - Results dataset: https://huggingface.co/datasets/Happynood/quantcall-results
72
+ - Leaderboard: https://huggingface.co/spaces/Happynood/quantcall-leaderboard