Cannot run interactive learning

I can run it before, however, it does not work now

python train_online.py

/Users/wisionlearning/anaconda3/lib/python3.6/importlib/_bootstrap.py:219: RuntimeWarning: compiletime version 3.5 of module ‘tensorflow.python.framework.fast_tensor_util’ does not match runtime version 3.6

return f(*args, **kwds)

/Users/wisionlearning/anaconda3/lib/python3.6/site-packages/h5py/init.py:36: FutureWarning: Conversion of the second argument of issubdtype from float to np.floating is deprecated. In future, it will be treated as np.float64 == np.dtype(float).type.

from ._conv import register_converters as _register_converters

Traceback (most recent call last):

File “train_online.py”, line 37, in <module>

run_concertbot_online(ConsoleInputChannel(), RegexInterpreter())

NameError: name ‘ConsoleInputChannel’ is not defined

You must have an old copy of the rasa_core repo, interactive learning is run like this: https://rasa.com/docs/core/interactive_learning/

@akelad thanks for replied. I tried the new commend as:

python -m rasa_core_sdk.endpoint --actions actions&

python -m rasa_core.run
–interactive -d models/current/dialogue
–stories-out data/stories.md
-u models/nlu/default

However, it stops like this: INFO:main:Starting action endpoint server…

DEBUG:pykwalify.compat:Using yaml library: /Users/wisionlearning/anaconda3/lib/python3.6/site-packages/ruamel/yaml/__init__.py

/Users/wisionlearning/anaconda3/lib/python3.6/importlib/_bootstrap.py:219: RuntimeWarning: compiletime version 3.5 of module 'tensorflow.python.framework.fast_tensor_util' does not match runtime version 3.6

return f(*args, **kwds)

/Users/wisionlearning/anaconda3/lib/python3.6/site-packages/h5py/__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`.

from ._conv import register_converters as _register_converters

INFO:apscheduler.scheduler:Scheduler started

DEBUG:apscheduler.scheduler:Looking for jobs to run

DEBUG:apscheduler.scheduler:No jobs; waiting until a job is added

ERROR:rasa_core_sdk.executor:Failed to register package 'actions'.

Traceback (most recent call last):

File "/Users/wisionlearning/anaconda3/lib/python3.6/site-packages/rasa_core_sdk/executor.py", line 144, in register_package

self._import_submodules(package)

File "/Users/wisionlearning/anaconda3/lib/python3.6/site-packages/rasa_core_sdk/executor.py", line 131, in _import_submodules

package = importlib.import_module(package)

File "/Users/wisionlearning/anaconda3/lib/python3.6/importlib/__init__.py", line 126, in import_module

return _bootstrap._gcd_import(name[level:], package, level)

File "&lt;frozen importlib._bootstrap&gt;", line 994, in _gcd_import

File "&lt;frozen importlib._bootstrap&gt;", line 971, in _find_and_load

File "&lt;frozen importlib._bootstrap&gt;", line 955, in _find_and_load_unlocked

File "&lt;frozen importlib._bootstrap&gt;", line 665, in _load_unlocked

File "&lt;frozen importlib._bootstrap_external&gt;", line 678, in exec_module

File "&lt;frozen importlib._bootstrap&gt;", line 219, in _call_with_frames_removed

File "/Users/wisionlearning/Documents/dd0721/actions.py", line 22, in &lt;module&gt;

from rasa_core.actions.forms import (

ModuleNotFoundError: No module named 'rasa_core.actions.forms'

INFO:__main__:Action endpoint is up and running. on ('0.0.0.0', 5055)

Then nothing happened.