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