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 left thrice after walk left | I_TURN_LEFT 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.
run around left thrice after walk left | turn left, 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 |
walk around left and jump right | I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_RIGHT 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.
walk around left and jump right | turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn right, jump |
jump opposite left twice and look right twice | I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP 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.
jump opposite left twice and look right twice | turn left, turn left, jump, turn left, turn left, jump, turn right, look, turn right, look |
look around right twice and jump left 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_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_LEFT I_JUMP I_TURN_LEFT 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.
look around right twice and jump left twice | 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, jump, turn left, jump |
run opposite left and run right thrice | I_TURN_LEFT I_TURN_LEFT 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 opposite left and run right thrice | turn left, turn left, run, turn right, run, turn right, run, turn right, run |
run right twice after turn left | I_TURN_LEFT 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 left | turn left, turn right, run, turn right, run |
walk thrice after turn right | I_TURN_RIGHT 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 turn right | turn right, walk, walk, walk |
look opposite right twice and run around left | I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK 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.
look opposite right twice and run around left | turn right, turn right, look, turn right, turn right, look, turn left, run, turn left, run, turn left, run, turn left, run |
look opposite right and walk thrice | I_TURN_RIGHT 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.
look opposite right and walk thrice | turn right, turn right, look, walk, walk, walk |
walk opposite right thrice and turn opposite 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_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.
walk opposite right thrice and turn opposite left twice | turn right, turn right, walk, turn right, turn right, walk, turn right, turn right, walk, turn left, turn left, turn left, turn left |
look opposite right thrice 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_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 look opposite left thrice | turn left, turn left, look, turn left, turn left, look, turn left, turn left, look, turn right, turn right, look, turn right, turn right, look, turn right, turn right, look |
turn around left and walk right thrice | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT 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.
turn around left and walk right thrice | turn left, turn left, turn left, turn left, turn right, walk, turn right, walk, turn right, walk |
jump opposite left 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_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT 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 opposite left 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 left, turn left, jump, turn left, turn left, jump, turn left, turn left, jump |
walk right twice after jump opposite right thrice | I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_JUMP 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.
walk right twice after jump opposite right thrice | turn right, turn right, jump, turn right, turn right, jump, turn right, turn right, jump, turn right, walk, turn right, walk |
jump opposite left twice and look left thrice | I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP 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.
jump opposite left twice and look left thrice | turn left, turn left, jump, turn left, turn left, jump, turn left, look, turn left, look, turn left, look |
turn left twice and walk opposite left thrice | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_WALK I_TURN_LEFT I_TURN_LEFT I_WALK 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.
turn left twice and walk opposite left thrice | turn left, turn left, turn left, turn left, walk, turn left, turn left, walk, turn left, turn left, walk |
look after look opposite right | I_TURN_RIGHT I_TURN_RIGHT 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.
look after look opposite right | turn right, turn right, look, look |
jump opposite left twice and look thrice | I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP I_LOOK 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.
jump opposite left twice and look thrice | turn left, turn left, jump, turn left, turn left, jump, look, look, look |
walk opposite right twice after jump right thrice | I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP 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 opposite right twice after jump right thrice | turn right, jump, turn right, jump, turn right, jump, turn right, turn right, walk, turn right, turn right, walk |
walk left and 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_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 and walk around left | turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk |
walk thrice after look thrice | I_LOOK I_LOOK 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 thrice | look, look, look, walk, walk, walk |
look opposite right thrice after jump opposite right thrice | I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_JUMP 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 jump opposite right thrice | turn right, turn right, jump, turn right, turn right, jump, turn right, turn right, jump, turn right, turn right, look, turn right, turn right, look, turn right, turn right, look |
look around left and run right twice | I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK 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.
look around left and run right twice | turn left, look, turn left, look, turn left, look, turn left, look, turn right, run, turn right, run |
walk around right twice and walk opposite right | 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_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 around right twice and walk opposite right | 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, turn right, walk |
jump opposite left thrice and walk left | I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP 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.
jump opposite left thrice and walk left | turn left, turn left, jump, turn left, turn left, jump, turn left, turn left, jump, turn left, walk |
jump opposite left thrice and run left twice | I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP 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.
jump opposite left thrice and run left twice | turn left, turn left, jump, turn left, turn left, jump, turn left, turn left, jump, turn left, run, turn left, run |
walk after walk twice | 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 after walk twice | walk, walk, walk |
look right twice after turn opposite left twice | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT 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 turn opposite left twice | turn left, turn left, turn left, turn left, turn right, look, turn right, look |
run opposite left after jump opposite left thrice | I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP 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 after jump opposite left thrice | turn left, turn left, jump, turn left, turn left, jump, turn left, turn left, jump, turn left, turn left, run |
look twice and look around right twice | I_LOOK 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 twice and look around right twice | look, 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 |
jump around left after jump around left | I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT 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 around left after jump around left | turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump |
walk opposite left thrice after jump opposite right twice | I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_LEFT I_TURN_LEFT I_WALK I_TURN_LEFT I_TURN_LEFT I_WALK 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.
walk opposite left thrice after jump opposite right twice | turn right, turn right, jump, turn right, turn right, jump, turn left, turn left, walk, turn left, turn left, walk, turn left, turn left, walk |
run opposite right after run right | 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 right | turn right, run, turn right, turn right, run |
turn around left and turn right | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT 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 left and turn right | turn left, turn left, turn left, turn left, turn right |
run twice and look around right twice | I_RUN I_RUN 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.
run twice and look around right twice | run, run, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look |
look and look opposite 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 and look opposite left | look, turn left, turn left, look |
run opposite left thrice and turn left thrice | I_TURN_LEFT 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_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 opposite left thrice and turn left thrice | turn left, turn left, run, turn left, turn left, run, turn left, turn left, run, turn left, turn left, turn left |
run left twice and look around right thrice | I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN 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_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.
run left twice and look around right thrice | turn left, run, turn left, run, 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 right, look, turn right, look, turn right, look, turn right, look |
walk opposite right twice and walk left | I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT 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 opposite right twice and walk left | turn right, turn right, walk, turn right, turn right, walk, turn left, walk |
look twice and look right twice | I_LOOK 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 twice and look right twice | look, look, turn right, look, turn right, look |
jump left twice and turn right | I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP 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.
jump left twice and turn right | turn left, jump, turn left, jump, turn right |
look opposite right twice after 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 | run, turn right, turn right, look, turn right, turn right, look |
jump around left twice after run twice | I_RUN I_RUN I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT 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 around left twice after run twice | run, run, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump |
walk opposite left thrice and look around right twice | 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_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 opposite left thrice and look around right twice | turn left, turn left, walk, turn left, turn left, walk, turn left, turn left, 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 |
turn opposite right 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 | 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 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 |
run left thrice and turn opposite left thrice | I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN 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.
run left thrice and turn opposite left thrice | turn left, run, turn left, run, turn left, run, turn left, turn left, turn left, turn left, turn left, turn left |
run right twice after run 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 | 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 run right thrice | turn right, run, turn right, run, turn right, run, turn right, run, turn right, run |
jump after walk around right | I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK 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 after walk around right | turn right, walk, turn right, walk, turn right, walk, turn right, walk, jump |
walk opposite right twice after run opposite left thrice | I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_RUN 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 opposite right twice after run opposite left thrice | turn left, turn left, run, turn left, turn left, run, turn left, turn left, run, turn right, turn right, walk, turn right, turn right, walk |
jump around left after jump thrice | I_JUMP I_JUMP I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT 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 around left after jump thrice | jump, jump, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump |
jump around left after jump left thrice | I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT 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 around left after jump left thrice | turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump |
look opposite left after look left twice | I_TURN_LEFT I_LOOK 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 after look left twice | turn left, look, turn left, look, turn left, turn left, look |
turn right thrice after jump opposite left thrice | I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP 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 jump opposite left thrice | turn left, turn left, jump, turn left, turn left, jump, turn left, turn left, jump, turn right, turn right, turn right |
run opposite left and look opposite left thrice | I_TURN_LEFT I_TURN_LEFT I_RUN 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.
run opposite left and look opposite left thrice | turn left, turn left, run, turn left, turn left, look, turn left, turn left, look, turn left, turn left, look |
look left and walk right thrice | I_TURN_LEFT I_LOOK 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 and walk right thrice | turn left, look, turn right, walk, turn right, walk, turn right, walk |
walk right thrice after run left | I_TURN_LEFT I_RUN 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.
walk right thrice after run left | turn left, run, turn right, walk, turn right, walk, turn right, walk |
look around right thrice and walk 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_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK 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 thrice and walk 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 right, look, turn right, look, turn right, look, turn right, look, turn left, walk |
walk opposite right after walk left | I_TURN_LEFT 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 opposite right after walk left | turn left, walk, turn right, turn right, walk |
look opposite right thrice and turn opposite left | 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_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 opposite right thrice and turn opposite left | turn right, turn right, look, turn right, turn right, look, turn right, turn right, look, turn left, turn left |
jump thrice and look twice | I_JUMP I_JUMP I_JUMP 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.
jump thrice and look twice | jump, jump, jump, look, look |
jump left thrice after run left twice | I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT 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 left thrice after run left twice | turn left, run, turn left, run, turn left, jump, turn left, jump, turn left, jump |
look around right after turn right twice | I_TURN_RIGHT I_TURN_RIGHT 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 after turn right twice | turn right, turn right, turn right, look, turn right, look, turn right, look, turn right, look |
turn around left twice and jump 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 I_JUMP I_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.
turn around left twice and jump thrice | turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, jump, jump, jump |
walk thrice after jump | I_JUMP 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 jump | jump, walk, walk, walk |
turn around left thrice after look thrice | I_LOOK I_LOOK 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 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 thrice after look thrice | look, look, look, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left |
look around left 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_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 look around right | turn right, look, turn right, look, turn right, look, turn right, look, turn left, look, turn left, look, turn left, look, turn left, look |
turn opposite right twice after look opposite left | I_TURN_LEFT 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.
turn opposite right twice after look opposite left | turn left, turn left, look, turn right, turn right, turn right, turn right |
jump opposite right thrice and jump thrice | I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_JUMP I_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 opposite right thrice and jump thrice | turn right, turn right, jump, turn right, turn right, jump, turn right, turn right, jump, jump, jump, jump |
look around left thrice and look around right | 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_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 left thrice and look around right | 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 right, look, turn right, look, turn right, look, turn right, look |
look opposite left twice and jump opposite right twice | I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT 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.
look opposite left twice and jump opposite right twice | turn left, turn left, look, turn left, turn left, look, turn right, turn right, jump, turn right, turn right, jump |
jump and look around right twice | I_JUMP 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.
jump and look around right twice | jump, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look |
jump opposite left after jump left | I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT 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 opposite left after jump left | turn left, jump, turn left, turn left, jump |
run opposite right thrice after look | I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_RIGHT 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 thrice after look | look, turn right, turn right, run, turn right, turn right, run, turn right, turn right, run |
jump around left after run opposite right twice | I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT 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 around left after run opposite right twice | turn right, turn right, run, turn right, turn right, run, turn left, jump, turn left, jump, turn left, jump, turn left, jump |
run opposite right thrice after walk opposite right | I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_RIGHT 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 thrice after walk opposite right | turn right, turn right, walk, turn right, turn right, run, turn right, turn right, run, turn right, turn right, run |
walk right thrice after walk right | 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.
walk right thrice after walk right | turn right, walk, turn right, walk, turn right, walk, turn right, walk |
look opposite left twice and run around left twice | I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK 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.
look opposite left twice and run around left twice | turn left, turn left, look, turn left, turn left, look, 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 opposite right and look opposite right twice | I_TURN_RIGHT I_TURN_RIGHT 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 opposite right and look opposite right twice | turn right, turn right, turn right, turn right, look, turn right, turn right, look |
walk left twice after jump twice | I_JUMP I_JUMP 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 jump twice | jump, jump, turn left, walk, turn left, walk |
jump and walk around right thrice | I_JUMP 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 | 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 and walk around right thrice | jump, 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 right thrice after jump opposite left | I_TURN_LEFT I_TURN_LEFT I_JUMP 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.
walk right thrice after jump opposite left | turn left, turn left, jump, turn right, walk, turn right, walk, turn right, walk |
turn left twice and run opposite left | I_TURN_LEFT I_TURN_LEFT 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.
turn left twice and run opposite left | turn left, turn left, turn left, turn left, run |
look opposite right twice and turn 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_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 twice and turn opposite right thrice | turn right, turn right, look, turn right, turn right, look, turn right, turn right, turn right, turn right, turn right, turn right |
turn opposite right after run left twice | I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN 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 after run left twice | turn left, run, turn left, run, turn right, turn right |
look right after jump | I_JUMP 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 after jump | jump, turn right, look |
look thrice and run opposite right | I_LOOK I_LOOK 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.
look thrice and run opposite right | look, look, look, turn right, turn right, run |
walk opposite right twice and jump around left thrice | I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT 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.
walk opposite right twice and jump around left thrice | turn right, turn right, walk, turn right, turn right, walk, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump |
look left and walk thrice | I_TURN_LEFT 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.
look left and walk thrice | turn left, look, walk, walk, walk |
look around left thrice 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_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 ... | 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 after look opposite right thrice | turn right, turn right, look, turn right, turn right, look, turn right, turn right, 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, look |
run opposite right thrice after jump left thrice | I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_RIGHT 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 thrice after jump left thrice | turn left, jump, turn left, jump, turn left, jump, turn right, turn right, run, turn right, turn right, run, turn right, turn right, run |
walk right thrice and run opposite left thrice | I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK 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.
walk right thrice and run opposite left thrice | turn right, walk, turn right, walk, turn right, walk, turn left, turn left, run, turn left, turn left, run, turn left, turn left, run |
walk 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_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 after walk around left | turn left, walk, turn left, walk, turn left, walk, turn left, walk, walk |
jump right twice 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_JUMP I_TURN_RIGHT 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 right twice after run around left | turn left, run, turn left, run, turn left, run, turn left, run, turn right, jump, turn right, jump |
look left thrice and look right | I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT 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 left thrice and look right | turn left, look, turn left, look, turn left, look, turn right, look |
jump opposite right thrice after turn left twice | I_TURN_LEFT I_TURN_LEFT I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT 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 opposite right thrice after turn left twice | turn left, turn left, turn right, turn right, jump, turn right, turn right, jump, turn right, turn right, jump |
walk around right after jump opposite left | I_TURN_LEFT I_TURN_LEFT I_JUMP 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.
walk around right after jump opposite left | turn left, turn left, jump, turn right, walk, turn right, walk, turn right, walk, turn right, walk |
jump right after look opposite left twice | I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_RIGHT 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 right after look opposite left twice | turn left, turn left, look, turn left, turn left, look, turn right, jump |
jump twice and walk right twice | I_JUMP I_JUMP 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.
jump twice and walk right twice | jump, jump, turn right, walk, turn right, walk |
run left after walk thrice | I_WALK I_WALK 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 thrice | walk, walk, walk, turn left, run |
turn right thrice and walk right thrice | I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT 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.
turn right thrice and walk right thrice | turn right, turn right, turn right, turn right, walk, turn right, walk, turn right, walk |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.