| --- |
| 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." |
| } |
| |