-
Notifications
You must be signed in to change notification settings - Fork 15
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
Learners should not hold references to widgets #9
Comments
Any idea when this will be solved? |
Sadly, no. This add-on has been developed as a GSoC 2016 project but has not been maintained since. If you want, you can take a look at the code base and try to submit a pull request to fix the problem. The simplest fix would be to constructs learners in widgets without callbacks, avoiding the problem alltogether. |
Thanks Anze.
I will try to work first with the baselines.
And maybe get metrics like the R2 and RMSE from a script.
Best regards,
Bernardo
Enviado do Outlook<http://aka.ms/weboutlook>
…________________________________
De: Anže Starič <[email protected]>
Enviado: quinta-feira, 19 de abril de 2018 02:21
Para: biolab/orange3-recommendation
Cc: bernardofn; Comment
Assunto: Re: [biolab/orange3-recommendation] Learners should not hold references to widgets (#9)
Sadly, no.
This add-on has been developed as a GSoC 2016 project but has not been maintained since. If you want, you can take a look at the code base and try to submit a pull request to fix the problem.
The simplest fix would be to constructs learners in widgets without callbacks, avoiding the problem alltogether.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#9 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AcEu4bCEcls0dpX1FpjqUOwOccfa5wqGks5tqB7NgaJpZM4QpcVZ>.
|
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When learners are used with Tests & Score widget, they get deep_copied, which is implemented in python as pickling and unpickling. If a learner holds a reference to a widget, this currently results in a crash, as widgets cannot be pickled. But even if they could be, this would result in an unexpected behaviour where we would end up with two instances of the same widget, but only one node on a canvas.
See biolab/orange3#2793
The text was updated successfully, but these errors were encountered: