Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,85 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
task_categories:
|
4 |
+
- image-to-text
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
tags:
|
8 |
+
- math
|
9 |
+
- textbooks
|
10 |
+
- volume1
|
11 |
+
- volume2
|
12 |
+
size_categories:
|
13 |
+
- n<1K
|
14 |
+
---
|
15 |
+
# Mathematics-Class12-Vol.1.n.2
|
16 |
+
|
17 |
+
This dataset contains high-quality scanned pages from the **Tamil Nadu State Board (TNSB) Class 12 Mathematics Volume 1 & 2** textbook. It is intended for use in machine learning applications involving OCR (optical character recognition), educational AI tools, and digitization of state board curriculum materials.
|
18 |
+
|
19 |
+
## Dataset Overview
|
20 |
+
|
21 |
+
* **Source**: Tamil Nadu State Board Class 12 Mathematics – Volume 1 & 2
|
22 |
+
* **Modality**: Image
|
23 |
+
* **Format**: imagefolder
|
24 |
+
* **Split**: `train`
|
25 |
+
* **Total Images**: 576
|
26 |
+
* **File Size**:
|
27 |
+
|
28 |
+
* Downloaded: 243 MB
|
29 |
+
* Auto-converted Parquet: 264 MB
|
30 |
+
* **License**: [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)
|
31 |
+
* **Language**: English
|
32 |
+
* **Domain**: High School Mathematics
|
33 |
+
|
34 |
+
## Features
|
35 |
+
|
36 |
+
| Column | Description |
|
37 |
+
| ------ | ----------------------------- |
|
38 |
+
| image | Scanned textbook page (image) |
|
39 |
+
|
40 |
+
Each entry is a scanned page from the mathematics textbook, capturing rich layout, equations, and instructional content.
|
41 |
+
|
42 |
+
## Use Cases
|
43 |
+
|
44 |
+
* OCR training and benchmarking for educational material
|
45 |
+
* Digital curriculum transformation
|
46 |
+
* Math content extraction and question generation
|
47 |
+
* Document layout analysis
|
48 |
+
* Semantic search for textbook content
|
49 |
+
|
50 |
+
## How to Use
|
51 |
+
|
52 |
+
Load the dataset using the Hugging Face `datasets` library:
|
53 |
+
|
54 |
+
```python
|
55 |
+
from datasets import load_dataset
|
56 |
+
|
57 |
+
dataset = load_dataset("prithivMLmods/Mathematics-Class12-Vol.1.n.2")
|
58 |
+
```
|
59 |
+
|
60 |
+
Example output:
|
61 |
+
|
62 |
+
```python
|
63 |
+
{
|
64 |
+
"image": <PIL.Image.Image>
|
65 |
+
}
|
66 |
+
```
|
67 |
+
|
68 |
+
## Educational Topics Covered
|
69 |
+
|
70 |
+
* Functions and Graphs
|
71 |
+
* Limits and Continuity
|
72 |
+
* Differentiation
|
73 |
+
* Applications of Derivatives
|
74 |
+
* Integrals
|
75 |
+
* Definite Integrals
|
76 |
+
* Applications of Integration
|
77 |
+
* Differential Equations
|
78 |
+
|
79 |
+
> *Based on the official Tamil Nadu State Board Class 12 Mathematics Volume 1 textbook syllabus.*
|
80 |
+
|
81 |
+
## Citation
|
82 |
+
|
83 |
+
If you use this dataset, please credit the Tamil Nadu State Board (TNSB) for the source material.
|
84 |
+
|
85 |
+
> Tamil Nadu State Board, "Mathematics – Volume 1", Class 12 Curriculum
|