AttributeError: module ‘torch.nn‘ has no attribute ‘SiLU‘问题的解决办法

这篇具有很好参考价值的文章主要介绍了AttributeError: module ‘torch.nn‘ has no attribute ‘SiLU‘问题的解决办法。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

错误如下:  

AttributeError: module 'torch.nn' has no attribute 'SiLU'    

错误原因:

  这个问题的原因是这个版本的torch中的torch.nn函数表里面没有这个SiLU函数,需要更高版本的torch,在官方的文档中我们就可以查看这个版本里有没有包含这个模块。

解决方法:

官方文档1.1.0AttributeError: module ‘torch.nn‘ has no attribute ‘SiLU‘问题的解决办法,python,深度学习,人工智能

 

 红框选择 torch 版本,我的版本是1.1.0,搜索框里查函数 torch.nn。

ctrl+F 跳出搜索框搜索需要的函数查不到就是没有了,因为cuda版本的限制,所以只能放弃,电脑太垃圾了呜呜呜。

引用

AttributeError: module 'torch.nn' has no attribute 'LocalResponseNorm'问题的解决办法文章来源地址https://www.toymoban.com/news/detail-539320.html

到了这里,关于AttributeError: module ‘torch.nn‘ has no attribute ‘SiLU‘问题的解决办法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • python, torch. 遇到AttributeError: module ‘distutils‘ has no attribute ‘version‘ 报错。

    1.已经安装了pip install tensorboard 出现报错   在使用torch.utils.tensorboard时,出现错误:   出错语句 from torch.utils.tensorboard import SummaryWriter   AttributeError: module \\\'distutils\\\' has no attribute \\\'version\\\' 2.问题原因 当前tensorboard的版本和你安装的pytorch版本不匹配,tensorboard版本太      高,

    2024年02月11日
    浏览(41)
  • AttributeError: module ‘torch.distributed‘ has no attribute ‘_all_gather_base‘

    安装完apex后,调用的是时候出现如下错误: 注释下面的代码: 路径: apex/contrib/optimizers/distributed_fused_lamb.py apex/transformer/tensor_parallel/layers.py apex/transformer/tensor_parallel/utils.py apex/transformer/tensor_parallel/mappings.py 接下来添加环境变量。 执行命令 vi ~/.bashrc 打开文件,然后,按 i

    2024年02月12日
    浏览(57)
  • PyTorch AttributeError: module ‘torch._C‘ has no attribute ‘_cuda_setDevice‘

    这个问题说简单也很简单,大概率是你的pytorch安装了cpu版本...但现在默认安装下来就是cpu版本,可以在python中输入下面两行测试以下是不是不可用,如果显示False,那么就是不可用。 然后可以conda list看一下pytorch的版本,如果是cpu的版本,那么可以参考另一个写的很详细的博

    2024年02月13日
    浏览(40)
  • 关于 【AttributeError: module ‘collections‘ has no attribute ‘Mapping‘】出现的问题

           这个错误通常是由于在Python 3.9或更高版本中,从以上图片中看到的版本是Python3.11,`collections.Mapping`被删除所致。如果使用的是旧版本的代码,可能会导致此错误。解决此问题的方法是将代码中的`Mapping`替换为`abc.Mapping`。 例如,将以下代码:   替换为: 这将导入`

    2024年02月11日
    浏览(44)
  • 解决 AttributeError: module ‘tensorflow‘ has no attribute ‘contrib‘ 等类似的问题

    使用tensorflow2.x版本的时候,使用调用tensorflow1.x函数的代码时,常常会出现module ‘tensorflow’ has no attribute ‘contrib’这样的问题,这是由于tensorflow2.x废弃了很多tensorflow1.x API接口,本文针对常见的几种错误来使tf2.0不降版本也能运行代码。 1、报错AttributeError: module ‘tensorflow’

    2024年02月02日
    浏览(42)
  • 解决 AttributeError: module ‘numpy‘ has no attribute ‘int‘ 训练yolo时的问题

    在运行yolov5的train.py出现这个报错结果。 看其他博主说的是因为库版本不对应,需要更换python或numpy版本; 原因:numpy.int在NumPy 1.20中已弃用,在NumPy 1.24中已删除。 解决方式:将numpy.int更改为numpy.int_,int。 本人一开始试了上述方法,报出了别的错,继续修改,又返回了这个

    2024年02月11日
    浏览(40)
  • 【AI 问题集】AttributeError: module ‘backend_interagg‘ has no attribute ‘FigureCanvas‘

    目录 1、问题展示 2.问题原因 3.问题解决方案 4、修改代码如下 4.1 修改前 4.2修改后 5、代码执行结果 从问题中可以看到 :module  是设置成 backend_interagg 即 backend  是 agg  从源码中,我们可以看到,matplotlib.pylot 的默认 backend 是设置成agg的 源码 修改backend 方案,由于是通过 ma

    2024年04月13日
    浏览(61)
  • PyCharm中解决Matplotlib绘图时AttributeError: module ‘backend_interagg‘ has no attribute ‘FigureCanvas‘问题

    问题描述: 利用PyCharm中Matplotlib绘图时,出现AttributeError: module ‘backend_interagg’ has no attribute \\\'FigureCanvas’错误。 问题原因及解决方法: matplotlib版本过高,需要降低matplotlib版本。 注:现有matplotlib版本为3.6.0,将其降低为3.5.0 至此,问题得以解决!

    2024年02月06日
    浏览(55)
  • 解决AttributeError: module ‘keras‘ has no attribute ……

    在成功解决AttributeError: module ‘keras‘ has no attribute ‘utils‘_new1998的博客-CSDN博客这篇博客中博主有提到如何解决这一问题,其中就是要把 更改成为 而博主不知道其中原因,原因其实是在TensorFlow 2.4及以上版本中, import keras 的方式已经被弃用,取而代之的是 import tensorflow.k

    2024年02月11日
    浏览(45)
  • 解决paddle.fluid与python版本不匹配的问题:AttributeError: module ‘paddle.fluid‘ has no attribute ‘xxx‘

    今天跑paddle里的代码,发现paddle里可以跑,但放到pycharm下面跑不了了,捣鼓了一下午,原来是包版本的问题,希望能对读者有一点点用。 我原本所用的环境是python3.11,它的paddlepaddle包的版本是2.5,然后我去paddle官网上看我要用的代码的配置环境(我在官网上可以跑通),打

    2024年02月03日
    浏览(47)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包