Ryan Robson commited on
Commit
d3ae962
·
1 Parent(s): 2b09efa

Add comprehensive HuggingFace dataset metadata

Browse files

- Add MIT license specification
- Include comprehensive tags for educational AI, NGSS, assessment
- Set proper task categories and size classifications
- Add detailed dataset_info with all 18 features
- Configure data file paths for train/validation/test splits

Files changed (1) hide show
  1. README.md +93 -1
README.md CHANGED
@@ -1,3 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # K-12 Science Standards Aligned Learning Framework Dataset
2
 
3
  A comprehensive dataset of K-12 science curriculum standards aligned with the Next Generation Science Standards (NGSS), designed for training and evaluating educational AI systems.
@@ -169,7 +261,7 @@ If you use this dataset in your research, please cite:
169
 
170
  ## License
171
 
172
- [License information to be added]
173
 
174
  ## Contributing
175
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ tags:
6
+ - education
7
+ - k-12
8
+ - science
9
+ - stem
10
+ - ngss
11
+ - assessment
12
+ - curriculum
13
+ - learning
14
+ - standards
15
+ - educational-ai
16
+ - three-dimensional-learning
17
+ - bloom-taxonomy
18
+ - depth-of-knowledge
19
+ - scientific-practices
20
+ - crosscutting-concepts
21
+ pretty_name: K-12 Science Standards Aligned Learning Framework
22
+ size_categories:
23
+ - 1K<n<10K
24
+ task_categories:
25
+ - text-classification
26
+ - text-generation
27
+ - question-answering
28
+ task_ids:
29
+ - educational-assessment
30
+ - curriculum-alignment
31
+ - learning-objective-classification
32
+ dataset_info:
33
+ features:
34
+ - name: instruction
35
+ dtype: string
36
+ - name: input
37
+ dtype: string
38
+ - name: output
39
+ dtype: string
40
+ - name: task
41
+ dtype: string
42
+ - name: metadata_standard_code
43
+ dtype: string
44
+ - name: metadata_grade_level
45
+ dtype: string
46
+ - name: metadata_domain
47
+ dtype: string
48
+ - name: metadata_core_idea
49
+ dtype: string
50
+ - name: metadata_core_idea_title
51
+ dtype: string
52
+ - name: metadata_ngss_practice
53
+ dtype: string
54
+ - name: metadata_crosscutting_concept
55
+ dtype: string
56
+ - name: metadata_dok_level
57
+ dtype: string
58
+ - name: metadata_bloom_level
59
+ dtype: string
60
+ - name: metadata_complexity_level
61
+ dtype: string
62
+ - name: metadata_three_dimensional
63
+ dtype: string
64
+ - name: metadata_ngss_aligned
65
+ dtype: string
66
+ - name: metadata_assessment_type
67
+ dtype: string
68
+ - name: metadata_estimated_time
69
+ dtype: string
70
+ splits:
71
+ - name: train
72
+ num_bytes: 3778013
73
+ num_examples: 4750
74
+ - name: validation
75
+ num_bytes: 808193
76
+ num_examples: 1018
77
+ - name: test
78
+ num_bytes: 810805
79
+ num_examples: 1019
80
+ download_size: 202337
81
+ dataset_size: 5397011
82
+ configs:
83
+ - config_name: default
84
+ data_files:
85
+ - split: train
86
+ path: data/train-*
87
+ - split: validation
88
+ path: data/validation-*
89
+ - split: test
90
+ path: data/test-*
91
+ ---
92
+
93
  # K-12 Science Standards Aligned Learning Framework Dataset
94
 
95
  A comprehensive dataset of K-12 science curriculum standards aligned with the Next Generation Science Standards (NGSS), designed for training and evaluating educational AI systems.
 
261
 
262
  ## License
263
 
264
+ This dataset is released under the [MIT License](https://opensource.org/licenses/MIT).
265
 
266
  ## Contributing
267