commands
stringlengths
3
59
actions
stringlengths
5
455
template_name
stringclasses
11 values
template
stringclasses
11 values
rendered_input
stringlengths
52
510
rendered_output
stringlengths
3
406
turn left thrice after look left
I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, look, turn left, turn left, turn left", translate them into natural language.
turn left thrice after look left
turn left thrice and walk twice
I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_WALK I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, turn left, turn left, walk, walk", translate them into natural language.
turn left thrice and walk twice
turn around left and jump opposite left twice
I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, turn left, turn left, turn left, turn left, turn left, jump, turn left, turn left, jump", translate them into natural language.
turn around left and jump opposite left twice
look opposite left twice after look around left twice
I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, turn left, look, turn left, turn left, look", translate them into natural language.
look opposite left twice after look around left twice
run twice after jump opposite right twice
I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_RUN I_RUN
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, turn right, jump, turn right, turn right, jump, run, run", translate them into natural language.
run twice after jump opposite right twice
look around left thrice after jump
I_JUMP I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "jump, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look", translate them into natural language.
look around left thrice after jump
jump opposite left twice after look left twice
I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, look, turn left, look, turn left, turn left, jump, turn left, turn left, jump", translate them into natural language.
jump opposite left twice after look left twice
look opposite right twice and run opposite right twice
I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_RIGHT I_TURN_RIGHT I_RUN
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, turn right, look, turn right, turn right, look, turn right, turn right, run, turn right, turn right, run", translate them into natural language.
look opposite right twice and run opposite right twice
turn opposite right thrice and run left thrice
I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, turn right, turn right, turn right, turn right, turn right, turn left, run, turn left, run, turn left, run", translate them into natural language.
turn opposite right thrice and run left thrice
jump opposite right twice after look left thrice
I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_JUMP
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, look, turn left, look, turn left, look, turn right, turn right, jump, turn right, turn right, jump", translate them into natural language.
jump opposite right twice after look left thrice
run twice after run left thrice
I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_RUN I_RUN
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, run, turn left, run, turn left, run, run, run", translate them into natural language.
run twice after run left thrice
run opposite right after look left twice
I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_RUN
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, look, turn left, look, turn right, turn right, run", translate them into natural language.
run opposite right after look left twice
look right thrice and turn opposite left twice
I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, look, turn right, look, turn right, look, turn left, turn left, turn left, turn left", translate them into natural language.
look right thrice and turn opposite left twice
walk opposite right after turn opposite left thrice
I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_RIGHT I_TURN_RIGHT I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, turn left, turn left, turn left, turn left, turn left, turn right, turn right, walk", translate them into natural language.
walk opposite right after turn opposite left thrice
look thrice after jump around left twice
I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_LOOK I_LOOK I_LOOK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, look, look, look", translate them into natural language.
look thrice after jump around left twice
walk opposite left twice after jump opposite left thrice
I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_WALK I_TURN_LEFT I_TURN_LEFT I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, turn left, jump, turn left, turn left, jump, turn left, turn left, jump, turn left, turn left, walk, turn left, turn left, walk", translate them into natural language.
walk opposite left twice after jump opposite left thrice
turn around left after look thrice
I_LOOK I_LOOK I_LOOK I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "look, look, look, turn left, turn left, turn left, turn left", translate them into natural language.
turn around left after look thrice
run twice after jump opposite left thrice
I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP I_RUN I_RUN
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, turn left, jump, turn left, turn left, jump, turn left, turn left, jump, run, run", translate them into natural language.
run twice after jump opposite left thrice
jump left and walk around left
I_TURN_LEFT I_JUMP I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, jump, turn left, walk, turn left, walk, turn left, walk, turn left, walk", translate them into natural language.
jump left and walk around left
walk and turn left
I_WALK I_TURN_LEFT
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "walk, turn left", translate them into natural language.
walk and turn left
turn opposite left and walk around left
I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, turn left, turn left, walk, turn left, walk, turn left, walk, turn left, walk", translate them into natural language.
turn opposite left and walk around left
jump right thrice and look opposite right thrice
I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, jump, turn right, jump, turn right, jump, turn right, turn right, look, turn right, turn right, look, turn right, turn right, look", translate them into natural language.
jump right thrice and look opposite right thrice
jump opposite right and run around left thrice
I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, turn right, jump, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run", translate them into natural language.
jump opposite right and run around left thrice
jump right twice and jump opposite left
I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, jump, turn right, jump, turn left, turn left, jump", translate them into natural language.
jump right twice and jump opposite left
jump thrice and jump twice
I_JUMP I_JUMP I_JUMP I_JUMP I_JUMP
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "jump, jump, jump, jump, jump", translate them into natural language.
jump thrice and jump twice
walk thrice after turn left
I_TURN_LEFT I_WALK I_WALK I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, walk, walk, walk", translate them into natural language.
walk thrice after turn left
walk left after walk twice
I_WALK I_WALK I_TURN_LEFT I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "walk, walk, turn left, walk", translate them into natural language.
walk left after walk twice
jump opposite right thrice and turn right twice
I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, turn right, jump, turn right, turn right, jump, turn right, turn right, jump, turn right, turn right", translate them into natural language.
jump opposite right thrice and turn right twice
run opposite left thrice after jump right
I_TURN_RIGHT I_JUMP I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_RUN
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, jump, turn left, turn left, run, turn left, turn left, run, turn left, turn left, run", translate them into natural language.
run opposite left thrice after jump right
turn right and run right thrice
I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, turn right, run, turn right, run, turn right, run", translate them into natural language.
turn right and run right thrice
look left and turn right thrice
I_TURN_LEFT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, look, turn right, turn right, turn right", translate them into natural language.
look left and turn right thrice
walk opposite left twice and look twice
I_TURN_LEFT I_TURN_LEFT I_WALK I_TURN_LEFT I_TURN_LEFT I_WALK I_LOOK I_LOOK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, turn left, walk, turn left, turn left, walk, look, look", translate them into natural language.
walk opposite left twice and look twice
turn left after turn opposite left twice
I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, turn left, turn left, turn left, turn left", translate them into natural language.
turn left after turn opposite left twice
look around left thrice and jump opposite right thrice
I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT ...
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn right, turn right, jump, turn right, turn right, jump, turn right, turn right, jump", trans...
look around left thrice and jump opposite right thrice
jump around left thrice and turn left thrice
I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, turn left, turn left", translate them into natural language.
jump around left thrice and turn left thrice
walk left and turn opposite left twice
I_TURN_LEFT I_WALK I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, walk, turn left, turn left, turn left, turn left", translate them into natural language.
walk left and turn opposite left twice
walk opposite right thrice and look twice
I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK I_LOOK I_LOOK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, turn right, walk, turn right, turn right, walk, turn right, turn right, walk, look, look", translate them into natural language.
walk opposite right thrice and look twice
walk right and look opposite right
I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_LOOK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, walk, turn right, turn right, look", translate them into natural language.
walk right and look opposite right
walk after jump thrice
I_JUMP I_JUMP I_JUMP I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "jump, jump, jump, walk", translate them into natural language.
walk after jump thrice
look opposite right and jump opposite left thrice
I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, turn right, look, turn left, turn left, jump, turn left, turn left, jump, turn left, turn left, jump", translate them into natural language.
look opposite right and jump opposite left thrice
jump left after run opposite right twice
I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_LEFT I_JUMP
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, turn right, run, turn right, turn right, run, turn left, jump", translate them into natural language.
jump left after run opposite right twice
jump after walk opposite left thrice
I_TURN_LEFT I_TURN_LEFT I_WALK I_TURN_LEFT I_TURN_LEFT I_WALK I_TURN_LEFT I_TURN_LEFT I_WALK I_JUMP
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, turn left, walk, turn left, turn left, walk, turn left, turn left, walk, jump", translate them into natural language.
jump after walk opposite left thrice
look right thrice and walk opposite right thrice
I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, look, turn right, look, turn right, look, turn right, turn right, walk, turn right, turn right, walk, turn right, turn right, walk", translate them into natural language.
look right thrice and walk opposite right thrice
turn right thrice after look right
I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, look, turn right, turn right, turn right", translate them into natural language.
turn right thrice after look right
walk left and walk left twice
I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, walk, turn left, walk, turn left, walk", translate them into natural language.
walk left and walk left twice
look around left after walk thrice
I_WALK I_WALK I_WALK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "walk, walk, walk, turn left, look, turn left, look, turn left, look, turn left, look", translate them into natural language.
look around left after walk thrice
walk left and run opposite right
I_TURN_LEFT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_RUN
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, walk, turn right, turn right, run", translate them into natural language.
walk left and run opposite right
look around left thrice and jump opposite left
I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_JUMP
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, turn left, jump", translate them into natural language.
look around left thrice and jump opposite left
run right after turn right twice
I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_RUN
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, turn right, turn right, run", translate them into natural language.
run right after turn right twice
jump twice and turn right
I_JUMP I_JUMP I_TURN_RIGHT
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "jump, jump, turn right", translate them into natural language.
jump twice and turn right
jump thrice and walk opposite left thrice
I_JUMP I_JUMP I_JUMP I_TURN_LEFT I_TURN_LEFT I_WALK I_TURN_LEFT I_TURN_LEFT I_WALK I_TURN_LEFT I_TURN_LEFT I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "jump, jump, jump, turn left, turn left, walk, turn left, turn left, walk, turn left, turn left, walk", translate them into natural language.
jump thrice and walk opposite left thrice
look left thrice after jump around left twice
I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, look, turn left, look, turn left, look", translate them into natural language.
look left thrice after jump around left twice
run around left thrice after walk left thrice
I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, walk, turn left, walk, turn left, walk, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run, turn left, run", translate them into natural language.
run around left thrice after walk left thrice
walk left and walk left thrice
I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, walk, turn left, walk, turn left, walk, turn left, walk", translate them into natural language.
walk left and walk left thrice
look right and jump thrice
I_TURN_RIGHT I_LOOK I_JUMP I_JUMP I_JUMP
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, look, jump, jump, jump", translate them into natural language.
look right and jump thrice
look thrice and turn opposite right thrice
I_LOOK I_LOOK I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "look, look, look, turn right, turn right, turn right, turn right, turn right, turn right", translate them into natural language.
look thrice and turn opposite right thrice
run opposite left thrice and jump left twice
I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, turn left, run, turn left, turn left, run, turn left, turn left, run, turn left, jump, turn left, jump", translate them into natural language.
run opposite left thrice and jump left twice
run opposite left and walk twice
I_TURN_LEFT I_TURN_LEFT I_RUN I_WALK I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, turn left, run, walk, walk", translate them into natural language.
run opposite left and walk twice
look left thrice and look opposite right thrice
I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, look, turn left, look, turn left, look, turn right, turn right, look, turn right, turn right, look, turn right, turn right, look", translate them into natural language.
look left thrice and look opposite right thrice
jump right thrice and look opposite left
I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_LEFT I_TURN_LEFT I_LOOK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, jump, turn right, jump, turn right, jump, turn left, turn left, look", translate them into natural language.
jump right thrice and look opposite left
jump opposite left twice after look
I_LOOK I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "look, turn left, turn left, jump, turn left, turn left, jump", translate them into natural language.
jump opposite left twice after look
walk after walk right twice
I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, walk, turn right, walk, walk", translate them into natural language.
walk after walk right twice
jump opposite left and walk opposite right twice
I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, turn left, jump, turn right, turn right, walk, turn right, turn right, walk", translate them into natural language.
jump opposite left and walk opposite right twice
look opposite right twice and run twice
I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_RUN I_RUN
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, turn right, look, turn right, turn right, look, run, run", translate them into natural language.
look opposite right twice and run twice
run right twice after walk around left twice
I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn right, run, turn right, run", translate them into natural language.
run right twice after walk around left twice
run left thrice and walk opposite right thrice
I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, run, turn left, run, turn left, run, turn right, turn right, walk, turn right, turn right, walk, turn right, turn right, walk", translate them into natural language.
run left thrice and walk opposite right thrice
turn left twice after jump
I_JUMP I_TURN_LEFT I_TURN_LEFT
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "jump, turn left, turn left", translate them into natural language.
turn left twice after jump
look after look right twice
I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_LOOK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, look, turn right, look, look", translate them into natural language.
look after look right twice
walk right thrice and run opposite right thrice
I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_RIGHT I_TURN_RIGHT I_RUN I_TURN_RIGHT I_TURN_RIGHT I_RUN
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, walk, turn right, walk, turn right, walk, turn right, turn right, run, turn right, turn right, run, turn right, turn right, run", translate them into natural language.
walk right thrice and run opposite right thrice
jump left twice after look
I_LOOK I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "look, turn left, jump, turn left, jump", translate them into natural language.
jump left twice after look
run right and jump opposite left
I_TURN_RIGHT I_RUN I_TURN_LEFT I_TURN_LEFT I_JUMP
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, run, turn left, turn left, jump", translate them into natural language.
run right and jump opposite left
look around left after walk around left thrice
I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, look, turn left, look, turn left, look, turn left, look", translate them into natural...
look around left after walk around left thrice
jump around left twice and run left
I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_RUN
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, jump, turn left, run", translate them into natural language.
jump around left twice and run left
look opposite left thrice and walk thrice
I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK I_WALK I_WALK I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn left, turn left, look, turn left, turn left, look, turn left, turn left, look, walk, walk, walk", translate them into natural language.
look opposite left thrice and walk thrice
walk around left twice after look right thrice
I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK
translate_opposite
{% set scan_lst_of_actions = actions.split(' ') %} {% set lst_of_actions = [] %} {% for item in scan_lst_of_actions %} {{ lst_of_actions.append(item.lower()[2:] | replace("_", " ")) | default("", True) }} {% endfor %} {% set actions = lst_of_actions | join(", ") %} Given some actions "{{actions}}", translate them...
Given some actions "turn right, look, turn right, look, turn right, look, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk", translate them into natural language.
walk around left twice after look right thrice