Questions tagged [rasa-nlu]

rasa NLU is an open source tool for intent classification and entity extraction. Use this tag when referencing rasa stack, particularly their Natural Language Understanding modules.

660 questions
0
votes
4 answers

Rasa NLU installation issue

I had rasa nlu version 0.12.3 installed. I had some issues and uninstalled rasa nlu and other requirements using pip uninstall rasa_nlu pip uninstall -r requirements.txt Now when I am installing rasa nlu again using pip install rasa_nlu I see below…
nad
  • 2,640
  • 11
  • 55
  • 96
0
votes
1 answer

Retraining and updating an existing Rasa NLU model

I've been using Rasa NLU for a project which involves making sense of structured text. My use case requires me to keep updating my training set by adding new examples of text corpus entities. However, this means that I have to keep retraining my…
Manas Chaturvedi
  • 5,210
  • 18
  • 52
  • 104
0
votes
1 answer

Training same model with different training data in RASA NLU

I have created a chatbot and added the training data(some hundred's) and trained it till now it's well and good. But when i added more training data some 50,000 and even more. Now, I'm stuck here RASA NLU unable to train that much amount of training…
0
votes
1 answer

How can I get access to the script of a Python package in Ubuntu?

I am using Ubuntu for a Python project and want to get access to the script of rasa_nlu.evaluate so that I can better understand it and call the function within it with the appropriate arguments. I am using the 0.11.5 versio of rasa_nlu. I tried to…
Vincent
  • 151
  • 3
  • 12
0
votes
1 answer

Cannot train new model using Rasa NLU/Sklearn

I am building a middleware between my application and Rasa NLU server that can simplify different tasks like creating a model or updating ... I mainly aim to build a model and update it each time using a function that adds one example to the old…
Neji Soltani
  • 1,522
  • 4
  • 22
  • 41
0
votes
1 answer

Python 2.7 successfully imports tensorflow, but python 3.6.4 throws error while importing tensorflow

I am able to import tensorflow using python 2.7. But I am getting the following error while trying to import tensorflow using python 3.6.4: Traceback (most recent call last): File…
Fayas B.
  • 25
  • 7
0
votes
1 answer

apixu.client.ApixuException: Error code 1003: "Parameter q is missing."

I do not understand the error I got this time, I'm running the apixu.com API on rasa_core when running even issued this kind of error, can you help me to explain it? ERROR:rasa_core.processor:Encountered an exception while running action…
0
votes
2 answers

I can´t find the load_data function from rasa_nlu.training_data

Rasa NLU version (e.g. 0.7.3): rasa-nlu-0.11.3 Used backend / pipeline : spacy_sklearn Operating system : Windows 10 Issue: I am trying to follow the sample code for training as stated in the rasa website. from rasa_nlu.training_data import…
0
votes
1 answer

Rasa Escaping in Windows - Error in Documentation

I'm doing the tutorial from official rasa page (http://rasa-nlu.readthedocs.io/en/latest/tutorial.html). Now i want to test my model. I have this command: curl -X POST "localhost:5000/parse" -d "{/"q/":/"I am looking for Mexican food/"}" | python -m…
MAESTRO_DE
  • 433
  • 2
  • 17
0
votes
0 answers

Failing to connect to localhost while using curl and rasa nlu

I have finally gotten to almost the very end of this [rasa nlu tutorial][1] and everything runs fine with the exception of me passing a new message to be scored: I have tried this: curl -XPOST localhost:5000/train?project=model_20180304-191830 -d…
Student
  • 1,197
  • 4
  • 22
  • 39
0
votes
1 answer

Rasa nlu tutorial doesn't work

Rasa NLU version (0.11.3): Used backend / pipeline (spacy_sklearn): Operating system (osx): Issue: I tried to follow the tutorial: https://rasahq.github.io/rasa_nlu/tutorial.html?highlight=project#, Installed spaCy + sklearn Created…
Gary Ng
  • 413
  • 8
  • 16
0
votes
2 answers

How to create training data for RASA NLU through program nodejs

How to create training data through program for RASA NLU? Actually I am developing an application using MEAN stack, this application prepares the data that needs to be trained with RASA NLU. But I don't know how to pass this info from my nodejs…
Krishna Kiriti
  • 83
  • 2
  • 10
0
votes
1 answer

How to make a custom attribute in C# for mapping intents in Microsoft Bot Framework?

The [LuisIntent("")] attribute uses the ILuisService to query the LUIS based on LUISModel attributes' value, then finds out the top scoring intent and matches the IntentHandler Delegate in the overridden MessageRecievedAsync method and loads…
Kunal Mukherjee
  • 5,775
  • 3
  • 25
  • 53
0
votes
2 answers

How to configure the port to be exposed for dockerized Rasa-NLU

I'm new with Rasa and docker. My attempt to dockerize Rasa-NLU consists of the below steps: Instructions were referred from here Did a Git clone of latest Rasa-NLU Copied Dockerfile_full (from within /docker) to the root directory Changed the port…
Sailesh
  • 115
  • 2
  • 10
0
votes
3 answers

Follow up and intents in Rasa NLU

Can anyone clarify how to configure follow up intents or prompts like in api.ai ? I am trying to create an application similar to api.ai using rasa nad spacy as backend.