-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
load_mnist_dataset
must include train_test_split
#101
Comments
Hey @SaashaJoshi ! You can solve the issue by either: Integrating train_test_split within the load_mnist_dataset function, returning both train and test datasets after splitting and normalizing. |
Hi @Rajesh-1234567, |
Hi @Rajesh-1234567, any questions or updates? |
hey @SaashaJoshi i just wanna know is this issue still open and which all files are included(how can i recreate the bug) |
Hi @sohamyedgaonkar, Sure go ahead. You can work on this since I haven't received any update on this yet. |
hey @SaashaJoshi which files do you want to integrate it in ? (so that i can directly change some lines and pull a request |
Hi, @sohamyedgaonkar Sorry for not looking at this message before. I would want you to integrate |
The
train_test_split
feature is not currently supported within theload_mnist_dataset
. The user will have to call the split before calling the wrapper function.It will be a better design to include the split within the function such that both the train and test datasets or
Dataloaders
are retrieved, split, and normalized with one function only. Another option could be to letload_mnist_dataset
take an argument that mentions if the user is loading the train or test dataloader. To achieve this, logic inside the wrapper function must be split into two sub-functions or conditionals.Ideas for better design are welcome.
The text was updated successfully, but these errors were encountered: