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 somehow sometimes end up with pipe._logger == None. Haven't quite figured out when exactly that happens. And it only throws after training once I try to pipe.predict with
AttributeError: 'NoneType' object has no attribute 'info'
at self.logger.info. To proceed, I tried to reassign pipe._logger which didn't work at first until propagating that reassignment to all of pipe.(autofeaturizer|cleaner|reducer|learner).
Since you're already using @property for the logger, how about adding a setter to facilitate reassigning the logger?
The text was updated successfully, but these errors were encountered:
When assigning custom loggers during instantiation of a
MatPipe
, i.e.I somehow sometimes end up with
pipe._logger == None
. Haven't quite figured out when exactly that happens. And it only throws after training once I try topipe.predict
withat
self.logger.info
. To proceed, I tried to reassignpipe._logger
which didn't work at first until propagating that reassignment to all ofpipe.(autofeaturizer|cleaner|reducer|learner)
.Since you're already using
@property
for the logger, how about adding a setter to facilitate reassigning the logger?The text was updated successfully, but these errors were encountered: