dhruvramani / C2AE-Multilabel-Classification

Tensorflow implementation for the paper 'Learning Deep Latent Spaces for Multi-Label Classfications' in AAAI 2017
101 stars 24 forks source link

Validation data index is strange #7

Open ghost opened 6 years ago

ghost commented 6 years ago

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, :]

greeness commented 5 years ago

I agree that the validation data should not overlap with training data.