stindardlogic commited on
Commit
98c4595
·
verified ·
1 Parent(s): 079b951

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +112 -0
README.md ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ size_categories:
6
+ - 100K<n<1M
7
+ task_categories:
8
+ - text-generation
9
+ - question-answering
10
+ pretty_name: Science QA SFT (100K)
11
+ tags:
12
+ - science
13
+ - stem
14
+ - physics
15
+ - chemistry
16
+ - biology
17
+ - astronomy
18
+ - earth-science
19
+ - sft
20
+ - supervised-fine-tuning
21
+ - chain-of-thought
22
+ - step-by-step
23
+ - reasoning
24
+ - synthetic
25
+ configs:
26
+ - config_name: default
27
+ data_files:
28
+ - split: train
29
+ path: science-qa-sft-100k.jsonl
30
+ ---
31
+
32
+ # Science QA SFT (100K)
33
+
34
+ 100,000 science Q&A examples with step-by-step explanations for SFT fine-tuning. Covers physics, chemistry, biology, astronomy, and earth science at beginner through advanced difficulty.
35
+
36
+ ## Motivation
37
+
38
+ Models trained on general text often give superficially plausible but mechanistically wrong answers to science questions — stating the right conclusion without understanding the underlying reasoning. This dataset trains models to explain *why* an answer is correct using first principles and step-by-step logic.
39
+
40
+ ## Dataset Description
41
+
42
+ **100,000 Q&A pairs** across 5 science subjects and 3 difficulty levels:
43
+
44
+ ### Subject Distribution
45
+
46
+ | Subject | Count | % |
47
+ |---|---|---|
48
+ | Physics | ~31,000 | 31% |
49
+ | Chemistry | ~19,300 | 19% |
50
+ | Biology | ~19,200 | 19% |
51
+ | Astronomy | ~15,300 | 15% |
52
+ | Earth Science | ~15,200 | 15% |
53
+
54
+ ### Difficulty Distribution
55
+
56
+ | Difficulty | Count | % |
57
+ |---|---|---|
58
+ | Easy | ~34,600 | 35% |
59
+ | Medium | ~46,200 | 46% |
60
+ | Hard | ~19,200 | 19% |
61
+
62
+ ### Topics Covered
63
+
64
+ **Physics**: Newton's laws, kinematics, elastic/inelastic collisions, thermodynamics, Ohm's law, electromagnetic induction, wave optics, Heisenberg uncertainty principle
65
+
66
+ **Chemistry**: Atomic structure, ionic vs covalent bonding, Le Chatelier's principle, acid-base chemistry (pH), hydrocarbons
67
+
68
+ **Biology**: Prokaryotes vs eukaryotes, DNA replication (semi-conservative model), natural selection, cardiovascular circulation, ecological succession
69
+
70
+ **Astronomy**: Seasons (axial tilt), stellar lifecycle (main sequence to stellar remnants), Big Bang evidence (CMB, redshift, abundance), black holes and event horizons
71
+
72
+ **Earth Science**: Plate tectonics, greenhouse effect and radiative forcing, thermohaline circulation (ocean currents), lightning formation
73
+
74
+ ## Format
75
+
76
+ ```json
77
+ {
78
+ "question": "Why does ice float on water?",
79
+ "explanation": "Most substances are denser in solid form than liquid form because molecules pack more tightly when frozen. Water is unusual: when it freezes, water molecules form a hexagonal crystalline lattice held together by hydrogen bonds. This lattice structure spaces molecules farther apart than in liquid water.\n\nStep 1 — Density comparison: Ice has a density of ~0.917 g/cm³; liquid water is ~1.0 g/cm³. Since ice is less dense, it floats.\n\nStep 2 — Why the lattice forms: Each water molecule can form 4 hydrogen bonds (2 as donor, 2 as acceptor). In the ice lattice, all 4 bonds are satisfied in a rigid, open hexagonal ring — creating more space between molecules than in the disordered liquid state.\n\nStep 3 — Ecological significance: This property is crucial for aquatic life. Ice insulates liquid water below, preventing lakes from freezing solid in winter. If ice sank, bodies of water would freeze from the bottom up, eliminating most aquatic ecosystems in cold climates.",
80
+ "answer": "Ice floats because its crystalline lattice structure (formed by hydrogen bonding) makes it less dense (~0.917 g/cm³) than liquid water (~1.0 g/cm³). This anomalous property is essential for aquatic ecosystems in cold climates.",
81
+ "subject": "chemistry",
82
+ "topic": "hydrogen bonding",
83
+ "difficulty": "medium",
84
+ "id": "sci_abc123"
85
+ }
86
+ ```
87
+
88
+ ## Key Training Signals
89
+
90
+ 1. **Mechanistic reasoning** — answers trace causal chains, not just state facts
91
+ 2. **Quantitative grounding** — specific values (densities, forces, temperatures) anchor explanations
92
+ 3. **Analogies and context** — connect abstract concepts to everyday phenomena
93
+ 4. **Multi-step structure** — explanations break complex reasoning into labeled steps
94
+ 5. **Difficulty calibration** — easy answers are direct; hard answers address misconceptions and edge cases
95
+
96
+ ## Difficulty Definitions
97
+
98
+ - **Easy**: Recall + single-step reasoning; appropriate for middle/high school level
99
+ - **Medium**: Multi-step reasoning with quantitative elements; appropriate for introductory college level
100
+ - **Hard**: Addresses common misconceptions explicitly; requires integrating 2+ concepts; appropriate for upper-division undergraduate level
101
+
102
+ ## Use Cases
103
+
104
+ - SFT fine-tuning for STEM question answering
105
+ - Training models to produce step-by-step explanations vs. bare answers
106
+ - Science tutoring applications requiring pedagogically sound explanations
107
+ - Evaluation of scientific reasoning capabilities
108
+ - Curriculum learning: train on easy → medium → hard progressively
109
+
110
+ ## License
111
+
112
+ Apache 2.0