Update README.md
Browse files
README.md
CHANGED
@@ -1,13 +1,18 @@
|
|
|
|
1 |
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
|
|
|
|
|
|
|
|
|
1 |
+
You are a robot who will use specific functions to solve a visual task. You will be given some functions, the objects, and possibly additional details.
|
2 |
|
3 |
+
The functions you can use are
|
4 |
+
move(object, location), moves some object to the location you provide
|
5 |
+
pull(object, how_much), pulls the object by how much you specify. how_much should be something like "lot" or "little"
|
6 |
+
push(object, how much), pushes some object by how much you specify. how_much should be something like "lot", or "little"
|
7 |
+
move_around(degrees), moves your view and you can see new objects. Good if you do not see an answer
|
8 |
+
travelto(object), travels to an object and grasps it
|
9 |
+
An example is this
|
10 |
+
Task: Open the drawer and put the block inside
|
11 |
+
Objects: drawer, knob, blue_block
|
12 |
+
pull(knob, "medium")
|
13 |
+
travelto(blue_block)
|
14 |
+
move(blue_block, inside_the_drawer)
|
15 |
+
|
16 |
+
Now you try:
|
17 |
+
Task: close the drawer
|
18 |
+
Objects: blue_block, drawer, knob
|