-
Notifications
You must be signed in to change notification settings - Fork 4.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Max_history parameter should be carried over to the featurizer definition in TEDPolicy #5786
Comments
Exalate commented: chkoss commented: Is this rather an issue for @RasaHQ/production-squad or for research squad? |
Exalate commented: wochinge commented: @Ghostvv Does it actually make sense to do this when we use Genie's featurizer for everything? If this should still be done, then I think we can handle this + I think it's even good if we can get our feet wet with easier issues like this one. |
Exalate commented: Ghostvv commented: it still makes sense to do, we'll have |
Exalate commented: dakshvar22 commented: @wochinge IMO, the fix here does not solve the problem correctly but is more of a hack. It passes the specified |
Exalate commented: wochinge commented:
You mean using something like |
Exalate commented: dakshvar22 commented: Also, please let research team know once the issue is closed as there are[ bits of code in policies| rasa/rasa/core/policies/ted_policy.py Line 336 in 4b06e36
|
Exalate commented: stale[bot] commented: This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
➤ Maxime Verger commented: 💡 Heads up! We're moving issues to Jira: https://rasa-open-source.atlassian.net/browse/OSS. From now on, this Jira board is the place where you can browse (without an account) and create issues (you'll need a free Jira account for that). This GitHub issue has already been migrated to Jira and will be closed on January 9th, 2023. Do not forget to subscribe to the corresponding Jira issue! ➡️ More information in the forum: https://forum.rasa.com/t/migration-of-rasa-oss-issues-to-jira/56569. |
If you have your configuration defined like this, with the featurizer defined explicitly:
max_history: 5
featurizer:
state_featurizer:
The
max_history
parameter won't get carried over to theMaxHistoryTrackerFeaturizer
. This is kind of strange behaviour, because if you specify the policy like this:max_history: 5
The policy loads up
MaxHistoryTrackerFeaturizer
internally withmax_history: 5
.See forum post for source of confusion: https://forum.rasa.com/t/running-oom-in-tedpolicy-with-900-stories-1-10-0/28230/6
The text was updated successfully, but these errors were encountered: