From 2b77fd7389d927c67b72d1ebade57599f9bf4cc2 Mon Sep 17 00:00:00 2001 From: Tobias Wochinger Date: Wed, 24 Jul 2019 19:07:35 +0200 Subject: [PATCH 1/2] use domain in update --- rasa/core/processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rasa/core/processor.py b/rasa/core/processor.py index 1b85cfed5ac0..d98ecd4191f3 100644 --- a/rasa/core/processor.py +++ b/rasa/core/processor.py @@ -522,7 +522,7 @@ def _log_action_on_tracker(self, tracker, action_name, events, policy, confidenc # the timestamp would indicate a time before the time # of the action executed e.timestamp = time.time() - tracker.update(e) + tracker.update(e, self.domain) def _get_tracker(self, sender_id: Text) -> Optional[DialogueStateTracker]: sender_id = sender_id or UserMessage.DEFAULT_SENDER_ID From 0a60a86115d8e622e9d14a368c8358734c954655 Mon Sep 17 00:00:00 2001 From: Tobias Wochinger Date: Wed, 24 Jul 2019 19:09:20 +0200 Subject: [PATCH 2/2] update changelog --- CHANGELOG.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f219c13016e8..ee03303e814b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -30,7 +30,7 @@ Fixed - added timeout to terminal input channel to avoid freezing input in case of server errors - ``rasa train core`` in comparison mode stores the model files compressed (``tar.gz`` files) - +- slot setting in interactive learning with the TwoStageFallbackPolicy [1.1.7] - 2019-07-18 ^^^^^^^^^^^^^^^^^^^^