commands stringlengths 3 59 | actions stringlengths 5 259 | template_name stringclasses 11
values | template stringclasses 11
values | rendered_input stringlengths 52 342 | rendered_output stringlengths 3 238 |
|---|---|---|---|---|---|
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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | look |
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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | turn right |
run | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | run |
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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | turn left |
jump after 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 turn left | turn left, jump |
turn left after walk | I_WALK 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 after walk | walk, turn left |
walk 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | turn right, walk |
walk after run | I_RUN 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 run | run, walk |
turn left twice | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | turn left, turn left |
turn opposite 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | turn left, turn left |
walk after 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 turn left | turn left, walk |
walk and turn left | I_WALK 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 turn left | walk, turn left |
look after 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 turn right | turn right, look |
turn left and 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and turn left | turn left, turn left |
run and walk | I_RUN 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and walk | run, walk |
jump 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | turn right, jump |
walk after 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 turn right | turn right, walk |
look and jump | I_LOOK 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 jump | look, jump |
walk and jump | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 jump | walk, jump |
look after 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 turn left | turn left, look |
turn left and 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and run | turn left, run |
walk 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | turn left, walk |
jump and walk | I_JUMP 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | jump, walk |
jump after walk | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | walk, jump |
run and turn left | I_RUN 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and turn left | run, turn left |
walk after jump | I_JUMP 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 jump | jump, walk |
turn left and 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and jump | turn left, jump |
run after 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 after turn right | turn right, run |
jump and 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 jump | jump, jump |
walk and run | I_WALK 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 run | walk, run |
run and run | I_RUN 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and run | run, run |
turn left after run | I_RUN 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 after run | run, turn left |
run after walk | I_WALK 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 after walk | walk, run |
turn right after run | I_RUN 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 run | run, turn right |
look and 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | look, look |
turn right and 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and run | turn right, run |
turn left after turn right | I_TURN_RIGHT 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 after turn right | turn right, turn left |
run and turn right | I_RUN 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and turn right | run, turn right |
run 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | turn left, run |
jump after 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 turn right | turn right, jump |
turn right after 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 turn left | turn left, turn right |
jump twice | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | jump, jump |
turn left and turn right | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and turn right | turn left, turn right |
jump and turn left | I_JUMP 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 turn left | jump, turn left |
run and jump | I_RUN 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and jump | run, jump |
walk twice | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 twice | walk, walk |
turn opposite 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | turn right, turn right |
run after look | I_LOOK 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 after look | look, run |
look after jump | I_JUMP 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 jump | jump, look |
turn right after look | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | look, turn right |
turn right and 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and jump | turn right, jump |
jump after 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 jump | jump, jump |
jump and turn right | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 turn right | jump, turn right |
walk and look | I_WALK 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 look | walk, look |
walk after look | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 look | look, walk |
look and 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 turn left | look, turn left |
look after run | I_RUN 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 run | run, look |
turn right and 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and turn right | turn right, turn right |
turn left after jump | I_JUMP 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 after jump | jump, turn left |
jump and look | I_JUMP 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | jump, look |
run after jump | I_JUMP 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 after jump | jump, run |
look after walk | I_WALK 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 walk | walk, look |
look 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | turn left, look |
turn right twice | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 twice | turn right, turn right |
jump and run | I_JUMP 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 run | jump, run |
look and walk | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 walk | look, walk |
turn right and turn left | I_TURN_RIGHT 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and turn left | turn right, turn left |
run after 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 after turn left | turn left, run |
walk and turn right | I_WALK 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 turn right | walk, turn right |
turn left after look | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 after look | look, turn left |
walk and 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | walk, walk |
look twice | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | look, look |
jump after run | I_RUN 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 run | run, jump |
turn right after walk | I_WALK 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 walk | walk, turn right |
look after 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | look, look |
turn right after 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 turn right | turn right, turn right |
look and run | I_LOOK 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 run | look, run |
run twice | I_RUN 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | run, run |
run and look | I_RUN 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and look | run, look |
run 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | turn right, run |
jump after look | I_LOOK 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 look | look, jump |
turn right and 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and walk | turn right, walk |
look 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | turn right, look |
turn left and 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and walk | turn left, walk |
turn right and 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and look | turn right, look |
turn right after jump | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 jump | jump, turn right |
look and 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 turn right | look, turn right |
turn left after 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 after turn left | turn left, turn left |
walk after 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | walk, walk |
jump 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | turn left, jump |
run after run | I_RUN 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 after run | run, run |
turn left and 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and look | turn left, look |
turn left after jump twice | I_JUMP I_JUMP 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 after jump twice | jump, jump, turn left |
look twice and look | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | look, look, look |
run right after jump | I_JUMP 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 jump | jump, turn right, run |
walk opposite left | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | turn left, turn left, walk |
run and look right | I_RUN 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 and look right | run, turn right, look |
run opposite right | 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 corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
{{ commands }}
|||
{{ actions }} | 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 | turn right, turn right, run |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.