Datasets:
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- synthetic
|
| 7 |
+
- english
|
| 8 |
+
---
|
| 9 |
+
# Synthetic English Language Acquisition Dataset (3GB)
|
| 10 |
+
|
| 11 |
+
A structured, 3GB synthetic CSV dataset generated to assist in pretraining or fine-tuning Language Models (LLMs) on core English syntax, vocabulary, narrative structures, and explicit grammar rules.
|
| 12 |
+
|
| 13 |
+
## Dataset Structure
|
| 14 |
+
|
| 15 |
+
The dataset contains four primary columns:
|
| 16 |
+
|
| 17 |
+
| Column Name | Data Type | Description |
|
| 18 |
+
| :--- | :--- | :--- |
|
| 19 |
+
| `data_type` | `string` | Categorises the entry (`sentence`, `narrative_chunk`, or `grammar_instruction`). |
|
| 20 |
+
| `text_content` | `string` | The target sentence, paragraph, or example usage. |
|
| 21 |
+
| `grammar_rule` | `string` | The named linguistic/grammatical rule (where applicable, otherwise `N/A`). |
|
| 22 |
+
| `explanation` | `string` | Detailed explanation of the underlying grammar principle (otherwise `N/A`). |
|
| 23 |
+
|
| 24 |
+
---
|
| 25 |
+
|
| 26 |
+
## Data Composition
|
| 27 |
+
|
| 28 |
+
The records are distributed across three distinct record types:
|
| 29 |
+
|
| 30 |
+
1. **Sentences (60%):** Structured single sentences testing varied syntactic patterns (Subject-Verb-Object, Adverbial modifications, and Complex Connectives).
|
| 31 |
+
2. **Narrative Chunks (30%):** Multi-sentence paragraphs designed to demonstrate contextual flow and discourse continuity.
|
| 32 |
+
3. **Grammar Instructions (10%):** Explicit instruction pairs providing rules, examples, and detailed explanations (e.g., Subject-Verb Agreement, Article Usage).
|
| 33 |
+
|
| 34 |
+
---
|
| 35 |
+
|
| 36 |
+
## Usage
|
| 37 |
+
|
| 38 |
+
### Loading with Hugging Face `datasets`
|
| 39 |
+
|
| 40 |
+
```python
|
| 41 |
+
from datasets import load_dataset
|
| 42 |
+
|
| 43 |
+
# Load the entire dataset
|
| 44 |
+
dataset = load_dataset("{REPO_ID}")
|
| 45 |
+
|
| 46 |
+
# Inspect a sample
|
| 47 |
+
print(dataset['train'][0])
|