Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,31 +1,39 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
dtype: string
|
| 6 |
-
- name: section_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: 205568
|
| 23 |
-
num_examples: 200
|
| 24 |
-
download_size: 100088
|
| 25 |
-
dataset_size: 205568
|
| 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/otb-cascade-phaseB-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**: `jim_crow`, `no_jim_crow`
|
| 15 |
+
- **Input rows**: 200
|
| 16 |
+
- **Output rows**: 200
|
| 17 |
+
|
| 18 |
+
## Label distribution
|
| 19 |
+
|
| 20 |
+
| Label | Real | Synthetic | Total |
|
| 21 |
+
|---|---:|---:|---:|
|
| 22 |
+
| `jim_crow` | 14 | 0 | 14 |
|
| 23 |
+
| `no_jim_crow` | 186 | 0 | 186 |
|
| 24 |
+
|
| 25 |
+
## Cascade audit
|
| 26 |
+
|
| 27 |
+
| Tier | Model | Processed | Entropy | Parse fail % | `jim_crow` count | `no_jim_crow` count |
|
| 28 |
+
|---|---|---|---|---|---|---|
|
| 29 |
+
| 1 | `LiquidAI/LFM2.5-1.2B-Instruct` | 200 | 0.515 | 0.0 | 23 | 177 |
|
| 30 |
+
| 2 | `Qwen/Qwen3-4B-Instruct-2507` | 200 | 0.366 | 0.0 | 14 | 186 |
|
| 31 |
+
|
| 32 |
+
**Pairwise tier agreement:**
|
| 33 |
+
|
| 34 |
+
- Tier 1 vs Tier 2: 82.5% (165/200 examples)
|
| 35 |
+
|
| 36 |
+
**Escalation:** 35 examples (17.5%) had cross-tier disagreement; tier-3 arbitration not used (no tier-3 configured; tier-2 wins).
|
| 37 |
+
|
| 38 |
+
See [CASCADE_DESIGN.md](https://github.com/davanstrien/classify-and-augment/blob/main/CASCADE_DESIGN.md) for the disagreement-driven cascade strategy.
|
| 39 |
+
|