Vision-Transformer-ViT icon indicating copy to clipboard operation
Vision-Transformer-ViT copied to clipboard

Pytorch ViT for Image classification on the CIFAR10 dataset

Results 1 Vision-Transformer-ViT issues
Sort by recently updated
recently updated
newest added

There seems to be a problem in train.py. ``` total_steps = (len(trainloader) // args.batch_size + 1) * args.epoches ``` len(train_loader) is already divided by batch_size. Change it to `total_steps =...