seto4 commited on
Commit
c3eba87
·
verified ·
1 Parent(s): 9c4bd39

Update README.md

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