Skip to content

homeskies/gpsr-command-understanding

 
 

Repository files navigation

GPSR Command Understanding Build Status

A semantic parser for commands from the RoboCup@Home General Purpose Service Robot task.

  • Utterance to λ-calculus representation parser
  • Lexer/parser for loading the released command generation CFG
  • Tools for generating commands along with a λ-calculus representation
  • Crowd-sourcing interface for collecting paraphrases

If you use this code or data, consider citing our paper Neural Semantic Parsing for Command Understanding in General-Purpose Service Robots. The data collected for this paper is available separately.

Usage

Set up a virtual environment using at least Python 3.6:

python3.7 -m virtualenv venv
source venv/bin/activate
pip install -r requirements.txt

Baseline models (fuzzy parsers constructed directly from the generator grammar) will work under Python 2.7 so you can easily use them with ROS.

Generation

The latest grammar and knowledgebase files (pulled from the generator) are provided in the resources directory. The grammar format specification will clarify how to interpret the files.

To produce the dataset, see make_dataset.py.

Training

We base our training on previous work using AllenNLP for seq2seq semantic parser training. All of our experiments are declaratively specified in the experiments directory.

You can run them with

allennlp train \
experiments/seq2seq.json \
-s results/seq2seq \
--include-package gpsr_command_understanding

You can monitor training with Tensorboard, just point it at the log directory.

The train_all_models script will train every config back to back. It will pass through arguments that come after the --, so you can configure the experiment

./scripts/train_all_models experiments -- -o "{train_data_path: 'data/1_2/train.txt', validation_data_path: 'data/1_2/val.txt'}"

Testing

To see a model's output on a data file, use the predict command

allennlp predict --archive-path results/ --include-package gpsr_command_understanding

You can poke at a trained model through the browser using AllenNLP as well

python -m allennlp.service.server_simple \
    --archive-path results/seq2seq/model.tar.gz \
    --predictor  command_parser\
    --include-package gpsr_command_understanding \
    --title "GPSR Semantic Parser" \
    --field-name command \
    --static-dir demo

About

Tools for parsing natural language robot commands

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 85.6%
  • HTML 7.5%
  • CSS 3.5%
  • Shell 3.0%
  • JavaScript 0.4%