davanstrien HF Staff commited on
Commit
aac583b
·
verified ·
1 Parent(s): 327fe91

Honest labels: eval is agent-labelled, not human-reviewed

Browse files
Files changed (1) hide show
  1. README.md +13 -26
README.md CHANGED
@@ -20,30 +20,13 @@ source_datasets:
20
  pretty_name: Southborough Death Cards (gold / silver / pool)
21
  configs:
22
  - config_name: eval
23
- data_files:
24
- - split: train
25
- path: eval/train-*
26
- - config_name: gold
27
- data_files: gold/*
28
- - config_name: pool
29
- data_files: pool/*
30
  - config_name: silver
31
  data_files: silver/*
32
- dataset_info:
33
- config_name: eval
34
- features:
35
- - name: image_id
36
- dtype: string
37
- - name: image
38
- dtype: image
39
- - name: extraction
40
- dtype: string
41
- splits:
42
- - name: train
43
- num_bytes: 1930935
44
- num_examples: 12
45
- download_size: 1931399
46
- dataset_size: 1930935
47
  ---
48
 
49
  # Southborough death cards — structured extraction
@@ -56,12 +39,16 @@ prepared for schema-conditioned extraction. Each card records a death: `name`, `
56
 
57
  | config | cards | labels |
58
  |---|---|---|
59
- | `gold` | 12 | **hand-reviewed** ground truth (eval) AI-drafted, human-reviewed, uncertain readings flagged |
60
- | `silver` | 127 | **machine-generated** labels (Qwen3-VL-8B from the image) — SFT data, *not* hand-verified |
61
  | `pool` | 160 | **unlabelled** image pool — re-label with your own model/schema |
62
 
63
- Training (`silver`) and evaluation (`gold`) data for the [index-card-extractor-4b](#) research model;
64
- `pool` is the unlabelled source for `silver`. ⚠️ `silver` labels carry model noise on free-text fields.
 
 
 
 
65
 
66
  ## Columns
67
  `gold`/`silver`: `image_id` · `image` · `extraction` (JSON). `pool`: `image_id` · `image`.
 
20
  pretty_name: Southborough Death Cards (gold / silver / pool)
21
  configs:
22
  - config_name: eval
23
+ data_files: eval/*
 
 
 
 
 
 
24
  - config_name: silver
25
  data_files: silver/*
26
+ - config_name: pool
27
+ data_files: pool/*
28
+ annotations_creators:
29
+ - machine-generated
 
 
 
 
 
 
 
 
 
 
 
30
  ---
31
 
32
  # Southborough death cards — structured extraction
 
39
 
40
  | config | cards | labels |
41
  |---|---|---|
42
+ | `eval` | 12 | **AI-labelled, not human-verified** a Claude agent read each card image carefully (one at a time, flagging uncertain readings). Held out for evaluation. *Higher-quality model labels, but not gold.* |
43
+ | `silver` | 127 | **machine-generated** labels (Qwen3-VL-8B, bulk from the image) — SFT data, *not* hand-verified |
44
  | `pool` | 160 | **unlabelled** image pool — re-label with your own model/schema |
45
 
46
+ Training (`silver`) and evaluation (`eval`) data for the [index-card-extractor-4b](#) research model;
47
+ `pool` is the unlabelled source for `silver`.
48
+
49
+ > ⚠️ **No human-verified ground truth here.** Both `eval` and `silver` are model-generated (the `eval`
50
+ > set more carefully, by a stronger model). Evaluation numbers against `eval` are *relative to agent
51
+ > labels*, not gold. Free-text fields (names, places) carry model noise.
52
 
53
  ## Columns
54
  `gold`/`silver`: `image_id` · `image` · `extraction` (JSON). `pool`: `image_id` · `image`.