我是神经网络的新手,我用fast.ai训练Cifar10数据集,使用残差神经网络。运行learner.lr_find()之后,我尝试使用learner.recorder.plot()绘制它,但随后它引发了一个Attribute error: 'wideResNet' object has no attribute 'plot'
wideResNet = myResidualNeuralNetworkFunction拜托,我该怎么解决这个问题?谢谢
发布于 2022-08-03 22:09:46
FastAI V2没有.plot()方法,当您调用learner.lr_find()时,您将根据建议的学习速率自动获得绘图。尽管如此,如果您仍然需要故意使用learn.recorder.plot_lr_find()来代替这个情节。请参阅docs 这里中的更多内容
https://stackoverflow.com/questions/70308915
复制相似问题