两天前,我在Google colab上使用fastai 0.7.0运行了我的模型。 有两天我很忙,现在如果我要运行它,则会在执行该行时抛出一个错误 *“ from fastai.transforms import’。 错误为AttributeError:模块“火炬”没有属性“ float32”。
答案 0 :(得分:3)
以下内容将使您在Google Colab上使用fast.ai的0.7.0版本(本课程的v2使用)并运行它:
<th class="ui right aligned">Thing</th>
答案 1 :(得分:0)
最后找到了问题所在,存在兼容性问题。 pytorch版本为0.3.1,但 torchtext 版本与此版本不兼容,必须为“ torchtext == 0.2.3。”
答案 2 :(得分:0)
添加以下代码。我真的不知道哪个依赖项称为此。但是有效
!pip install -q pandas==0.23.4
!pip install -q joblib==0.12.5
!pip install -q plotly==3.0.0