Update README.md
Browse files
README.md
CHANGED
|
@@ -21,4 +21,92 @@ configs:
|
|
| 21 |
path: data/original-*
|
| 22 |
- split: augmented
|
| 23 |
path: data/augmented-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
path: data/original-*
|
| 22 |
- split: augmented
|
| 23 |
path: data/augmented-*
|
| 24 |
+
license: mit
|
| 25 |
+
task_categories:
|
| 26 |
+
- text-classification
|
| 27 |
+
language:
|
| 28 |
+
- en
|
| 29 |
+
pretty_name: 24-679 Text Dataset
|
| 30 |
---
|
| 31 |
+
|
| 32 |
+
# Dataset Card for `ccm/2025-24679-text-dataset`
|
| 33 |
+
|
| 34 |
+
<!-- Provide a quick summary of the dataset. -->
|
| 35 |
+
This dataset contains short haiku poems paired with categorical labels. It was created as a class exercise for text classification tasks, with both original and augmented examples provided to enable experimentation with supervised learning workflows.
|
| 36 |
+
|
| 37 |
+
## Dataset Details
|
| 38 |
+
|
| 39 |
+
### Dataset Description
|
| 40 |
+
|
| 41 |
+
The dataset consists of haiku (short, three-line poems) paired with numeric labels for classification purposes. It was designed to be a small, approachable dataset for teaching text processing, feature extraction, and classification in natural language processing.
|
| 42 |
+
|
| 43 |
+
- **Curated by:** Fall 2025 24-679 course at Carnegie Mellon University
|
| 44 |
+
- **Shared by [optional]:** Christopher McComb
|
| 45 |
+
- **License:** MIT
|
| 46 |
+
- **Language(s):** English
|
| 47 |
+
|
| 48 |
+
## Uses
|
| 49 |
+
|
| 50 |
+
### Direct Use
|
| 51 |
+
|
| 52 |
+
- Train text classification models (e.g., predicting label categories from haiku content).
|
| 53 |
+
- Practice preprocessing, tokenization, and feature extraction in NLP pipelines.
|
| 54 |
+
- Experiment with AutoML frameworks on text data.
|
| 55 |
+
|
| 56 |
+
### Out-of-Scope Use
|
| 57 |
+
|
| 58 |
+
- Generalization to real-world poetry classification tasks.
|
| 59 |
+
- Cultural, literary, or stylistic analysis beyond the small synthetic dataset.
|
| 60 |
+
- Any commercial or production-grade NLP system.
|
| 61 |
+
|
| 62 |
+
## Dataset Structure
|
| 63 |
+
|
| 64 |
+
The dataset has two splits:
|
| 65 |
+
|
| 66 |
+
- **original**: 72 examples of hand-written haiku with assigned labels.
|
| 67 |
+
- **augmented**: 288 examples generated by augmentation to expand data diversity and balance.
|
| 68 |
+
|
| 69 |
+
Each row includes:
|
| 70 |
+
|
| 71 |
+
- `haiku` *(string)*: the text of the haiku.
|
| 72 |
+
- `label` *(int)*: a numeric class label.
|
| 73 |
+
|
| 74 |
+
## Dataset Creation
|
| 75 |
+
|
| 76 |
+
### Curation Rationale
|
| 77 |
+
|
| 78 |
+
The dataset was created to give students hands-on practice with NLP pipelines in a controlled, lightweight context. Haiku were chosen because they are short, interpretable, and easy to encode consistently.
|
| 79 |
+
|
| 80 |
+
### Source Data
|
| 81 |
+
|
| 82 |
+
The haiku were either:
|
| 83 |
+
|
| 84 |
+
- Written or adapted by students in the course.
|
| 85 |
+
- Augmented using simple data generation and paraphrasing techniques.
|
| 86 |
+
|
| 87 |
+
#### Data Collection and Processing
|
| 88 |
+
|
| 89 |
+
- Original haiku were composed during in-class activities.
|
| 90 |
+
- Labels were assigned according to pre-defined categories.
|
| 91 |
+
- Augmented examples were generated with rule-based or model-based text augmentation methods.
|
| 92 |
+
|
| 93 |
+
#### Who are the source data producers?
|
| 94 |
+
|
| 95 |
+
- Original data: Students enrolled in the course.
|
| 96 |
+
- Augmented data: Produced automatically by instructors and teaching assistants.
|
| 97 |
+
|
| 98 |
+
## Bias, Risks, and Limitations
|
| 99 |
+
|
| 100 |
+
- **Small dataset:** Only 72 original haiku.
|
| 101 |
+
- **Synthetic augmentation:** Augmented haiku may be repetitive or less natural than real examples.
|
| 102 |
+
- **Cultural narrowness:** Haiku were written by a limited, English-speaking student cohort.
|
| 103 |
+
|
| 104 |
+
### Recommendations
|
| 105 |
+
|
| 106 |
+
- Use primarily for teaching and demonstration purposes.
|
| 107 |
+
- Do not draw literary or cultural conclusions from the dataset.
|
| 108 |
+
- Emphasize limitations and bias awareness in classroom discussions.
|
| 109 |
+
|
| 110 |
+
## Dataset Card Contact
|
| 111 |
+
|
| 112 |
+
Christopher McComb (Carnegie Mellon University) — [email protected]
|