Implemented Net based AI

This commit is contained in:
Clemens Dautermann 2019-12-26 23:02:08 +01:00
parent afb48a38a1
commit 9350b1e4ba
15 changed files with 68 additions and 11 deletions

View file

@ -14,7 +14,7 @@ test = datasets.MNIST('./datasets', train=False, download=True,
transforms.ToTensor()
]))
trainset = torch.utils.data.DataLoader(train, batch_size=10, shuffle=True)
trainset = torch.utils.data.DataLoader(train, batch_size=15, shuffle=True)
testset = torch.utils.data.DataLoader(test, batch_size=10, shuffle=False)