davanstrien HF Staff commited on
Commit
b352264
·
verified ·
1 Parent(s): e30566d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +45 -29
README.md CHANGED
@@ -1,31 +1,47 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: int64
6
- - name: text
7
- dtype: string
8
- - name: label
9
- dtype: string
10
- - name: is_synthetic
11
- dtype: bool
12
- - name: tier
13
- dtype: int64
14
- - name: agreed
15
- dtype: bool
16
- - name: tier_1_label
17
- dtype: string
18
- - name: tier_2_label
19
- dtype: string
20
- splits:
21
- - name: train
22
- num_bytes: 121664
23
- num_examples: 200
24
- download_size: 57944
25
- dataset_size: 121664
26
- configs:
27
- - config_name: default
28
- data_files:
29
- - split: train
30
- path: data/train-*
31
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ tags:
3
+ - classify-and-augment
4
+ - llm-annotated
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  ---
6
+
7
+ # davanstrien/ledgar-top10-cascade-2tier
8
+
9
+ LLM-annotated dataset produced by [classify-and-augment](https://github.com/davanstrien/classify-and-augment).
10
+
11
+ ## Configuration
12
+
13
+ - **Model**: Cascade: `LiquidAI/LFM2.5-1.2B-Instruct` → `Qwen/Qwen3-4B-Instruct-2507`
14
+ - **Labels**: `Governing Laws`, `Notices`, `Counterparts`, `Entire Agreements`, `Severability`, `Survival`, `Amendments`, `Assignments`, `Expenses`, `Terms`
15
+ - **Input rows**: 200
16
+ - **Output rows**: 200
17
+
18
+ ## Label distribution
19
+
20
+ | Label | Real | Synthetic | Total |
21
+ |---|---:|---:|---:|
22
+ | `Amendments` | 17 | 0 | 17 |
23
+ | `Assignments` | 15 | 0 | 15 |
24
+ | `Counterparts` | 26 | 0 | 26 |
25
+ | `Entire Agreements` | 25 | 0 | 25 |
26
+ | `Expenses` | 14 | 0 | 14 |
27
+ | `Governing Laws` | 28 | 0 | 28 |
28
+ | `Notices` | 21 | 0 | 21 |
29
+ | `Severability` | 19 | 0 | 19 |
30
+ | `Survival` | 22 | 0 | 22 |
31
+ | `Terms` | 13 | 0 | 13 |
32
+
33
+ ## Cascade audit
34
+
35
+ | Tier | Model | Processed | Entropy | Parse fail % | `Governing Laws` count | `Notices` count | `Counterparts` count | `Entire Agreements` count | `Severability` count | `Survival` count | `Amendments` count | `Assignments` count | `Expenses` count | `Terms` count |
36
+ |---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
37
+ | 1 | `LiquidAI/LFM2.5-1.2B-Instruct` | 200 | 0.000 | 0.0 | 0 | 0 | 200 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
38
+ | 2 | `Qwen/Qwen3-4B-Instruct-2507` | 200 | 3.277 | 0.0 | 28 | 21 | 26 | 25 | 19 | 22 | 17 | 15 | 14 | 13 |
39
+
40
+ **Pairwise tier agreement:**
41
+
42
+ - Tier 1 vs Tier 2: 13.0% (26/200 examples)
43
+
44
+ **Escalation:** 174 examples (87.0%) had cross-tier disagreement; tier-3 arbitration not used (no tier-3 configured; tier-2 wins).
45
+
46
+ See [CASCADE_DESIGN.md](https://github.com/davanstrien/classify-and-augment/blob/main/CASCADE_DESIGN.md) for the disagreement-driven cascade strategy.
47
+