Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mnist_conv/vit_mnist.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def train():
valid_ratio = 0.1
batch_size = 6
epochs = 10
cdtype = torch.complex64
cdtype = torch.float32

# Dataloading
train_valid_dataset = torchvision.datasets.MNIST(
Expand Down Expand Up @@ -462,4 +462,4 @@ def lightning_train(version: int):


if __name__ == "__main__":
lightning_train(0)
train()