Mohamed-Abbas commited on
Commit
5db0ed5
·
verified ·
1 Parent(s): 64edeec

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +14 -40
README.md CHANGED
@@ -1,3 +1,4 @@
 
1
  ---
2
  dataset_name: cleaned-plotqa-v2-difficulty
3
  tags:
@@ -6,59 +7,32 @@ 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: 7194085718.375
22
- num_examples: 199293
23
- download_size: 121124922
24
- dataset_size: 7194085718.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 (balanced, rule-based)
33
 
34
- This repository augments jrc/cleaned-plotqa-v2 with one additional column, difficulty_tier ∈ {easy, medium, hard}. The classifier uses strong PlotQA-oriented rules emphasizing numeric reasoning, extremum/trend/slope semantics, visual grounding (axes/legend/lines/bars), units/notation, and multi-entity disambiguation. Tiers are balanced using quantiles computed over the full dataset for robust stage sizing in curriculum learning.
35
 
36
  ## Tier counts
37
-
38
  - easy: 199293
39
  - medium: 0
40
  - hard: 0
41
  - total labeled: 199293
42
 
43
  ## Criteria summary
 
44
 
45
- This release adds a single column difficulty_tier ∈ {easy, medium, hard} using a deterministic, PlotQA-oriented scoring function with balanced thresholds:
 
 
 
 
 
 
46
 
47
- Scoring highlights:
48
- - Numeric reasoning: detection of arithmetic/aggregation (sum, difference, ratio, percentage, average), stacked operations, and comparison/threshold cues.
49
- - Extremum/trend/slope: emphasis on max/min/peak/valley and slope/rate-of-change; any “line/curve + extremum” is never classified as easy.
50
- - Visual grounding: references to axes, ticks, legend, lines/bars/curves, and positional terms (left/right/top/bottom/adjacent) raise difficulty.
51
- - Units and formats: recognition of %, scientific notation, unit tokens (k/M/B, °C, km, kg, Hz, etc.), ranges (10–20), and uncertainty (±, std dev, variance).
52
- - Series disambiguation: color terms and multi-entity words (both/all/each/every/together/combined/grouped/stacked/multi) increase difficulty.
53
-
54
- Balancing:
55
- - Tiers are assigned by data-driven quantiles over the entire dataset:
56
- - easy: score ≤ 0.0000 (≈ bottom 40%)
57
- - medium: 0.0000 < score ≤ 0.0000 (≈ middle 40%)
58
- - hard: score > 0.0000 (≈ top 20%)
59
- This ensures a balanced distribution even if raw scores are skewed.
60
 
61
  ## Notes
62
-
63
  - Only one new column is introduced; all original fields remain unchanged.
64
- - The balancing by quantiles is designed to produce sensible stage sizes across easy/medium/hard and can be retuned (e.g., 30/40/30) by adjusting the quantile cut points.
 
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 (calibrated, rule-based)
13
 
14
+ 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.
15
 
16
  ## Tier counts
 
17
  - easy: 199293
18
  - medium: 0
19
  - hard: 0
20
  - total labeled: 199293
21
 
22
  ## Criteria summary
23
+ 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:
24
 
25
+ Calibration (on 1,000-sample):
26
+ - 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].
27
+ - 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.
28
+ - Balanced thresholds are set from the sample at 40th and 80th percentiles:
29
+ easy: score ≤ 0.000000
30
+ medium: 0.000000 < score ≤ 0.000000
31
+ hard: score > 0.000000
32
 
33
+ Assignment across the full dataset:
34
+ - The same blended scoring and fixed cutoffs are applied to every example to produce tiers suitable for curriculum training.
 
 
 
 
 
 
 
 
 
 
 
35
 
36
  ## Notes
 
37
  - Only one new column is introduced; all original fields remain unchanged.
38
+ - 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.