PhilipQuirke commited on
Commit
12b4cb4
·
verified ·
1 Parent(s): 1195f82

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +55 -49
README.md CHANGED
@@ -1,51 +1,57 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: question
5
- dtype: string
6
- - name: choices
7
- list: string
8
- - name: answer
9
- dtype: int64
10
- - name: hint
11
- dtype: string
12
- - name: task
13
- dtype: string
14
- - name: grade
15
- dtype: string
16
- - name: subject
17
- dtype: string
18
- - name: topic
19
- dtype: string
20
- - name: category
21
- dtype: string
22
- - name: skill
23
- dtype: string
24
- - name: lecture
25
- dtype: string
26
- - name: solution
27
- dtype: string
28
- - name: source_index
29
- dtype: int64
30
- - name: tiny_index
31
- dtype: int64
32
- - name: tiny_selection_seed
33
- dtype: int64
34
- - name: tiny_selection_strategy
35
- dtype: string
36
- - name: source_dataset
37
- dtype: string
38
- - name: source_split
39
- dtype: string
40
- splits:
41
- - name: test
42
- num_bytes: 160045
43
- num_examples: 100
44
- download_size: 71008
45
- dataset_size: 160045
46
- configs:
47
- - config_name: default
48
- data_files:
49
- - split: test
50
- path: data/test-*
51
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-sa-4.0
3
+ task_categories:
4
+ - multiple-choice
5
+ - question-answering
6
+ language:
7
+ - en
8
+ pretty_name: tinyScienceQA
9
+ source_datasets:
10
+ - tasksource/ScienceQA_text_only
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  ---
12
+
13
+ # tinyScienceQA
14
+
15
+ Pathfinder-generated 100-example tiny subset of the text-only ScienceQA test
16
+ split. This is intended for fast smoke tests and default small-sample Pathfinder
17
+ runs, not as an official ScienceQA benchmark replacement.
18
+
19
+ ## Construction
20
+
21
+ - source dataset: `tasksource/ScienceQA_text_only`
22
+ - source split: `test`
23
+ - source rows: `2224`
24
+ - tiny rows: `100`
25
+ - seed: `20260511`
26
+ - selection strategy: `subject_answer_quota_topic_coverage_stable_hash`
27
+
28
+ The selector preserves subject/answer-cell proportions with exact integer
29
+ quotas, ensures topic coverage where quota constraints permit, and fills the
30
+ remaining slots by a deterministic stable hash. The resulting subset covers
31
+ `25` of `25` topics.
32
+
33
+ ## Counts
34
+
35
+ Subject counts:
36
+
37
+ ```json
38
+ {
39
+ "language science": 47,
40
+ "natural science": 46,
41
+ "social science": 7
42
+ }
43
+ ```
44
+
45
+ Answer counts:
46
+
47
+ ```json
48
+ {
49
+ "0": 44,
50
+ "1": 43,
51
+ "2": 9,
52
+ "3": 4
53
+ }
54
+ ```
55
+
56
+ The corresponding Pathfinder benchmark id is `scienceqa`, and the default tiny
57
+ dataset id is `PhilipQuirke/tinyScienceQA`.