-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5184 from RasaHQ/bug-multi-intent
Fix bug with multi-intents
- Loading branch information
Showing
6 changed files
with
88 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Fix problem with multi-intents. | ||
Training with multi-intents using the ``CountVectorsFeaturizer`` together with ``EmbeddingIntentClassifier`` is | ||
working again. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
## intent:affirm | ||
- yes | ||
- yep | ||
- yeah | ||
- indeed | ||
- that's right | ||
- ok | ||
- great | ||
- right, thank you | ||
- correct | ||
- great choice | ||
- sounds really good | ||
|
||
## intent:goodbye | ||
- bye | ||
- goodbye | ||
- good bye | ||
- stop | ||
- end | ||
- farewell | ||
- Bye bye | ||
- have a good one | ||
|
||
## intent:greet | ||
- hey | ||
- howdy | ||
- hey there | ||
- hello | ||
- hi | ||
- good morning | ||
- good evening | ||
- dear sir | ||
|
||
## intent:chitchat+ask_name | ||
- What's your name? | ||
- What can I call you? | ||
|
||
## intent:chitchat+ask_weather | ||
- How's the weather? | ||
- Is it too hot outside? | ||
|
||
## intent:restaurant_search | ||
- i'm looking for a place to eat | ||
- I want to grab lunch | ||
- I am searching for a dinner spot | ||
- i'm looking for a place in the [north](location) of town | ||
- show me [chinese](cuisine) restaurants | ||
- show me [chines](cuisine:chinese) restaurants in the [north](location) | ||
- show me a [mexican](cuisine) place in the [centre](location) | ||
- i am looking for an [indian](cuisine) spot called olaolaolaolaolaola | ||
- search for restaurants | ||
- anywhere in the [west](location) | ||
- anywhere near [18328](location) | ||
- I am looking for [asian fusion](cuisine) food | ||
- I am looking a restaurant in [29432](location) | ||
- I am looking for [mexican indian fusion](cuisine) | ||
- [central](location) [indian](cuisine) restaurant | ||
|
||
## synonym:chinese | ||
+ Chines | ||
* Chinese | ||
|
||
## synonym:vegetarian | ||
- vegg | ||
- veggie | ||
|
||
## regex:zipcode | ||
- [0-9]{5} | ||
|
||
## regex:greet | ||
- hey[^\s]* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters