commands stringlengths 3 59 | actions stringlengths 5 479 | template_name stringclasses 11
values | template stringclasses 11
values | rendered_input stringlengths 52 534 | rendered_output stringlengths 3 430 |
|---|---|---|---|---|---|
turn opposite left twice after jump around left | I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_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, turn left, turn left, turn left", translate them into natural language. | turn opposite left twice after jump around left |
walk around left and run | I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK 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, run", translate them into natural language. | walk around left and run |
run left after look right twice | I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK 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, look, turn right, look, turn left, run", translate them into natural language. | run left after look right twice |
run opposite right after turn right twice | I_TURN_RIGHT 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, turn right, run", translate them into natural language. | run opposite right after turn right twice |
turn around left thrice and run right twice | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT 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, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn right, run, turn right, run", translate them into natural language. | turn around left thrice and run right twice |
jump and look opposite left twice | I_JUMP 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 "jump, turn left, turn left, look, turn left, turn left, look", translate them into natural language. | jump and look opposite left twice |
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", translate them into natural language. | turn left |
look opposite left thrice after turn opposite right thrice | I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_LEFT 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 right, turn right, turn right, turn right, turn right, turn right, turn left, turn left, look, turn left, turn left, look, turn left, turn left, look", translate them into natural language. | look opposite left thrice after turn opposite right thrice |
run around right thrice after jump left twice | I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN 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, jump, turn left, jump, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run", translate them into natural language. | run around right thrice after jump left twice |
jump thrice after jump right twice | I_TURN_RIGHT I_JUMP I_TURN_RIGHT 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 "turn right, jump, turn right, jump, jump, jump, jump", translate them into natural language. | jump thrice after jump right twice |
walk right thrice after turn right thrice | I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK | 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, walk, turn right, walk, turn right, walk", translate them into natural language. | walk right thrice after turn right thrice |
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", translate them into natural language. | turn left |
look left and turn around left | I_TURN_LEFT 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 left, look, turn left, turn left, turn left, turn left", translate them into natural language. | look left and turn around left |
jump left twice and jump opposite right | I_TURN_LEFT I_JUMP I_TURN_LEFT 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, jump, turn left, jump, turn right, turn right, jump", translate them into natural language. | jump left twice and jump opposite right |
turn opposite left and run around right thrice | I_TURN_LEFT I_TURN_LEFT I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN 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, turn left, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run", translate them into natural language. | turn opposite left and run around right thrice |
look opposite left thrice and look right twice | I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_RIGHT I_LOOK 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, turn left, look, turn left, turn left, look, turn left, turn left, look, turn right, look, turn right, look", translate them into natural language. | look opposite left thrice and look right twice |
turn opposite right thrice after turn right | I_TURN_RIGHT 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 "turn right, turn right, turn right, turn right, turn right, turn right, turn right", translate them into natural language. | turn opposite right thrice after turn right |
jump twice and run around right | I_JUMP I_JUMP I_TURN_RIGHT I_RUN 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 "jump, jump, turn right, run, turn right, run, turn right, run, turn right, run", translate them into natural language. | jump twice and run around right |
jump around right after turn opposite right twice | I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP 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 right, turn right, turn right, turn right, turn right, jump, turn right, jump, turn right, jump, turn right, jump", translate them into natural language. | jump around right after turn opposite right twice |
jump right after turn around left | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT 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, turn left, turn left, turn left, turn right, jump", translate them into natural language. | jump right after turn around left |
walk thrice and look around right twice | I_WALK I_WALK I_WALK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK | 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 right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look", translate them into natural language. | walk thrice and look around right twice |
turn around left thrice and look opposite right twice | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT 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, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn right, turn right, look, turn right, turn right, look", translate them into natural language. | turn around left thrice and look opposite right twice |
run left twice and walk opposite left | I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN 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, run, turn left, run, turn left, turn left, walk", translate them into natural language. | run left twice and walk opposite left |
walk around left thrice after run opposite left twice | I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_RUN 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 | 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, 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", translate them into natural language. | walk around left thrice after run opposite left twice |
jump around left and look opposite right twice | I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP 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, jump, turn left, jump, turn left, jump, turn left, jump, turn right, turn right, look, turn right, turn right, look", translate them into natural language. | jump around left and look opposite right twice |
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", translate them into natural language. | turn left |
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", translate them into natural language. | turn left |
look after look around right thrice | I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_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, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, look", translate them into natural language. | look after look around right thrice |
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", translate them into natural language. | turn left |
run right and walk left twice | I_TURN_RIGHT I_RUN 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, run, turn left, walk, turn left, walk", translate them into natural language. | run right and walk left twice |
turn opposite left twice and walk around right | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK 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 right, walk, turn right, walk, turn right, walk, turn right, walk", translate them into natural language. | turn opposite left twice and walk around right |
jump right after jump opposite left thrice | I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_RIGHT I_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, jump, turn left, turn left, jump, turn left, turn left, jump, turn right, jump", translate them into natural language. | jump right after jump opposite left thrice |
walk around right and run left twice | I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK 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, walk, turn right, walk, turn right, walk, turn right, walk, turn left, run, turn left, run", translate them into natural language. | walk around right and run left twice |
jump right twice and look opposite left thrice | I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_LEFT 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 right, jump, turn right, jump, turn left, turn left, look, turn left, turn left, look, turn left, turn left, look", translate them into natural language. | jump right twice and look opposite left thrice |
run opposite left after run right twice | I_TURN_RIGHT I_RUN I_TURN_RIGHT 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, run, turn right, run, turn left, turn left, run", translate them into natural language. | run opposite left after run right twice |
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", translate them into natural language. | turn left |
look opposite right thrice and jump right | I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_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 right, turn right, look, turn right, turn right, look, turn right, turn right, look, turn right, jump", translate them into natural language. | look opposite right thrice and jump right |
turn around right after look right thrice | I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK 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 "turn right, look, turn right, look, turn right, look, turn right, turn right, turn right, turn right", translate them into natural language. | turn around right after look right thrice |
look opposite right after run around right | I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN 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, run, turn right, run, turn right, run, turn right, run, turn right, turn right, look", translate them into natural language. | look opposite right after run around right |
walk right thrice and run thrice | I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK 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 right, walk, turn right, walk, turn right, walk, run, run, run", translate them into natural language. | walk right thrice and run thrice |
turn around left 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_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, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, walk, turn left, turn left, turn left, turn left", translate them into natural language. | turn around left after walk around left twice |
turn right twice and look opposite right twice | I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK | 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, look, turn right, turn right, look", translate them into natural language. | turn right twice and look opposite right twice |
walk right after turn opposite left twice | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT 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 right, walk", translate them into natural language. | walk right after turn opposite left twice |
turn around right twice after jump around right thrice | I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_... | 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, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, turn right, turn right, turn right, turn right, turn right, turn right, ... | turn around right twice after jump around right thrice |
run around left after look left thrice | I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN | 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, run, turn left, run, turn left, run, turn left, run", translate them into natural language. | run around left after look left thrice |
run opposite right after jump opposite left | I_TURN_LEFT I_TURN_LEFT I_JUMP 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, turn left, jump, turn right, turn right, run", translate them into natural language. | run opposite right after jump opposite left |
jump around right thrice after jump | I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP 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 "jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump", translate them into natural language. | jump around right thrice after jump |
run and jump around right twice | I_RUN I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP 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 "run, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump", translate them into natural language. | run and jump around right twice |
run opposite left and run | I_TURN_LEFT I_TURN_LEFT 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, run, run", translate them into natural language. | run opposite left and run |
turn opposite left twice after look left thrice | I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT 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 left, look, turn left, look, turn left, look, turn left, turn left, turn left, turn left", translate them into natural language. | turn opposite left twice after look left thrice |
walk thrice after look opposite left thrice | I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT I_TURN_LEFT I_LOOK I_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. | walk thrice after look opposite left thrice |
walk right after run opposite left thrice | I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_LEFT I_TURN_LEFT I_RUN I_TURN_RIGHT I_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, turn left, turn left, run, turn left, turn left, run, turn right, walk", translate them into natural language. | walk right after run opposite left thrice |
look right twice after turn around left | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_RIGHT I_LOOK 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, turn left, turn left, turn left, turn right, look, turn right, look", translate them into natural language. | look right twice after turn around left |
jump opposite left thrice and jump opposite right thrice | I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_LEFT I_TURN_LEFT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_JUMP 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, turn left, jump, turn left, turn left, jump, turn left, turn left, jump, turn right, turn right, jump, turn right, turn right, jump, turn right, turn right, jump", translate them into natural language. | jump opposite left thrice and jump opposite right thrice |
turn right twice and look left thrice | I_TURN_RIGHT I_TURN_RIGHT 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 right, turn right, turn left, look, turn left, look, turn left, look", translate them into natural language. | turn right twice and look left thrice |
run around left after run around right | I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT 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, run, turn right, run, turn right, run, turn right, run, turn left, run, turn left, run, turn left, run, turn left, run", translate them into natural language. | run around left after run around right |
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", translate them into natural language. | turn left |
run opposite right and walk twice | I_TURN_RIGHT I_TURN_RIGHT 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 right, turn right, run, walk, walk", translate them into natural language. | run opposite right and walk twice |
walk left thrice and turn around left thrice | I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT | 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, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left, turn left", translate them into natural language. | walk left thrice and turn around left thrice |
turn right thrice and run around left | I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT 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, turn right, turn left, run, turn left, run, turn left, run, turn left, run", translate them into natural language. | turn right thrice and run around left |
jump around right twice and turn around right | I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP 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 "turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, turn right, turn right, turn right", translate them into natural language. | jump around right twice and turn around right |
walk 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_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, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, walk", translate them into natural language. | walk after look around left twice |
walk opposite right twice after run around right twice | I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN 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, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, turn right, walk, turn right, turn right, walk", translate them into natural language. | walk opposite right twice after run around right twice |
jump opposite left thrice after jump opposite right twice | I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_TURN_RIGHT I_JUMP I_TURN_LEFT I_TURN_LEFT I_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, jump, turn right, turn right, jump, turn left, turn left, jump, turn left, turn left, jump, turn left, turn left, jump", translate them into natural language. | jump opposite left thrice after jump opposite right twice |
run opposite left thrice and look around right 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_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK | 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 right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look, turn right, look", translate them into natural language. | run opposite left thrice and look around right twice |
turn around right and walk left twice | I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT 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, turn right, turn right, turn right, turn left, walk, turn left, walk", translate them into natural language. | turn around right and walk left twice |
jump around right twice after look right twice | I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP I_TURN_RIGHT I_JUMP 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 right, look, turn right, look, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump, turn right, jump", translate them into natural language. | jump around right twice after look right twice |
jump left and jump opposite right twice | I_TURN_LEFT I_JUMP 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, jump, turn right, turn right, jump, turn right, turn right, jump", translate them into natural language. | jump left and jump opposite right twice |
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", translate them into natural language. | turn left |
run around right and jump around left | I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP I_TURN_LEFT I_JUMP | 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 right, run, turn right, run, turn right, run, turn left, jump, turn left, jump, turn left, jump, turn left, jump", translate them into natural language. | run around right and jump around left |
look left thrice and run opposite left thrice | I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK I_TURN_LEFT I_LOOK 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 left, look, turn left, look, turn left, look, turn left, turn left, run, turn left, turn left, run, turn left, turn left, run", translate them into natural language. | look left thrice and run opposite left thrice |
turn opposite left thrice and jump opposite left thrice | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_JUMP I_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, turn left, turn left, jump, turn left, turn left, jump, turn left, turn left, jump", translate them into natural language. | turn opposite left thrice and jump opposite left thrice |
look around left after turn opposite left twice | I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT I_TURN_LEFT 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, turn left, turn left, turn left, turn left, look, turn left, look, turn left, look, turn left, look", translate them into natural language. | look around left after turn opposite left twice |
look 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_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 right, look, turn right, look, turn right, look, turn left, look, turn left, look", translate them into natural language. | look left twice after look right thrice |
look right thrice after look right twice | I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK | 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, look, turn right, look", translate them into natural language. | look right thrice after look right twice |
walk opposite left thrice and turn opposite right twice | I_TURN_LEFT I_TURN_LEFT I_WALK I_TURN_LEFT I_TURN_LEFT I_WALK I_TURN_LEFT I_TURN_LEFT I_WALK I_TURN_RIGHT I_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, turn left, walk, turn left, turn left, walk, turn left, turn left, walk, turn right, turn right, turn right, turn right", translate them into natural language. | walk opposite left thrice and turn opposite right twice |
walk around left and look opposite left | I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_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, turn left, look", translate them into natural language. | walk around left and look opposite left |
turn opposite right and look right thrice | I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK 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, turn right, turn right, look, turn right, look, turn right, look", translate them into natural language. | turn opposite right and look right thrice |
run left twice and walk left twice | I_TURN_LEFT I_RUN I_TURN_LEFT I_RUN 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, run, turn left, run, turn left, walk, turn left, walk", translate them into natural language. | run left twice and walk left twice |
look opposite right twice and run right twice | I_TURN_RIGHT I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_TURN_RIGHT I_LOOK 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, look, turn right, turn right, look, turn right, run, turn right, run", translate them into natural language. | look opposite right twice and run right twice |
run opposite left 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_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 left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, look, turn left, turn left, run", translate them into natural language. | run opposite left after look around left twice |
walk around left thrice and walk right 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_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_LEFT I_WALK I_TURN_RIGHT I_WALK 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, 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 right, walk, turn right, walk", translate them into natural language. | walk around left thrice and walk right twice |
turn opposite right twice after walk around right twice | I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_TURN_RIGHT I_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, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, turn right, turn right, turn right", translate them into natural language. | turn opposite right twice after walk around right twice |
walk and walk left thrice | 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 "walk, turn left, walk, turn left, walk, turn left, walk", translate them into natural language. | walk and walk left thrice |
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", translate them into natural language. | turn left |
look opposite left and turn opposite left thrice | I_TURN_LEFT I_TURN_LEFT I_LOOK I_TURN_LEFT 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, look, turn left, turn left, turn left, turn left, turn left, turn left", translate them into natural language. | look opposite left and turn opposite left thrice |
walk around right twice after run thrice | I_RUN I_RUN I_RUN I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK I_TURN_RIGHT I_WALK | 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 "run, run, run, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk, turn right, walk", translate them into natural language. | walk around right twice after run thrice |
run and turn around right thrice | I_RUN I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT I_TURN_RIGHT 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 "run, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right, turn right", translate them into natural language. | run and turn around right thrice |
walk opposite left twice and turn opposite left | I_TURN_LEFT I_TURN_LEFT I_WALK I_TURN_LEFT I_TURN_LEFT I_WALK 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, walk, turn left, turn left, walk, turn left, turn left", translate them into natural language. | walk opposite left twice and turn opposite left |
look right thrice after run around right twice | I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_RUN I_TURN_RIGHT I_LOOK I_TURN_RIGHT I_LOOK 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, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, run, turn right, look, turn right, look, turn right, look", translate them into natural language. | look right thrice after run around right twice |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.