Skip to main content

A Python CLI for Ruth NLP

Project description

Ruth Natural Language Understanding

Welcome to the RUTH NLU documentation. RUTH is a open sourced Natural Language Understanding (NLU) framework developed by puretalk.ai. It is a Python module that allows you to parse natural language sentences and extract information from them.

RUTH is cli based tool that can be used to train and test models.

Installation

Quick installation

$ pip install ruth-python

Installation from source

$ git clone https://github.com/prakashr7d/Research-implementation-NLU-engine.git
$ cd Research-implementation-NLU-engine
$ python setup.py install

Using makefile (for linux & mac users)

Makefile is a file that contains a set of directives used by make build automation tool to generate executables and other non-source files of a program from the program's source files.

$ git clone https://github.com/prakashr7d/Research-implementation-NLU-engine.git
$ cd Research-implementation-NLU-engine

for ubuntu,

$ make bootstrap

for mac,

$ make bootstrap-mac

then finally to install package run the following bash command

$ make install

Pytorch installation with GPU support

$ pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu116

Documentation

Getting Started

The main objective of this lib performs to extract information by parsing the sentence written in natural language. To getting started with RUTH let's follow the below steps. Run the following command to build an initial project with data and a default pipeline file.

$ mkdir project_name
$ ruth init 

Output

Project will be initialized with below structure

.
├── data
│    └── example.yml
└── pipeline.yml

Project will be created with example data and pipeline

CLI

RUTH has a CLI interface to train and test the model, to get started with the CLI interface, run the following command

$ ruth --help

for example, to train the model, run the following command

usage: $ ruth [-h] [-v] {train,test} ...

Training

To train the model, run the following command

$ ruth train -p path/to/pipeline.yaml 
  -d path/to/dataset.json

Parameters

-p, --pipeline  Pipeline file 
-d, --data dataset path 

Saving Trained models

Once the training is finished the model will be saved in a directory named models in the current working directory.

Dataset format

RUTH uses a yaml file to store the training data, the yaml file should have the following syntax

example

version: "0.1"
nlu:
- intent: ham
  examples: |
    - WHO ARE YOU SEEING?
    - Great! I hope you like your man well endowed. I am  <#>  inches
    - Didn't you get hep b immunisation in nigeria.
    - Fair enough, anything going on?
    - Yeah hopefully, if tyler can't do it I could maybe ask around a bit
- intent: spam
  examples: |
    - Did you hear about the new Divorce Barbie? It comes with all of Ken's stuff!
    - I plane to give on this month end.
    - Wah lucky man Then can save money Hee
    - Finished class where are you.
    - K..k:)where are you?how did you performed?
Pipeline
--- RUTH is a pipeline based NLU engine, it has 3 basic main components - Tokenizer - Featurizer - Intent Classifier

In pipeline-data.yml file is used to define the pipeline and its components Example of pipeline-basic.yml file for Support Vector Machine (SVM) based intent classifier and CountVectorizer based featurizer.

task:
pipeline:
  - name: 'WhiteSpaceTokenizer'
  - name: 'CountVectorFeaturizer'
  - name: 'SVMClassifier'
task:
pipeline:
  - name: 'HFTokenizer'
    model_name: 'bert-base-uncased'
  - name: 'HFClassifier'
    model_name: 'bert-base-uncased'

Parsing

To parse the text, run the following command

$ ruth parse -m path/to/model_dir 
  -t "I want to book a flight from delhi to mumbai"

Parameters

-m, --model_path  model file (optional)
-t, --text  text message (required)

If model path is not provided, Parse function will use the latest model in the model directory as a default model.

Testing

To test the model performance, run the following command

$ ruth evaluate -p path/to/pipeline-basic.yml 
  -d path/to/dataset

Parameters

-p, --pipeline  pipeline file 
-d, --data  dataset file
-o, --output_folder  to save result as PNG file (optional)
-m, --model_path (optionol)

If model path is not provided, Evaluate function will use the latest model in the model directory as a default model. If output folder is not provided, the result will be saved in results folder in the current working directory.

Deployment

RUTH uses FastAPI to deploy the model as a REST API, to deploy the model, run the following command

$ ruth deploy -m path/to/model_dir

Parameters

-m, --model_path  model file (required)
-p, --port port number (optional)
-h, --host host name (optional)

Output

INFO:     Started server process [1]
INFO:     Waiting for application startup.
INFO:     Application startup complete.
INFO:     Uvicorn running on http://localhost:5500 (Press CTRL+C to quit)

API

Once the model is deployed, you can use the following API to parse the text

POST /parse
{
    "text": "I want to book a flight from delhi to mumbai"
}

Output

{
    "text": "hello ruth!",
    "intent_ranking": [
        {
            "name": "greet",
            "accuracy": 0.9843385815620422
        },
        {
            "name": "how_are_you",
            "accuracy": 0.0017248070798814297
        },
        {
            "name": "voice_mail",
            "accuracy": 0.0008955258526839316
        },
    ],
    "intent": {
        "name": "greet",
        "accuracy": 0.9843385815620422
    }
}

Connect us with

Puretalk | LinkedInPuretalk | TwitterSanjaypranav



Devoloped by Puretalk@2022

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ruth-nlu-0.0.2.tar.gz (28.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ruth_nlu-0.0.2-py3-none-any.whl (38.9 kB view details)

Uploaded Python 3

File details

Details for the file ruth-nlu-0.0.2.tar.gz.

File metadata

  • Download URL: ruth-nlu-0.0.2.tar.gz
  • Upload date:
  • Size: 28.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for ruth-nlu-0.0.2.tar.gz
Algorithm Hash digest
SHA256 80e357025a2783a38f07db1c15ce829345e7c6ddf842e52968ef89604587e6f9
MD5 79691285d4839c406fa405eddc30bca6
BLAKE2b-256 e2c093597eaca262989fa1808b575fedb8507aa3764140ee57e347cccd47382c

See more details on using hashes here.

File details

Details for the file ruth_nlu-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: ruth_nlu-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 38.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for ruth_nlu-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 61727231e0805a9d92a5097aa525e25f032ad8970e2360f004070a295272b34f
MD5 0ed9f34a74297b259b331718f16248a6
BLAKE2b-256 05435211f323cc7c206a6f6e9265ea33566f66b4e5174aa67605e9274048c95f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page