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 "model/src/dataset.py", line 32,
validation data X, Y is overlapped with train data X, Y.
I think it should be modified as follow.
X, Y = X[0 : int(0.2 * length) , :], Y[0 : int(0.2 * length), :]
=> X, Y = X[int(0.8 * length) : length, :], Y[int(0.8 * length) : length, :]
The text was updated successfully, but these errors were encountered:
File "model/src/dataset.py", line 32,
validation data X, Y is overlapped with train data X, Y.
I think it should be modified as follow.
X, Y = X[0 : int(0.2 * length) , :], Y[0 : int(0.2 * length), :]
=> X, Y = X[int(0.8 * length) : length, :], Y[int(0.8 * length) : length, :]
The text was updated successfully, but these errors were encountered: