Skip to content
Snippets Groups Projects
location.jsgf 913 B
Newer Older
  • Learn to ignore specific revisions
  • #JSGF V1.0;
    grammar ToBI_location;
    public <statement> = <locationPhrase> [please];
    
    <locationPhrase> = [<verb>] [<preposition>] [the | this] <location>;
    
    <verb> = go | search | learn | remember | memorize;
    
    <location> = <appliance_class> | <shelf_class> | <seat_class> | <table_class> | <room_class> | <utensil_class> | <door_class>;
    
    <appliance_class> = stove | sink | fridge | tv_counter;
    <shelf_class> = bar | kitchen_counter | cupboard | dresser | side_board | book_shelf | pantry | cabinet;
    <seat_class> = <seating_class>;
    <seating_class> = bench | bed | sofa | armchair;
    <table_class> = hallway_table | side_table | kitchen_table | dinner_table | couch_table | bedsidetable;
    <room_class> = kitchen | living_room | bed_room | hallway;
    <utensil_class> = hanger | umbrella_stand | trash_bin | plant;
    <door_class> = exit | entry;
    <preposition> = into | (on [top of]) | in | ([next] to) | at | near | in | from;