XythicK commited on
Commit
cc5d31c
·
verified ·
1 Parent(s): fc3296a

Update README with analysis reference

Browse files
Files changed (1) hide show
  1. README.md +55 -0
README.md ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: Row_ID
5
+ dtype: int64
6
+ - name: Topic
7
+ dtype: string
8
+ - name: Subtopic
9
+ dtype: string
10
+ - name: Question
11
+ dtype: string
12
+ - name: Answer_1
13
+ dtype: string
14
+ - name: Explanation_1
15
+ dtype: string
16
+ - name: Answer_2
17
+ dtype: string
18
+ - name: Explanation_2
19
+ dtype: string
20
+ - name: Answer_3
21
+ dtype: string
22
+ - name: Explanation_3
23
+ dtype: string
24
+ - name: Difficulty
25
+ dtype: string
26
+ splits:
27
+ - name: train
28
+ num_examples: 62941756
29
+ ---
30
+ # Chemistry Questions Dataset (62M Rows)
31
+
32
+ ## Description
33
+ A dataset of 62,941,756 chemistry questions covering Organic Chemistry (Alkenes, Nomenclature), Inorganic Chemistry (Oxidation States), and Physical Chemistry (Kinetics). Each row includes a question, 2-3 answers with explanations, and difficulty level.
34
+
35
+ ## Columns
36
+ - **Row_ID**: Unique identifier (1 to 62,941,756).
37
+ - **Topic**: Main chemistry category (e.g., Organic Chemistry).
38
+ - **Subtopic**: Specific topic (e.g., Alkenes).
39
+ - **Question**: The chemistry question.
40
+ - **Answer_1**, **Answer_2**, **Answer_3**: Possible answers (Answer_3 often N/A).
41
+ - **Explanation_1**, **Explanation_2**, **Explanation_3**: Explanations for each answer.
42
+ - **Difficulty**: Hard or Expert.
43
+
44
+ ## Analysis
45
+ - Unique value counts are visualized in [unique_value_counts.png](unique_value_counts.png).
46
+ - Sample analysis (based on 100k rows): See image for approximate counts per column.
47
+
48
+ ## Usage
49
+ ```python
50
+ from datasets import load_dataset
51
+ dataset = load_dataset("your-username/chemistry-questions-62m")
52
+ ```
53
+
54
+ ## Size
55
+ - Uncompressed: ~7.55GB