tessak22 commited on
Commit
fd715ea
·
verified ·
1 Parent(s): 50e6e87

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +111 -3
README.md CHANGED
@@ -1,3 +1,111 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - education
9
+ - standards
10
+ - texas
11
+ - teks
12
+ - k12
13
+ - curriculum
14
+ pretty_name: Texas TEKS Standards
15
+ size_categories:
16
+ - 10K<n<100K
17
+ configs:
18
+ - config_name: default
19
+ data_files:
20
+ - split: ela
21
+ path: data/ela.json
22
+ - split: math
23
+ path: data/math.json
24
+ - split: science
25
+ path: data/science.json
26
+ - split: social_studies
27
+ path: data/social_studies.json
28
+ - split: fine_arts
29
+ path: data/fine_arts.json
30
+ - split: health
31
+ path: data/health.json
32
+ - split: pe
33
+ path: data/pe.json
34
+ - split: spanish_ela
35
+ path: data/spanish_ela.json
36
+ - split: technology
37
+ path: data/technology.json
38
+ - split: lote
39
+ path: data/lote.json
40
+ - split: cte
41
+ path: data/cte.json
42
+ - split: other
43
+ path: data/other.json
44
+ - split: pre_k
45
+ path: data/pre_k.json
46
+ ---
47
+
48
+ # Texas TEKS Standards
49
+
50
+ Complete Texas Essential Knowledge and Skills (TEKS) standards dataset sourced directly from the official Texas Education Agency (TEA) CASE API (v2.1.1).
51
+
52
+ ## Source
53
+
54
+ - **Provider:** Texas Education Agency
55
+ - **API:** [teks-api.texasgateway.org](https://teks-api.texasgateway.org) (CASE v1p0)
56
+ - **Version:** v2.1.1 (ELA, Science, Spanish ELA), v1.1.2 (all others)
57
+ - **Standard:** IMS Global CASE 1.0
58
+
59
+ ## Coverage
60
+
61
+ | Split | Subject | Records |
62
+ |---|---|---|
63
+ | ela | English Language Arts and Reading (ELA) | 2,001 |
64
+ | math | Mathematics | 1,144 |
65
+ | science | Science | 1,096 |
66
+ | social_studies | Social Studies | 1,898 |
67
+ | fine_arts | Fine Arts | 1,347 |
68
+ | health | Health Education | 847 |
69
+ | pe | Physical Education | 567 |
70
+ | spanish_ela | Spanish Language Arts and English as a Second Language | 1,144 |
71
+ | technology | Technology Applications | 342 |
72
+ | lote | Languages Other Than English | 306 |
73
+ | cte | Career and Technical Education | 21,674 |
74
+ | other | Other Texas Essential Knowledge and Skills | 136 |
75
+ | pre_k | Prekindergarten Guidelines | 187 |
76
+ | **Total** | | **32,689** |
77
+
78
+ ## Schema
79
+
80
+ Each record contains:
81
+
82
+ | Field | Type | Description |
83
+ |---|---|---|
84
+ | `id` | string (UUID) | Unique identifier |
85
+ | `code` | string | Official TEKS code (e.g. `110.2.b.1.A`) |
86
+ | `title` | string | Full standard text |
87
+ | `description` | string\|null | Additional description |
88
+ | `subject_area` | string | Subject (e.g. `ELA`, `Mathematics`) |
89
+ | `grade_level` | string | Grade (e.g. `K`, `1`, `8`, `English I`) |
90
+ | `domain` | string\|null | Domain/strand grouping |
91
+ | `cluster` | string\|null | Cluster grouping |
92
+ | `parent_id` | string\|null | UUID of parent standard (strand or knowledge/skills row) |
93
+ | `source` | string | Always `texas_teks` |
94
+ | `sort_order` | integer | Ordering within grade level |
95
+ | `teks_uuid` | string (UUID) | Original UUID from TEA CASE API |
96
+
97
+ ## Usage
98
+
99
+ ```python
100
+ from datasets import load_dataset
101
+
102
+ # Load a specific subject
103
+ ela = load_dataset("tessak22/texasteks", split="ela")
104
+
105
+ # Load all subjects
106
+ dataset = load_dataset("tessak22/texasteks")
107
+ ```
108
+
109
+ ## License
110
+
111
+ MIT — standards text is published by the Texas Education Agency as public domain curriculum standards.