tessak22 commited on
Commit
10ec8f5
·
verified ·
1 Parent(s): fd715ea

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -14
README.md CHANGED
@@ -1,9 +1,11 @@
1
  ---
2
  license: mit
3
  task_categories:
4
- - text-classification
 
5
  language:
6
  - en
 
7
  tags:
8
  - education
9
  - standards
@@ -11,6 +13,10 @@ tags:
11
  - teks
12
  - k12
13
  - curriculum
 
 
 
 
14
  pretty_name: Texas TEKS Standards
15
  size_categories:
16
  - 10K<n<100K
@@ -47,7 +53,9 @@ configs:
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
 
@@ -81,21 +89,22 @@ 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
 
@@ -104,8 +113,34 @@ 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.
 
1
  ---
2
  license: mit
3
  task_categories:
4
+ - feature-extraction
5
+ - text-retrieval
6
  language:
7
  - en
8
+ - es
9
  tags:
10
  - education
11
  - standards
 
13
  - teks
14
  - k12
15
  - curriculum
16
+ - edtech
17
+ - homeschool
18
+ - standards-alignment
19
+ - tea
20
  pretty_name: Texas TEKS Standards
21
  size_categories:
22
  - 10K<n<100K
 
53
 
54
  # Texas TEKS Standards
55
 
56
+ Complete Texas Essential Knowledge and Skills (TEKS) standards dataset sourced directly from the official Texas Education Agency (TEA) CASE API. Covers all subjects and grade levels from Pre-K through high school, including CTE pathways.
57
+
58
+ Intended for use in curriculum planning tools, standards-alignment systems, AI tutoring applications, and educational search/retrieval pipelines.
59
 
60
  ## Source
61
 
 
89
 
90
  | Field | Type | Description |
91
  |---|---|---|
92
+ | `id` | string (UUID) | Unique identifier for this record |
93
  | `code` | string | Official TEKS code (e.g. `110.2.b.1.A`) |
94
+ | `title` | string | Full standard text as published by TEA |
95
+ | `description` | string\|null | Additional descriptive text where provided by the source API |
96
+ | `subject_area` | string | Subject category (e.g. `ELA`, `Mathematics`) |
97
+ | `grade_level` | string | Grade or course level (e.g. `K`, `1`, `8`, `English I`) |
98
+ | `domain` | string\|null | Domain or strand grouping (not populated in current version) |
99
+ | `cluster` | string\|null | Cluster grouping (not populated in current version) |
100
+ | `parent_id` | string\|null | UUID of parent standard (strand or knowledge/skills row); null for top-level entries |
101
  | `source` | string | Always `texas_teks` |
102
+ | `sort_order` | integer | Ordering position within a grade level |
103
+ | `teks_uuid` | string (UUID) | Original UUID from the TEA CASE API |
104
 
105
+ > **Note:** `description`, `domain`, and `cluster` fields are present in the schema for forward compatibility but are null in most records in the current version. `parent_id` enables hierarchical traversal of the standard tree.
106
 
107
+ ## Usage
108
  ```python
109
  from datasets import load_dataset
110
 
 
113
 
114
  # Load all subjects
115
  dataset = load_dataset("tessak22/texasteks")
116
+
117
+ # Filter by grade level
118
+ grade_3_math = load_dataset("tessak22/texasteks", split="math").filter(
119
+ lambda x: x["grade_level"] == "3"
120
+ )
121
+
122
+ # Search standards by keyword
123
+ science = load_dataset("tessak22/texasteks", split="science")
124
+ energy_standards = science.filter(
125
+ lambda x: "energy" in x["title"].lower()
126
+ )
127
  ```
128
 
129
+ ## Intended Use
130
+
131
+ - **Curriculum planning tools** — map learning activities to official state standards
132
+ - **Standards-alignment systems** — tag content, assignments, or assessments to TEKS codes
133
+ - **AI tutoring / LLM applications** — provide structured standards context for retrieval-augmented generation (RAG)
134
+ - **Homeschool management apps** — enable standards-based tracking for Texas homeschool families
135
+ - **Ed-tech search and discovery** — power faceted search over Texas K–12 learning objectives
136
+
137
+ ## Known Limitations
138
+
139
+ - TEKS standards are updated periodically by TEA. This dataset reflects the API state as of the last update date; it may not reflect recent amendments.
140
+ - `domain` and `cluster` fields are not populated in the current version.
141
+ - CTE contains 21,674 records across numerous pathways and courses—users working with CTE data should expect high volume and granularity.
142
+ - Grade level values are strings and may be numeric (`"3"`), named (`"English I"`), or range-based depending on subject area. Normalize as needed for your use case.
143
+
144
  ## License
145
 
146
+ MIT — TEKS standards text is published by the Texas Education Agency as public domain curriculum content. See [TEA copyright information](https://www.texasgateway.org/terms-conditions) for details.