alter nlu
1.0.0
AlterNLU é uma ferramenta de código aberto para construção de chatbot e assistente de IA. Dá ao desenvolvedor uma abordagem mínima para construir um assistente ou bot em ambiente de produção.
Ele converte linguagem natural em dados estruturados. Por exemplo:
Entrada:
{"text": "i want few covers for my mobile and pillows. and two bed sheet"}
Saída:
{
"intent": "search_product",
"confidence": "0.9999974",
"entities": [
{
"value": "bedsheet",
"category": "product_type"
},
{
"value": "Mobile cover",
"category": "product_type"
},
{
"value": "pillow covers",
"category": "product_type"
}
]
}
Depois que o AlterNLU estiver configurado, consulte Configuração, você pode experimentá-lo em 4 etapas simples.
Obtenha dados de treinamento. Recomendado: Use o console Kontiki
Execute o mecanismo AlterNLU.
python3 server.py
Treinamento de API Rest.
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
Consulta de análise da API Rest.
http://:5001/parse
Method : POST
Accept / Content_type : application/json
Data : {"text": ""}
O modelo mais recente será implantado automaticamente assim que o treinamento for concluído e estiver pronto para veiculação.
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