kaggle旧版fastai程序使用方法

kaggle上fastai教程示例程序由于fastai升级,执行时会遇到“ModuleNotFoundError: No module named 'fastai.structured‘,’'fastai.conv_learner"

只需在notebook 开始单元格输入以下代码并执行,即可自动安装fastai==0.7.0与相关包。包错误消失。kaggle上现有的大部分fastai相关代码可以正确执行了。

!pip install git+https://github.com/fastai/fastai@2e1ccb58121dc648751e2109fc0fbf6925aa8887
!apt update && apt install -y libsm6 libxext6

linux服务器上运行fastai程序问题参见 https://blog.csdn.net/lwhsyit/article/details/84964786

你可能感兴趣的:(python,机器学习,数据挖掘)