我是靠谱客的博主 务实外套,最近开发中收集的这篇文章主要介绍【软件安装】pytorch 出现 ‘torch.nn‘ has no attribute ‘MultiheadAttention‘ 错误解决方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在使用新版本pytorch 执行老版本代码时,或使用 torchkeras 时,有事会出现如下错误:
AttributeError: module 'torch.nn' has no attribute 'MultiheadAttention'

解决方案:
这是由于版本不匹配导致的,一个快速的解决方法是安装另一个包:

  • pip install torch_multi_head_attention
  • from torch_multi_head_attention import MultiHeadAttention
  • 使用 MultiHeadAttention 代替 torch.nn.MultiheadAttention

最后

以上就是务实外套为你收集整理的【软件安装】pytorch 出现 ‘torch.nn‘ has no attribute ‘MultiheadAttention‘ 错误解决方法的全部内容,希望文章能够帮你解决【软件安装】pytorch 出现 ‘torch.nn‘ has no attribute ‘MultiheadAttention‘ 错误解决方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(79)

评论列表共有 0 条评论

立即
投稿
返回
顶部