It seems like `self.plattlr.predict_proba` Is called (line 63, within self.predict_proba) before self.plattlr is set on line 78. This causes models like a generic SVC to fail: `AttributeError: 'SelfLearningModel' object has no attribute 'plattlr'`
It seems like
self.plattlr.predict_probaIs called (line 63, within self.predict_proba) before self.plattlr is set on line 78.
This causes models like a generic SVC to fail:
AttributeError: 'SelfLearningModel' object has no attribute 'plattlr'