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
Hello! Recently I noticed that in create_mnist_dataset.py, in line 24: all_digits = np.concatenate([mnist_data['X_train'], mnist_data['X_valid'], mnist_data['X_train']], axis=0)
the last part of the concatenation is train set as it was the first part. This might be a mistake. Right?
The text was updated successfully, but these errors were encountered:
Hello! Recently I noticed that in
create_mnist_dataset.py
, in line 24:all_digits = np.concatenate([mnist_data['X_train'], mnist_data['X_valid'], mnist_data['X_train']], axis=0)
the last part of the concatenation is train set as it was the first part. This might be a mistake. Right?
The text was updated successfully, but these errors were encountered: