commands stringlengths 3 59 | actions stringlengths 5 479 | template_name stringclasses 11
values | template stringclasses 11
values | rendered_input stringlengths 52 534 | rendered_output stringlengths 3 430 |
|---|---|---|---|---|---|
run around right thrice after walk left | I_TURN_LEFT I_WALK I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run around right thrice after walk left | turn left, walk, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run |
look opposite right thrice after run around left twice | I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look opposite right thrice after run around left twice | turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn right, turn right, look, turn right, turn right, look, turn right, turn right, look |
jump | I_JUMP | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
jump | jump |
turn opposite right thrice and turn right twice | I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn opposite right thrice and turn right twice | turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right |
look around right twice and walk opposite left | I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_LEFT I_TURN_LEFT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look around right twice and walk opposite left | turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn left, turn left, walk |
jump | I_JUMP | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
jump | jump |
look left twice and look opposite right | I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look left twice and look opposite right | turn left, look, turn left, look, turn right, turn right, look |
look left twice and walk around right | I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look left twice and walk around right | turn left, look, turn left, look, turn right, walk, turn right, walk, turn right, walk, turn right, walk |
jump | I_JUMP | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
jump | jump |
walk left thrice | I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk left thrice | turn left, walk, turn left, walk, turn left, walk |
walk opposite right after turn opposite left | I_TURN_LEFT I_TURN_LEFT I_TURN_RIGHT I_TURN_RIGHT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk opposite right after turn opposite left | turn left, turn left, turn right, turn right, walk |
look right twice and run opposite left | I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_LEFT I_TURN_LEFT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look right twice and run opposite left | turn right, look, turn right, look, turn left, turn left, run |
look right twice after look opposite left thrice | I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look right twice after look opposite left thrice | turn left, turn left, look, turn left, turn left, look, turn left, turn left, look, turn right, look, turn right, look |
turn opposite left twice after walk thrice | I_WALK I_WALK I_WALK I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn opposite left twice after walk thrice | walk, walk, walk, turn left, turn left, turn left, turn left |
run opposite right after run around right | I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_TURN_RIGHT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run opposite right after run around right | turn right, run, turn right, run, turn right, run, turn right, run, turn right, turn right, run |
run left and turn opposite left | I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run left and turn opposite left | turn left, run, turn left, turn left |
walk right and walk left | I_TURN_RIGHT I_WALK I_TURN_LEFT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk right and walk left | turn right, walk, turn left, walk |
look opposite left after run left | I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look opposite left after run left | turn left, run, turn left, turn left, look |
look opposite right after run around left | I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_RIGHT I_TURN_RIGHT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look opposite right after run around left | turn left, run, turn left, run, turn left, run, turn left, run, turn right, turn right, look |
run left after walk right twice | I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_LEFT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run left after walk right twice | turn right, walk, turn right, walk, turn left, run |
walk and walk around left | I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk and walk around left | walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk |
look around left thrice and run opposite left twice | I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look around left thrice and run opposite left twice | turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, turn left, run, turn left, turn left, run |
turn opposite right and walk left | I_TURN_RIGHT I_TURN_RIGHT I_TURN_LEFT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn opposite right and walk left | turn right, turn right, turn left, walk |
look opposite right twice after run twice | I_RUN I_RUN I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look opposite right twice after run twice | run, run, turn right, turn right, look, turn right, turn right, look |
turn around left after run right | I_TURN_RIGHT I_RUN I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn around left after run right | turn right, run, turn left, turn left, turn left, turn left |
look right and turn left thrice | I_TURN_RIGHT I_LOOK I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look right and turn left thrice | turn right, look, turn left, turn left, turn left |
run twice and turn right thrice | I_RUN I_RUN I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run twice and turn right thrice | run, run, turn right, turn right, turn right |
run around right thrice and turn around left | I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run around right thrice and turn around left | turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn left, turn left, turn left, turn left |
walk left twice after run thrice | I_RUN I_RUN I_RUN I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk left twice after run thrice | run, run, run, turn left, walk, turn left, walk |
run left and walk around left thrice | I_TURN_LEFT I_RUN I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run left and walk around left thrice | turn left, run, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk |
run right after walk around right thrice | I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run right after walk around right thrice | turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, run |
turn left twice after turn opposite left thrice | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn left twice after turn opposite left thrice | turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left |
run opposite right after walk left twice | I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run opposite right after walk left twice | turn left, walk, turn left, walk, turn right, turn right, run |
look left twice and run left | I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look left twice and run left | turn left, look, turn left, look, turn left, run |
run left thrice and run around right twice | I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run left thrice and run around right twice | turn left, run, turn left, run, turn left, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run |
turn around left twice after look opposite left twice | I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn around left twice after look opposite left twice | turn left, turn left, look, turn left, turn left, look, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left |
run right twice and run around left thrice | I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run right twice and run around left thrice | turn right, run, turn right, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run |
jump | I_JUMP | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
jump | jump |
look around left twice after look opposite left thrice | I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look around left twice after look opposite left thrice | turn left, turn left, look, turn left, turn left, look, turn left, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look |
run left thrice after turn around left twice | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run left thrice after turn around left twice | turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, run, turn left, run, turn left, run |
turn left twice after run around right thrice | I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_LEFT I_TURN_LEFT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn left twice after run around right thrice | turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn left, turn left |
look right thrice after walk opposite right thrice | I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look right thrice after walk opposite right thrice | turn right, turn right, walk, turn right, turn right, walk, turn right, turn right, walk, turn right, look, turn right, look, turn right, look |
turn around left twice and look around left | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn around left twice and look around left | turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, look, turn left, look, turn left, look, turn left, look |
look around left twice after look opposite left twice | I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look around left twice after look opposite left twice | turn left, turn left, look, turn left, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look |
look around right twice after look left twice | I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look around right twice after look left twice | turn left, look, turn left, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look |
walk opposite right thrice after run around right thrice | I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT ... | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk opposite right thrice after run around right thrice | turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, turn right, walk, turn right, turn right, walk, turn right, turn right, walk |
look right twice and turn around right twice | I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look right twice and turn around right twice | turn right, look, turn right, look, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right |
jump | I_JUMP | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
jump | jump |
look around left after turn around right thrice | I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look around left after turn around right thrice | turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn left, look, turn left, look, turn left, look, turn left, look |
run around right after run around right twice | I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run around right after run around right twice | turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run |
turn opposite left and walk right | I_TURN_LEFT I_TURN_LEFT I_TURN_RIGHT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn opposite left and walk right | turn left, turn left, turn right, walk |
run around right and walk around right | I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run around right and walk around right | turn right, run, turn right, run, turn right, run, turn right, run, turn right, walk, turn right, walk, turn right, walk, turn right, walk |
turn opposite right and turn left thrice | I_TURN_RIGHT I_TURN_RIGHT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn opposite right and turn left thrice | turn right, turn right, turn left, turn left, turn left |
turn around left after run left | I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn around left after run left | turn left, run, turn left, turn left, turn left, turn left |
look around right and walk around left twice | I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look around right and walk around left twice | turn right, look, turn right, look, turn right, look, turn right, look, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk |
run right twice after turn opposite right | I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run right twice after turn opposite right | turn right, turn right, turn right, run, turn right, run |
walk thrice and look around right twice | I_WALK I_WALK I_WALK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk thrice and look around right twice | walk, walk, walk, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look |
run twice and turn opposite left | I_RUN I_RUN I_TURN_LEFT I_TURN_LEFT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run twice and turn opposite left | run, run, turn left, turn left |
run opposite left thrice after run twice | I_RUN I_RUN I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run opposite left thrice after run twice | run, run, turn left, turn left, run, turn left, turn left, run, turn left, turn left, run |
look right thrice and look opposite right thrice | I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look right thrice and look opposite right thrice | turn right, look, turn right, look, turn right, look, turn right, turn right, look, turn right, turn right, look, turn right, turn right, look |
run left and walk around right | I_TURN_LEFT I_RUN I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run left and walk around right | turn left, run, turn right, walk, turn right, walk, turn right, walk, turn right, walk |
walk around left twice after walk opposite right | I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk around left twice after walk opposite right | turn right, turn right, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk |
jump | I_JUMP | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
jump | jump |
walk right thrice and look opposite right thrice | I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk right thrice and look opposite right thrice | turn right, walk, turn right, walk, turn right, walk, turn right, turn right, look, turn right, turn right, look, turn right, turn right, look |
run right after walk around left | I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_RIGHT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run right after walk around left | turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn right, run |
turn right thrice and look opposite right thrice | I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn right thrice and look opposite right thrice | turn right, turn right, turn right, turn right, turn right, look, turn right, turn right, look, turn right, turn right, look |
walk right and turn around right | I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk right and turn around right | turn right, walk, turn right, turn right, turn right, turn right |
look opposite right thrice and turn around right twice | I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look opposite right thrice and turn around right twice | turn right, turn right, look, turn right, turn right, look, turn right, turn right, look, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right |
walk and walk opposite right thrice | I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk and walk opposite right thrice | walk, turn right, turn right, walk, turn right, turn right, walk, turn right, turn right, walk |
walk left twice and turn around right | I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk left twice and turn around right | turn left, walk, turn left, walk, turn right, turn right, turn right, turn right |
turn right after look around right | I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn right after look around right | turn right, look, turn right, look, turn right, look, turn right, look, turn right |
jump | I_JUMP | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
jump | jump |
turn around left twice and look right | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_RIGHT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn around left twice and look right | turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn right, look |
walk around right thrice after walk opposite left thrice | I_TURN_LEFT I_TURN_LEFT I_WALK I_TURN_LEFT I_TURN_LEFT I_WALK I_TURN_LEFT I_TURN_LEFT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_... | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk around right thrice after walk opposite left thrice | turn left, turn left, walk, turn left, turn left, walk, turn left, turn left, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk |
walk around right and run around left thrice | I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk around right and run around left thrice | turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run |
look around right and walk right twice | I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look around right and walk right twice | turn right, look, turn right, look, turn right, look, turn right, look, turn right, walk, turn right, walk |
look left twice and turn around right | I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look left twice and turn around right | turn left, look, turn left, look, turn right, turn right, turn right, turn right |
look right thrice after look twice | I_LOOK I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look right thrice after look twice | look, look, turn right, look, turn right, look, turn right, look |
look around right twice after walk right thrice | I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look around right twice after walk right thrice | turn right, walk, turn right, walk, turn right, walk, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look |
walk around left twice after look left | I_TURN_LEFT I_LOOK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk around left twice after look left | turn left, look, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk |
walk around left twice after turn right | I_TURN_RIGHT I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk around left twice after turn right | turn right, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk |
look around left after walk | I_WALK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look around left after walk | walk, turn left, look, turn left, look, turn left, look, turn left, look |
look left thrice and walk | I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look left thrice and walk | turn left, look, turn left, look, turn left, look, walk |
turn right thrice and look left twice | I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn right thrice and look left twice | turn right, turn right, turn right, turn left, look, turn left, look |
jump | I_JUMP | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
jump | jump |
look opposite left thrice after turn around left twice | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look opposite left thrice after turn around left twice | turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, look, turn left, turn left, look, turn left, turn left, look |
run opposite right after look opposite right thrice | I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run opposite right after look opposite right thrice | turn right, turn right, look, turn right, turn right, look, turn right, turn right, look, turn right, turn right, run |
walk right thrice and turn left twice | I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_LEFT I_TURN_LEFT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk right thrice and turn left twice | turn right, walk, turn right, walk, turn right, walk, turn left, turn left |
turn around right thrice and run around left thrice | I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_... | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn around right thrice and run around left thrice | turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, ... |
turn right thrice after run opposite right | I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn right thrice after run opposite right | turn right, turn right, run, turn right, turn right, turn right |
turn around right twice after walk left twice | I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn around right twice after walk left twice | turn left, walk, turn left, walk, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right |
run opposite left thrice after run left twice | I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run opposite left thrice after run left twice | turn left, run, turn left, run, turn left, turn left, run, turn left, turn left, run, turn left, turn left, run |
jump | I_JUMP | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
jump | jump |
run left twice after turn opposite left thrice | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run left twice after turn opposite left thrice | turn left, turn left, turn left, turn left, turn left, turn left, turn left, run, turn left, run |
jump | I_JUMP | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
jump | jump |
walk thrice after look right thrice | I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_WALK I_WALK I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk thrice after look right thrice | turn right, look, turn right, look, turn right, look, walk, walk, walk |
turn right thrice and walk left twice | I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn right thrice and walk left twice | turn right, turn right, turn right, turn left, walk, turn left, walk |
walk thrice and walk | I_WALK I_WALK I_WALK I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk thrice and walk | walk, walk, walk, walk |
walk opposite right thrice and walk left twice | I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk opposite right thrice and walk left twice | turn right, turn right, walk, turn right, turn right, walk, turn right, turn right, walk, turn left, walk, turn left, walk |
turn opposite left thrice and look twice | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_LOOK I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn opposite left thrice and look twice | turn left, turn left, turn left, turn left, turn left, turn left, look, look |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.