AttributeError: 'NoneType' object has no attribute 'index' using RASA

AttributeError: 'NoneType' object has no attribute 'index' using RASA

我尝试使用 RASA 构建一个简单的男孩,但我收到此错误消息,

Bot loaded. Type a message and press enter (use '/stop' to exit):
sad
Exception in thread Thread-2:
Traceback (most recent call last):
  File "C:\python36\lib\threading.py", line 916, in _bootstrap_inner
    self.run()
  File "C:\python36\lib\threading.py", line 864, in run
    self._target(*self._args, **self._kwargs)
  File "C:\python36\lib\site-packages\rasa_core\channels\channel.py", line 291, in on_message_wrapper
    on_new_message(message)
  File "C:\python36\lib\site-packages\rasa_core\agent.py", line 316, in handle_message
    return processor.handle_message(message)
  File "C:\python36\lib\site-packages\rasa_core\processor.py", line 86, in handle_message
    self._predict_and_execute_next_action(message, tracker)
  File "C:\python36\lib\site-packages\rasa_core\processor.py", line 305, in _predict_and_execute_next_action
    action, policy, confidence = self.predict_next_action(tracker)
  File "C:\python36\lib\site-packages\rasa_core\processor.py", line 168, in predict_next_action
    probabilities, policy = self._get_next_action_probabilities(tracker)
  File "C:\python36\lib\site-packages\rasa_core\processor.py", line 478, in _get_next_action_probabilities
    tracker, self.domain)
  File "C:\python36\lib\site-packages\rasa_core\policies\ensemble.py", line 288, in probabilities_using_best_policy
    if (result.index(max_confidence) ==
AttributeError: 'NoneType' object has no attribute 'index'

我使用:

PYTHON  3.6.0
RASA CORE   0.12.0
RASA NLU    0.13.0
TENSORFLOW  1.10.0
PROTOBUF    3.6.0

谁能解决这个问题? 谢谢

您似乎还没有训练对话模型或没有正确创建策略。尝试使用以下命令再次训练您的对话模块

python -m rasa_core.train -d domain.yml -s stories.md -o models/dialogue

如果能显示以下目录的内容就好了:

./models/dialogue

它应该如下所示。

对于 rasa_core 版本 0.12,您必须提供 policy configuration for the training. You can e.g. a default template for that from Github。 例如。将以下代码片段保存在名为 default_config.yml:

的文件中
policies:
  - name: KerasPolicy
    epochs: 100
    max_history: 5
  - name: FallbackPolicy
    fallback_action_name: 'action_default_fallback'
  - name: MemoizationPolicy
    max_history: 5
  - name: FormPolicy

然后用以下方法训练 Rasa Core:

python -m rasa_core.train \
  -d <path to domain file> \
  -s <path to stories> \
  -c default_config.yml \
  -o models/dialogue

然后 运行 训练模型:

python -m rasa_core.run -d models/dialogue