Datasets:
Bancie commited on
Commit ยท
86cf58b
1
Parent(s): 1d5b2ab
Dataset card Updated
Browse files- README.md +85 -4
- dataset/reading.parquet +3 -0
README.md
CHANGED
|
@@ -1,10 +1,91 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
task_categories:
|
| 4 |
-
- text-classification
|
| 5 |
language:
|
| 6 |
-
- en
|
| 7 |
pretty_name: Reading Performance Dataset
|
| 8 |
size_categories:
|
| 9 |
-
- n<1K
|
| 10 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
task_categories:
|
| 4 |
+
- text-classification
|
| 5 |
language:
|
| 6 |
+
- en
|
| 7 |
pretty_name: Reading Performance Dataset
|
| 8 |
size_categories:
|
| 9 |
+
- n<1K
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
## ๐ Reading Performance Dataset
|
| 13 |
+
|
| 14 |
+
### ๐ Overview
|
| 15 |
+
|
| 16 |
+
The **Reading Performance Dataset** is a small-scale tabular dataset designed to analyze **reading behavior and performance characteristics across diverse individuals**.
|
| 17 |
+
It captures demographic attributes, reading habits, attention levels, and content difficulty to support educational data analysis and machine learning experiments.
|
| 18 |
+
|
| 19 |
+
This dataset is suitable for **educational analytics**, **behavioral analysis**, and **predictive modeling** related to reading performance.
|
| 20 |
+
|
| 21 |
+
### ๐ Dataset features
|
| 22 |
+
|
| 23 |
+
Each row represents a **single reading session**.
|
| 24 |
+
The dataset contains the following columns:
|
| 25 |
+
|
| 26 |
+
| Feature Name | Type | Description |
|
| 27 |
+
| ------------------------------- | ----------- | ----------------------------------------------------------------------------------------- |
|
| 28 |
+
| `AGE_CATEGORY` | Categorical | Age group of the reader (e.g., `young_adult`). |
|
| 29 |
+
| `GENDER` | Categorical | Gender of the participant (`male`, `female`, `other`). |
|
| 30 |
+
| `MAJOR` | Categorical | Academic major or role of the reader (e.g., `student`). |
|
| 31 |
+
| `MINUTES_READING` | Numeric | Total duration (in minutes) spent actively reading during the session. |
|
| 32 |
+
| `MINUTES_BREAK` | Numeric | Total break time (in minutes) taken during reading. |
|
| 33 |
+
| `FOCUS_LEVEL` | Ordinal | Level of focus during the reading session. Higher values indicate stronger concentration. |
|
| 34 |
+
| `PAGES` | Numeric | Number of pages read during the session. |
|
| 35 |
+
| `CONTENT_LEVEL_ENUM` | Ordinal | Difficulty level of the reading material. |
|
| 36 |
+
| `READING_GENRE` | Categorical | Genre of the reading material (e.g., academic, language, self-development). |
|
| 37 |
+
| `SOUND_VOLUME` | Ordinal | Environmental sound intensity during reading, ranging from silent to extremely loud. |
|
| 38 |
+
| `DEVICE` | Categorical | Device or medium used for reading (e.g., laptop, smartphone, book, tablet). |
|
| 39 |
+
| `LOCATION` | Categorical | Physical environment where the reading session took place (e.g., home, library, cafรฉ). |
|
| 40 |
+
| `WEATHER` | Categorical | Weather condition during the reading session (e.g., sunny, rainy, cloudy). |
|
| 41 |
+
| `MOOD` | Ordinal | Emotional state of the reader during the session, from very bad to very good. |
|
| 42 |
+
| `HUNGER` | Ordinal | Hunger or satiety level during reading. |
|
| 43 |
+
| `AROUSAL` | Ordinal | Cognitive arousal level, from very low to very high. |
|
| 44 |
+
| `MENTAL_IN_BREAK` | Ordinal | Mental state during breaks (e.g., chaotic, neutral, calm). |
|
| 45 |
+
| `MENTAL_FATIGUE` | Ordinal | Level of mental fatigue experienced during the session. |
|
| 46 |
+
| `INTERESTING_LEVEL` | Ordinal | Degree of interest in the reading material. |
|
| 47 |
+
| `COMPREHENSION_DEPTH` | Ordinal | Depth of understanding achieved during reading. |
|
| 48 |
+
| `LINKING_TO_PREVIOUS_KNOWLEDGE` | Ordinal | Extent to which new content was connected to prior knowledge. |
|
| 49 |
+
|
| 50 |
+
### ๐ฏ Tasks
|
| 51 |
+
|
| 52 |
+
This dataset can be used for:
|
| 53 |
+
|
| 54 |
+
- Text / behavior classification
|
| 55 |
+
- Educational performance analysis
|
| 56 |
+
- Student reading habit modeling
|
| 57 |
+
- Correlation analysis between focus, time, and output
|
| 58 |
+
- Regression or classification experiments
|
| 59 |
+
|
| 60 |
+
Although categorized under **text classification**, the dataset is also applicable to **tabular machine learning tasks**.
|
| 61 |
+
|
| 62 |
+
### ๐ Data Source & Generation
|
| 63 |
+
|
| 64 |
+
The dataset was **synthetically curated / collected for educational and analytical purposes**.
|
| 65 |
+
No personally identifiable information (PII) is included.
|
| 66 |
+
|
| 67 |
+
### โ๏ธ License
|
| 68 |
+
|
| 69 |
+
This dataset is released under the **MIT License**, allowing free use, modification, and distribution with attribution.
|
| 70 |
+
|
| 71 |
+
### ๐ Usage Example (Python)
|
| 72 |
+
|
| 73 |
+
```python
|
| 74 |
+
from datasets import load_dataset
|
| 75 |
+
|
| 76 |
+
dataset = load_dataset("Bancie/Reading-Dataset")
|
| 77 |
+
print(dataset)
|
| 78 |
+
```
|
| 79 |
+
|
| 80 |
+
### ๐ Citation
|
| 81 |
+
|
| 82 |
+
```bibtex
|
| 83 |
+
@dataset{bancie_reading_dataset_2025,
|
| 84 |
+
title = {Reading Dataset},
|
| 85 |
+
author = {Bancie},
|
| 86 |
+
year = {2025},
|
| 87 |
+
publisher = {Hugging Face},
|
| 88 |
+
howpublished = {\url{https://huggingface.co/datasets/Bancie/Reading-Dataset}},
|
| 89 |
+
license = {MIT}
|
| 90 |
+
}
|
| 91 |
+
```
|
dataset/reading.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f5eddabfad554631340e9c5dbdb78a760e857fb6341586bb95fa83befcabf786
|
| 3 |
+
size 14961
|