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 |
|---|---|---|---|---|---|
jump twice after run | I_RUN 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 twice after run | run, jump, jump |
run and walk twice | I_RUN 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.
run and walk twice | run, walk, walk |
jump and turn opposite left | I_JUMP 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.
jump and turn opposite left | jump, turn left, turn left |
jump twice after turn left | I_TURN_LEFT 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 twice after turn left | turn left, jump, jump |
turn right after jump right | I_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 cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn right after jump right | turn right, jump, turn right |
walk right and turn left | I_TURN_RIGHT 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 cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk right and turn left | turn right, walk, turn left |
turn opposite right and 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.
turn opposite right and walk | turn right, turn right, walk |
walk left after run | I_RUN 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 after run | run, turn left, walk |
look twice after 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.
look twice after jump | jump, look, look |
run right and turn left | I_TURN_RIGHT 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 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 and turn left | turn right, run, turn left |
look after turn opposite right | 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 after turn opposite right | turn right, turn right, look |
walk twice after look | I_LOOK 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 twice after look | look, walk, walk |
turn left after look twice | I_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 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 after look twice | look, look, turn left |
run thrice | I_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 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 thrice | run, run, run |
run right after look | I_LOOK I_TURN_RIGHT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run right after look | look, turn right, run |
turn right and run left | I_TURN_RIGHT 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 right and run left | turn right, turn left, run |
look twice and turn left | I_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 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 turn left | look, look, turn left |
run and turn opposite left | I_RUN I_TURN_LEFT I_TURN_LEFT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run and turn opposite left | run, turn left, turn left |
run left and jump | I_TURN_LEFT 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 cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run left and jump | turn left, run, jump |
look and run twice | I_LOOK 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 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 run twice | look, run, run |
turn opposite right and 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 and turn right | turn right, turn right, turn right |
turn opposite right and turn left | I_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 cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn opposite right and turn left | turn right, turn right, turn left |
look right and turn right | I_TURN_RIGHT I_LOOK I_TURN_RIGHT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look right and turn right | turn right, look, turn right |
jump after turn left twice | 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 after turn left twice | turn left, turn left, jump |
walk left after look | 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.
walk left after look | look, turn left, walk |
turn right thrice | 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 | turn right, turn right, turn right |
turn right twice and 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.
turn right twice and run | turn right, turn right, run |
walk and turn right twice | I_WALK I_TURN_RIGHT I_TURN_RIGHT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk and turn right twice | walk, turn right, turn right |
walk after turn 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 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 turn opposite left | turn left, turn left, walk |
jump twice and turn left | 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 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 turn left | jump, jump, turn left |
jump left and jump | I_TURN_LEFT 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 left and jump | turn left, jump, jump |
walk right and turn right | I_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 cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk right and turn right | turn right, walk, turn right |
look after jump right | I_TURN_RIGHT 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 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 jump right | turn right, jump, look |
jump after turn opposite left | 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 after turn opposite left | turn left, turn left, jump |
turn left after turn opposite left | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn left after turn opposite left | turn left, turn left, turn left |
jump left after run | I_RUN 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 after run | run, turn left, jump |
look left after turn right | I_TURN_RIGHT 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 left after turn right | turn right, turn left, look |
turn right and walk right | 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.
turn right and walk right | turn right, turn right, walk |
turn right after walk twice | I_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 cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn right after walk twice | walk, walk, turn right |
jump left and look | I_TURN_LEFT 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 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 and look | turn left, jump, look |
jump after turn opposite right | 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 after turn opposite right | turn right, turn right, jump |
jump left after turn right | I_TURN_RIGHT 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 after turn right | turn right, turn left, jump |
turn left twice and 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.
turn left twice and jump | turn left, turn left, jump |
turn right after jump left | 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.
turn right after jump left | turn left, jump, turn right |
jump after jump left | I_TURN_LEFT 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 after jump left | turn left, jump, jump |
run right after walk | I_WALK I_TURN_RIGHT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run right after walk | walk, turn right, run |
run left after look | I_LOOK I_TURN_LEFT I_RUN | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run left after look | look, turn left, run |
look and turn left twice | 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 and turn left twice | look, turn left, turn left |
walk after jump right | I_TURN_RIGHT 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 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 jump right | turn right, jump, walk |
turn opposite right and 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.
turn opposite right and run | turn right, turn right, run |
look and look 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 and look left | look, turn left, look |
jump right and walk | I_TURN_RIGHT 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 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 and walk | turn right, jump, walk |
walk after walk right | I_TURN_RIGHT 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 right | turn right, walk, walk |
jump twice and turn right | I_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 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 turn right | jump, jump, turn right |
look and turn opposite right | I_LOOK 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 and turn opposite right | look, turn right, turn right |
jump and turn right twice | I_JUMP 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.
jump and turn right twice | jump, turn right, turn right |
turn left twice and 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.
turn left twice and run | turn left, turn left, run |
walk left and jump | I_TURN_LEFT 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.
walk left and jump | turn left, walk, jump |
look after look left | I_TURN_LEFT I_LOOK I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
look after look left | turn left, look, look |
walk left and run | I_TURN_LEFT 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 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 run | turn left, walk, run |
walk twice after run | I_RUN 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 twice after run | run, walk, walk |
look after turn opposite left | 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 after turn opposite left | turn left, turn left, look |
jump opposite left | 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 | turn left, turn left, jump |
jump and look twice | 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 and look twice | jump, look, look |
run left and look | I_TURN_LEFT 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 cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
run left and look | turn left, run, look |
turn left and run right | I_TURN_LEFT 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.
turn left and run right | turn left, turn right, run |
turn right after turn opposite 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 right after turn opposite left | turn left, turn left, turn right |
walk twice after walk | I_WALK I_WALK I_WALK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk twice after walk | walk, walk, walk |
run and look twice | I_RUN 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.
run and look twice | run, look, look |
run after walk left | I_TURN_LEFT 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 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 after walk left | turn left, walk, run |
run left after turn right | I_TURN_RIGHT 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 turn right | turn right, turn left, run |
run left after jump | I_JUMP 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 jump | jump, turn left, run |
jump after jump twice | 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 after jump twice | jump, jump, jump |
jump right and look | I_TURN_RIGHT 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 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 and look | turn right, jump, look |
turn left after turn opposite right | I_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 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 after turn opposite right | turn right, turn right, turn left |
jump left and turn left | I_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 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 and turn left | turn left, jump, turn left |
run after look right | I_TURN_RIGHT 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 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 after look right | turn right, look, run |
turn right and turn right twice | 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 and turn right twice | turn right, turn right, turn right |
walk and jump left | I_WALK 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 and jump left | walk, turn left, jump |
walk twice after turn right | I_TURN_RIGHT 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 twice after turn right | turn right, walk, walk |
walk after run twice | I_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 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 run twice | run, run, walk |
turn left after turn left twice | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn left after turn left twice | turn left, turn left, turn left |
run and turn right twice | 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.
run and turn right twice | run, turn right, turn right |
jump and run right | 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 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 run right | jump, turn right, run |
jump and jump 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 and jump right | jump, turn right, jump |
look and turn opposite left | 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 and turn opposite left | look, turn left, turn left |
jump and turn left twice | I_JUMP 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.
jump and turn left twice | jump, turn left, turn left |
turn right after walk left | I_TURN_LEFT 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 cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn right after walk left | turn left, walk, turn right |
turn opposite left after run | I_RUN I_TURN_LEFT I_TURN_LEFT | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn opposite left after run | run, turn left, turn left |
walk after jump twice | I_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 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 jump twice | jump, jump, walk |
walk right and run | I_TURN_RIGHT 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 cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
walk right and run | turn right, walk, run |
turn opposite left and 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.
turn opposite left and run | turn left, turn left, run |
turn right after look twice | I_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 cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn right after look twice | look, look, turn right |
turn right twice and 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 right twice and turn right | turn right, turn right, turn right |
turn right and jump right | 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.
turn right and jump right | turn right, turn right, jump |
run after turn opposite 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.
run after turn opposite left | turn left, turn left, run |
turn right and look right | I_TURN_RIGHT I_TURN_RIGHT I_LOOK | affirmative_beginning | {% set scan_lst_of_actions = actions.split(' ') %}
{% set lst_of_actions = [] %}
{% for item in scan_lst_of_actions %}
{{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }}
{% endfor %}
{% set actions = lst_of_actions | join(", ") %}
Given the commands below, please produce the cor... | Given the commands below, please produce the corresponding correct sequence of actions. The actions should be comma-separated. A few examples of actions include: "turn right", "walk", "run", etc.
turn right and look right | turn right, turn right, look |
jump thrice | 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 thrice | jump, jump, jump |
run after run left | I_TURN_LEFT 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 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 after run left | turn left, run, run |
run twice after walk | I_WALK 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 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 after walk | walk, run, run |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.