Add small robot command dataset
Browse files
README.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
| 1 |
-
--
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# pepewtf-robot-commands
|
| 2 |
+
|
| 3 |
+
Simple toy dataset to train robots or LLMs to understand basic commands.
|
| 4 |
+
|
| 5 |
+
This dataset contains pairs of:
|
| 6 |
+
- command (label)
|
| 7 |
+
- text (natural language instruction)
|
| 8 |
+
|
| 9 |
+
Useful for NLP training, robotics experiments, and Humanoid Training Tasks.
|
data.csv
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
command,text
|
| 2 |
+
walk_forward,Robot please walk forward
|
| 3 |
+
turn_left,Turn left by 30 degrees
|
| 4 |
+
turn_right,Turn right by 45 degrees
|
| 5 |
+
stop,Stop immediately
|
| 6 |
+
pick_object,Pick up the object in front of you
|
| 7 |
+
greet,Say hello to the user
|
| 8 |
+
sit,Sit down slowly
|