Mohamed-Abbas commited on
Commit
c24373f
·
verified ·
1 Parent(s): fdaf8cf

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +8 -42
README.md CHANGED
@@ -1,3 +1,4 @@
 
1
  ---
2
  dataset_name: cleaned-plotqa-v2-difficulty
3
  tags:
@@ -6,53 +7,18 @@ tags:
6
  - curriculum-learning
7
  - difficulty-estimation
8
  - rule-based
9
- dataset_info:
10
- features:
11
- - name: image
12
- dtype: image
13
- - name: user
14
- dtype: string
15
- - name: assistant
16
- dtype: string
17
- - name: difficulty_tier
18
- dtype: string
19
- splits:
20
- - name: train
21
- num_bytes: 7194242760.375
22
- num_examples: 199293
23
- download_size: 121207077
24
- dataset_size: 7194242760.375
25
- configs:
26
- - config_name: default
27
- data_files:
28
- - split: train
29
- path: data/train-*
30
  ---
31
 
32
- # Cleaned-PlotQA v2 with difficulty tiers (calibrated, rule-based)
33
 
34
- This repository augments jrc/cleaned-plotqa-v2 by adding a single column difficulty_tier ∈ {easy, medium, hard}, tuned for numeric and visual reasoning in scientific plots and calibrated on a 1,000-example sample with a robust tie-break fallback to prevent score collapse.
35
 
36
  ## Tier counts
37
- - easy: 199293
38
- - medium: 0
39
- - hard: 0
40
  - total labeled: 199293
41
 
42
- ## Criteria summary
43
- This release adds a single column difficulty_tier ∈ {easy, medium, hard} using a robust, PlotQA-oriented scoring with a rank-based fallback and balanced cutoffs:
44
-
45
- Calibration (on 1,000-sample):
46
- - Primary score weights numeric operations (sum/diff/ratio/percent/average), extremum/trend/slope cues (max/min/peak, slope/rate-of-change), visual grounding (axes/legend/lines/bars), units and formats (%, scientific notation, ranges), and multi-entity hints (both/all/each/every/combined/grouped/stacked/multi, and/vs/per/between) [PlotQA context].
47
- - If the primary score distribution collapses (near-constant), a deterministic rank-based fallback (counts of ops/extremum/units/percent/decimal/scientific/range/multi-entity/position/visual/color/length) is normalized and blended to ensure separation.
48
- - Balanced thresholds are set from the sample at 40th and 80th percentiles:
49
- easy: score ≤ 0.000000
50
- medium: 0.000000 < score ≤ 0.000000
51
- hard: score > 0.000000
52
-
53
- Assignment across the full dataset:
54
- - The same blended scoring and fixed cutoffs are applied to every example to produce tiers suitable for curriculum training.
55
-
56
  ## Notes
57
- - Only one new column is introduced; all original fields remain unchanged.
58
- - The calibration procedure is designed to yield balanced tiers even when questions are short or templated, which otherwise causes naive rule-based scoring to concentrate mass in a single class.
 
1
+
2
  ---
3
  dataset_name: cleaned-plotqa-v2-difficulty
4
  tags:
 
7
  - curriculum-learning
8
  - difficulty-estimation
9
  - rule-based
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  ---
11
 
12
+ # Cleaned-PlotQA v2 with difficulty tiers (vectorized + calibrated)
13
 
14
+ This repository augments jrc/cleaned-plotqa-v2 by adding a single column difficulty_tier ∈ {easy, medium, hard} computed with a vectorized, batch‑scored rule set and cutoffs calibrated on a 1,000example sample to avoid tier collapse.
15
 
16
  ## Tier counts
17
+ - easy: 77403
18
+ - medium: 78521
19
+ - hard: 43369
20
  - total labeled: 199293
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  ## Notes
23
+ - Only one new column is added; original fields remain unchanged.
24
+ - The scoring runs batched (8192) with multiprocessing (num_proc=4) for speed; adjust to fit memory/CPU limits.