gpt4 book ai didi

path - Google Colab 上的 Fastai

转载 作者:行者123 更新时间:2023-12-02 03:03:10 24 4
gpt4 key购买 nike

两天前,我在 google colab 上使用 fastai 0.7.0 运行了我的模型。两天来我很忙,现在如果我尝试运行它,它会在执行该行时向我抛出一个错误*“来自 fastai.transforms import ’ .错误是 AttributeError:模块“torch”没有属性“float32”。 Image showing the error

最佳答案

以下内容应该可以帮助您在 Google Colab 上启动并运行 0.7.0 版本的 fast.ai(由本类(class)的 v2 使用):

!pip install -q "fastai==0.7.0" Pillow==4.1.1 torchtext==0.2.3
!apt-get -qq install -y libsm6 libxext6 && pip install -q -U opencv-python

from wheel.pep425tags import get_abbr_impl, get_impl_ver, get_abi_tag
platform = '{}{}-{}'.format(get_abbr_impl(), get_impl_ver(), get_abi_tag())
# !apt update -q
!apt install -y libsm6 libxext6

from os import path
accelerator = 'cu80' if path.exists('/opt/bin/nvidia-smi') else 'cpu'
torch_whl = f"http://download.pytorch.org/whl/{accelerator}/torch-0.3.0.post4-{platform}-linux_x86_64.whl"
!pip install -q {torch_whl} torchvision image

关于path - Google Colab 上的 Fastai,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52769255/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com