You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to dump the DedupeDisagreementLearner object for fast re-loading if the console_label step throws an exception.
The pickle dump of DedupeDisagreementLearner can get quite big. My goal is to store the parts of it that are slow to calculate. Any suggestions?
As a part of the dump, I am including the following objects.
However I still get an error when loading the dump and trying to run the console_label:
{'Site name': 'el hogar del nino fcch-blanca alatorre', 'Address': '5738 s kenneth ave', 'Zip': '60623', 'Phone': '5812872'}\
is not known to to the active learner. Make sure all `labeled_pairs` are in the data or training file of the `prepare_training()` method
It seems some other state other than self.data_model and self.classifier and self.active_learner needs to be dumped too. Am I correct?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello,
Thanks for the great library.
I want to dump the
DedupeDisagreementLearner
object for fast re-loading if theconsole_label
step throws an exception.The pickle dump of
DedupeDisagreementLearner
can get quite big. My goal is to store the parts of it that are slow to calculate. Any suggestions?As a part of the dump, I am including the following objects.
However I still get an error when loading the dump and trying to run the
console_label
:It seems some other state other than
self.data_model
andself.classifier
andself.active_learner
needs to be dumped too. Am I correct?Thank you
Beta Was this translation helpful? Give feedback.
All reactions