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
File "/media/eee/AA70975870972A59/Monthwise_experiments/april2019/wavenet-classifier-master/WaveNetClassifier.py", line 154, in fit
if self.task == 'classification':
AttributeError: 'WaveNetClassifier' object has no attribute 'task'
The text was updated successfully, but these errors were encountered:
He forgot to add 'task' to class attributes, it is currently only visible in the constructor (init). Add the following line to the init function:
self.task = task
I am getting the following error-
File "/media/eee/AA70975870972A59/Monthwise_experiments/april2019/wavenet-classifier-master/WaveNetClassifier.py", line 154, in fit
if self.task == 'classification':
AttributeError: 'WaveNetClassifier' object has no attribute 'task'
The text was updated successfully, but these errors were encountered: