An open API service indexing awesome lists of open source software.

https://github.com/mvollrath/nlu_examples

Examples accompanying an NLU presentation.
https://github.com/mvollrath/nlu_examples

ai example machine-learning nlp nlu

Last synced: about 1 year ago
JSON representation

Examples accompanying an NLU presentation.

Awesome Lists containing this project

README

          

NLU Examples
------------

### Basic

An example of an extremely primitive neural network NLU classifier made with [Keras](https://keras.io/).

The purpose of this example is to demonstrate a supervised machine learning NLU in a setting limited enough that a working network can be solved with pencil and paper.

To run this example in Docker, use `run_basic.sh`. Sources are in `examples/basic`.

### Rasa

An example of intent classification and entity extraction with [Rasa NLU](https://github.com/RasaHQ/rasa_nlu).

The purpose of this example is to demonstrate a full-featured NLU implementation stack from training data to web front-end. A web form recognizes requests for food and random numbers in a given range.

For example, it will recognize "i want some pizza" as a food craving (for pizza) and "random number between 1 and 100" as a random number request (between 1 and 100, inclusive).

To run this example in Docker, use `run_rasa.sh`. The application will be listening on . Sources and training data are in `examples/rasa`.

### [Slides](https://docs.google.com/presentation/d/1gHRVUvyYcAvfx4dyoTU-zh3Msf5o-HqYvtL5ilP3djM/edit?usp=sharing)