alter nlu
1.0.0
AlterNLU ist ein Open-Source-Tool zum Erstellen von Chatbots und KI-Assistenten. Es bietet dem Entwickler einen minimalen Ansatz zum Erstellen eines Assistenten oder Bots in der Produktionsumgebung.
Es wandelt natürliche Sprache in strukturierte Daten um. Z.B:
Eingang:
{"text": "i want few covers for my mobile and pillows. and two bed sheet"}
Ausgabe:
{
"intent": "search_product",
"confidence": "0.9999974",
"entities": [
{
"value": "bedsheet",
"category": "product_type"
},
{
"value": "Mobile cover",
"category": "product_type"
},
{
"value": "pillow covers",
"category": "product_type"
}
]
}
Sobald AlterNLU eingerichtet ist (siehe Einrichten), können Sie es in 4 einfachen Schritten ausprobieren.
Holen Sie sich Trainingsdaten. Empfohlen: Verwenden Sie die Kontiki-Konsole
Führen Sie die AlterNLU-Engine aus.
python3 server.py
Rest-API-Schulung.
http://:5001/train
Method : POST
Accept / Content_type : application/json
Data : training_data file from Kontiki Platform.
curl -H "Content-Type: application/json" --data @ http://localhost:5001/train
Rest-API-Analyseabfrage.
http://:5001/parse
Method : POST
Accept / Content_type : application/json
Data : {"text": ""}
Das neueste Modell wird automatisch bereitgestellt, sobald das Training abgeschlossen ist und einsatzbereit ist.
apt-get update
apt-get install python3.6
apt-get install python3-pip
pip3 install virtualenv
virtualenv nlu
cd nlu
source bin/activate
git clone https://github.com/anuragmishra1/alter-nlu.git
cd alter-nlu
python3 setup.py install
python3 server.py