Add usage in README
Browse files
README.md
CHANGED
@@ -22,6 +22,16 @@ understanding of Thai Buddhist concepts and teachings.
|
|
22 |
2. **Data Structuring**: All questions were compiled and structured into a standardized CSV format
|
23 |
3. **Manual Verification**: The dataset underwent manual review and correction to ensure accuracy of text, choices, and correct answers
|
24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
## About Dhamma Practice Exam
|
26 |
|
27 |
The Nak Tham examination is a system for evaluating Buddhist knowledge levels among ordained monks
|
|
|
22 |
2. **Data Structuring**: All questions were compiled and structured into a standardized CSV format
|
23 |
3. **Manual Verification**: The dataset underwent manual review and correction to ensure accuracy of text, choices, and correct answers
|
24 |
|
25 |
+
## Usage
|
26 |
+
|
27 |
+
```py
|
28 |
+
from datasets import load_dataset
|
29 |
+
|
30 |
+
exam_dataset = load_dataset("biodatlab/thai_buddhist_studies_exam") # no splitting
|
31 |
+
exam_dataset["train"][0]
|
32 |
+
```
|
33 |
+
|
34 |
+
|
35 |
## About Dhamma Practice Exam
|
36 |
|
37 |
The Nak Tham examination is a system for evaluating Buddhist knowledge levels among ordained monks
|