A neural network intent parser
Project description
Padatious
An efficient and agile neural network intent parser, implemented in pure numpy with a FANN-compatible model format.
This repository contains a OVOS pipeline plugin and bundles a fork of the original padatious from the defunct MycroftAI
Features
- Intents are easy to create
- Requires a relatively small amount of data
- Intents run independent of each other
- Easily extract entities (ie. Find the nearest gas station ->
place: gas station) - Fast training with a modular approach to neural networks
Installing
Padatious is pure Python — no native packages or compilers required.
Install via pip3:
pip3 install padatious
Padatious also works in Python 2 if you are unable to upgrade.
Direct Usage
Here's a simple example of how to use Padatious:
from ovos_padatious import IntentContainer
container = IntentContainer('intent_cache')
container.add_intent('hello', ['Hi there!', 'Hello.'])
container.add_intent('goodbye', ['See you!', 'Goodbye!'])
container.add_intent('search', ['Search for {query} (using|on) {engine}.'])
container.train()
print(container.calc_intent('Hello there!'))
print(container.calc_intent('Search for cats on CatTube.'))
container.remove_intent('goodbye')
License
Licensed under the Apache 2 license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ovos_padatious-2.0.0a1.tar.gz.
File metadata
- Download URL: ovos_padatious-2.0.0a1.tar.gz
- Upload date:
- Size: 54.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a324fc39d1ede79a5d1740600a4c727fe5c8d9b1a39444493dbb4fce5f53861
|
|
| MD5 |
e353cc147937e6f7cd63a1b0657ed10d
|
|
| BLAKE2b-256 |
acf18f2ccd7a19feb702338a42a7f5fa839a595f2610fc17a7935ae68c411d4b
|
File details
Details for the file ovos_padatious-2.0.0a1-py3-none-any.whl.
File metadata
- Download URL: ovos_padatious-2.0.0a1-py3-none-any.whl
- Upload date:
- Size: 52.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f82646e92182a276799b320445a55995a1bc58aa0d281144a2311d3464a1eec5
|
|
| MD5 |
73fcbb1c98ed39c8ae208f011d56a28e
|
|
| BLAKE2b-256 |
c2f192ece5f034f1b740dbfcb928f1a87e2267b518032336f40f28b66f38d2a7
|