I used
pip install fastai --upgrade
and mistakenly upgraded to fast.ai v2 2019 dl2 is now breaking. How can I revert back to fast.ai 1.0.6
I used
pip install fastai --upgrade
and mistakenly upgraded to fast.ai v2 2019 dl2 is now breaking. How can I revert back to fast.ai 1.0.6
I followed the following steps and it worked
pip uninstall fastai
pip install 'fastai<2.0.0'
Another way is to specify the version with ==1.0.6
@muellerzr I tried with ==1.0.6 but it was giving me some dependency error with torchvision-nightly
pip install fastai==1.0.61
worked for me