I'm new to neural network, I'm using fast.ai to train a Cifar10 dataset using residual neural network.
After running learner.lr_find()
, I tried plotting it using learner.recorder.plot()
,
But then it raised an Attribute error: 'wideResNet' object has no attribute 'plot'
wideResNet = myResidualNeuralNetworkFunction
Please, how do I solve this issue? Thanks