-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rasa test/rasa test core can't find any intent in domain #8135
Comments
Hi @subercui, thanks for opening an issue for this. In order to understand the problem here, would it be possible for you to share:
Was there any warning when you ran |
Hi @m-vdb I encounter the same issue even with story: version: "2.0"
stories:
- story: happy path
steps:
- intent: greet
- action: utter_greet
- intent: mood_great
- action: utter_happy
- story: sad path 1
steps:
- intent: greet
- action: utter_greet
- intent: mood_unhappy
- action: utter_cheer_up
- action: utter_did_that_help
- intent: affirm
- action: utter_happy
- story: sad path 2
steps:
- intent: greet
- action: utter_greet
- intent: mood_unhappy
- action: utter_cheer_up
- action: utter_did_that_help
- intent: deny
- action: utter_goodbye
warnings:
|
Hello, We also have this issue when testing our stories with a rasa test core --stories <stories_folder>, plus an issue at the end of the test :
The command used was : This happens with the 2.4.3 version of rasa. |
thanks for following-up and adding more details to the issue 👍🏻 we'll take care of prioritising it! |
how did you solved this error? |
It's not solved yet, we have a pull request under review at the moment 😃 |
Also encountering this when the domain contents are in the |
Facing the same issue. |
Same issue for command
😢 |
thanks for the heads up folks. I don't think that the fix is released at the moment. It should be out next week with the Rasa 2.7. Stay tuned! |
Has this been solved? I am having this issue with both "data validate" and "test nlu --cross-validation" When I use "-d domain_location" for validation it works perfectly, but with no such flag for cross-validation I'm not sure what to do. I am using multiple domain files and tried consolidation them all into 1 file, and I am still getting the "missing intent" errors for both. |
same here, many invalid errors |
Hi folks 👋🏻 Would it be possible for you to ask your question on the forum (if not already done)? It'd be super helpful if you could share more details about the errors you're encountering there, that way we can see if it's a usage error or an actual bug. Thanks! |
I've encountered this problem as well and fixed it. Try checking your nly.yml and domain.yml if there are any repetition of intents included. Hope this helps. |
I encountered the same problem and the problem was solved by changing config.yml file policies.
|
tried didn't work |
I am facing issue of I have well defined stories as follow #jversion: "3.1" stories:
please suggest solution |
Hi RasaHQ/rasa
Comment on all the stories and check if the story: greet and goodbye is
working.
if working then it could be an issue with the indentation or missing
entities, slots, checkpoint.
Regards,
Zulfiquar Ali
…On Tue, Feb 28, 2023 at 8:24 PM Kunal Tanpure ***@***.***> wrote:
I am facing issue of
UserWarning: Issue found in 'data\stories.yml': The story has no steps. It
will be skipped.
I have well defined stories as follow
#jversion: "3.1"
version: "3.1"
stories:
-
story: greet and goodbye
steps:
- intent: greet
- action: utter_greet
- intent: goodbye
- action: utter_goodbye
-
story: Story 1
steps:
- user: क्या आज दिल्ली में बारिश होगी?
intent: inform_weather
entities:
- U-location: दिल्ली
- U-weather_type: बारिश
- action: utter_inform_weather
-
story: inform weather
-
steps:
- intent: inform_weather
entities:
- U-weather_type: बारिश
- slot_was_set:
- U-weather_type: बारिश
- action: utter_inform_weather
-
story: inform weather
-
steps:
- intent: inform_weather
entities:
- U-weather_type: बारिश
- U-location: दिल्ली
- slot_was_set:
- U-weather_type: बारिश
- U-location: दिल्ली
- action: utter_inform_weather
please suggest solution
—
Reply to this email directly, view it on GitHub
<#8135 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AVBJLJEM7AASXFIEHIU4DELWZYGQPANCNFSM4YYBD2HA>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Rasa version:
2.3.4
Rasa SDK version (if used & relevant):
2.3.1
Rasa X version (if used & relevant):
Python version:
3.8.8
Operating system (windows, osx, ...):
Linux-4.4.0-186-generic-x86_64-with-glibc2.10
Issue:
This is annoying. There is no error in training and testing manually, but
rasa test/rasa test core
can't find any intent in domain.Error (including full traceback):
Found intent 'xxxx' in stories which is not part of the domain.
Command or request that led to error:
Content of configuration file (config.yml) (if relevant):
Content of domain file (domain.yml) (if relevant):
The text was updated successfully, but these errors were encountered: