File size: 815 Bytes
c3eba87 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
---
language:
- en
license: mit
task_categories:
- text-generation
pretty_name: Simple Instruction Basic
dataset_info:
features:
- name: instruction
dtype: string
- name: output
dtype: string
---
# Simple Instruction Basic Dataset
This dataset contains short and clear instruction–response pairs.
It is designed for basic instruction-following and text-generation experiments.
---
## Dataset Structure
Each row contains:
| Field | Type | Description |
|-------------|--------|---------------------------------|
| instruction | string | User instruction or command |
| output | string | Expected assistant response |
---
## Example
```json
{
"instruction": "Open the settings menu.",
"output": "The settings menu opens on the screen."
}
|