Why rasa_core return None as action None while running interactive training?

As told by @JiteshGaikwad use interactive training instead of online training, While interactive training it return error

The bot wants to run 'utter_greet', correct?  Yes
ERROR:rasa_core.server:Can not access action 'None', as that name is not a registered action for this domain. Available actions are: 
	 - action_listen
	 - action_restart
	 - action_default_fallback
	 - action_deactivate_form
	 - utter_greet
	 - utter_goodbye
	 - utter_ask_need_more_bootcamp
	 - utter_denial_suggestion
	 - utter_bootcamp_suggestion
	 - utter_first_time_bootcamp

I think there’s been a bug report / issue filed yesterday already: Action is None when interactive training for version 0.12.0 · Issue #1320 · RasaHQ/rasa_core · GitHub

Should be fixed with the next merge.

Can You please, suggest a dependency requirements.txt file in stable version may be the old one. i don’t want to change the stack now from rasa to other

What I did for now is add this to my requirements:

git+git://github.com/RasaHQ/rasa_core.git@0.12.x#egg=rasa_core # lastest 0.12 commit

In this branch it’s been fixed already as you can read above. It’s just not been released yet as a package.

Oh i see. That mean i have to wait, for it.

If you comment out rasa_core in your requirements.txt for now and add the line above it will work already. So assuming you’re using 0.12 you can just have something like this in your requirements:

#rasa_core==0.12
git+git://github.com/RasaHQ/rasa_core.git@0.12.x#egg=rasa_core

This will build your rasa_core package from Github instead of using the PyPi package

Let me give a try, Thanks a lot