When I try to prepare my data set then I am getting a error message that group argument must be None for now
. Please help me out how to solve it.
I am doing it on jupyter, and thread class has some problems. It showed me this assert group is None:
AssertionError: group argument must be None for now
and DataPreparation.ipynb
is another file which has the Prepare class in it.
DataPreparation.Prepare(Xdata,Ydata,XdataT,YdataT)
import threading
class Prepare(threading.Thread):
def _init_(self, X, Y, XT, YT, accLabel=None):
threading.Thread._init_(self)
self.X=X
self.Y=Y
self.XT=XT
self.YT=YT
self.accLabel= accLabel
With this code, I am getting this error
AssertionError: group argument must be None for now