Training and Hyperparameters
Q1. A certain training pipeline for the classification of large images (1024 x 1024) uses the following Hyperparameters (8.46):
Initial learning rate 0.1 Weight decay 0.0001 Momentum 0.9 Batch size 1024
optimizer = optim.SGD(model.parameters(), lr=0.1, momentum=0.9,weight_decay=0.0001)
...
trainLoader = torch.utils.data.DataLoader(
datasets.LARGE('../data', train=True, download=True, 7 transform=transforms.Compose([
transforms.ToTensor(),
])),
batch_size=1024, shuffle=True)
In your opinion, what could possibly go wrong with this training pipeline?