Implementing the second generation ResNet with some tweaks presented in: https://arxiv.org/abs/1812.01187
ImageNet Dataset¶
I think we've been using MNIST for a little too long, to really test out the models going forward we're going to need to start using some bigger and harder datasets. Opting for another class, let's get Imagenet setup using FastAI's DataBlock API
Fundamental ResNet Modules¶
run = get_runner(get_learner(getResnet(18, 3, 10)), [ProgressCallback(), Stats([accuracy]), CudaCallback()])
run.fit(1, 1e-3)
!python notebook2script.py XResNet.ipynb