Mohamed-Abbas commited on
Commit
5307fc1
·
verified ·
1 Parent(s): e393298

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +20 -39
README.md CHANGED
@@ -6,57 +6,38 @@ 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 difficulty tiers (rule-based)
33
 
34
- This repository augments jrc/cleaned-plotqa-v2 with a single additional column, difficulty_tier ∈ {easy, medium, hard}, tailored to the numeric and visual reasoning characteristics of PlotQA-style scientific plots [1][2][3].
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:
46
- - Numeric reasoning: detection of arithmetic/aggregation (sum, difference, ratio, percentage, average), multi-operator stacking, and comparison/threshold cues.
47
- - Extremum/trend: explicit emphasis on max/min/peak/valley and slope/rate-of-change/derivative; any “line/curve + extremum” is never classified as easy.
 
 
48
  - Visual grounding: references to axes, ticks, legend, lines/bars/curves, and positional terms (left/right/top/bottom/adjacent) raise difficulty.
49
  - 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).
50
  - Series disambiguation: color terms and multi-entity words (both/all/each/every/together/combined/grouped/stacked/multi) increase difficulty.
51
- Thresholds are tuned higher than for ChartQA to reflect stronger numeric complexity commonly observed in scientific plot QA tasks.
52
-
53
- ## Notes
54
 
55
- - Only one new column is introduced; no changes to the original fields of the cleaned dataset.
56
- - The rules prioritize numeric reasoning, extremum/trend detection, units, and multi-entity aggregation for realistic difficulty separation in PlotQA-style QA [2][3].
 
 
 
 
57
 
58
- ## References
59
 
60
- [1] jrc/cleaned-plotqa-v2 (compact cleaned release for convenient QA experimentation).
61
- [2] PlotQA: Reasoning over Scientific Plots (benchmark introducing large-scale, open-vocabulary numeric QA on plots).
62
- [3] PlotQA details and motivation for numeric reasoning challenges in open-vocabulary answer settings.
 
6
  - curriculum-learning
7
  - difficulty-estimation
8
  - rule-based
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  ---
10
 
11
+ # Cleaned-PlotQA v2 with difficulty tiers (balanced, rule-based)
12
 
13
+ 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.
14
 
15
  ## Tier counts
16
 
17
+ - easy: 199293
18
+ - medium: 0
19
+ - hard: 0
20
+ - total labeled: 199293
21
 
22
  ## Criteria summary
23
 
24
+ This release adds a single column difficulty_tier ∈ {easy, medium, hard} using a deterministic, PlotQA-oriented scoring function with balanced thresholds:
25
+
26
+ Scoring highlights:
27
+ - Numeric reasoning: detection of arithmetic/aggregation (sum, difference, ratio, percentage, average), stacked operations, and comparison/threshold cues.
28
+ - Extremum/trend/slope: emphasis on max/min/peak/valley and slope/rate-of-change; any “line/curve + extremum” is never classified as easy.
29
  - Visual grounding: references to axes, ticks, legend, lines/bars/curves, and positional terms (left/right/top/bottom/adjacent) raise difficulty.
30
  - 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).
31
  - Series disambiguation: color terms and multi-entity words (both/all/each/every/together/combined/grouped/stacked/multi) increase difficulty.
 
 
 
32
 
33
+ Balancing:
34
+ - Tiers are assigned by data-driven quantiles over the entire dataset:
35
+ - easy: score ≤ 0.0000 (≈ bottom 40%)
36
+ - medium: 0.0000 < score ≤ 0.0000 (≈ middle 40%)
37
+ - hard: score > 0.0000 (≈ top 20%)
38
+ This ensures a balanced distribution even if raw scores are skewed.
39
 
40
+ ## Notes
41
 
42
+ - Only one new column is introduced; all original fields remain unchanged.
43
+ - 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.