I am getting the following warning. It lists all of my responses.
UserWarning: The following duplicated responses have been found across multiple domain files: utter_mood_great, utter_mood_unhappy, utter_affirm, utter_bot_challenge, utter_deny, utter_did_that_help, utter_goodbye, utter_greet, utter_help
I split up my data so each of the same intents, responses, stories for that intent, etc, is in itβs own file. So I have a file for mood_great that contains its intents, responses, etc. I assume this is the problem, but I do not have the responses duplicated in any file and the documentation makes me believe this should be fine. This method of organization makes the most sense to allow my team to contribute. Each response is only defined once.
Responses have to be in the domain file. Discussed here. I suspect you have them in both your domain and your training data file based on the error message.
Ah, that makes sense then. I misunderstood and thought each of the other files were also considered βdomainβ files. Thanks for the clarification. Iβll fix that and try again. Thanks!
In general, you can often ignore various βwarningsβ. If they halted operation, or corrupted results, theyβd appear as more serious errors or exceptions-that-must-be-handled for execution to proceed. Specifically here, both warnings are actually about βdeprecationβ of some method. That typically means a methodβs use is discouraged in favor of some newer, more-recommended approach β but still works for now (and possibly for quite a while longer). official dunkinrunsonyou