【Python】AttributeError: module ‘torch.nn‘ has no attribute ‘HardSigmoid‘

发布时间:2024年01月11日

AttributeError: module ‘torch.nn’ has no attribute ‘HardSigmoid’ 这个错误是因为PyTorch的torch.nn模块中并没有HardSigmoid这个函数。是拼写的大小写问题,换成nn.Hardsigmoid()即可。

如下述代码出错。

import torch
import torch.nn as nn
hard_sigmoid = nn.HardSigmoid()
hard_sigmoid_inputs = torch.arange(-10, 10, 0.1)
hard_sigmoid_outputs = hard_sigmoid(hard_sigmoid_inputs)

在这里插入图片描述
修改后:

import torch
import torch.nn as nn
hard_sigmoid = nn.Hardsigmoid()
hard_sigmoid_inputs = torch.arange(-10, 10, 0.1)
hard_sigmoid_outputs = hard_sigmoid(hard_sigmoid_inputs)

在这里插入图片描述

文章来源:https://blog.csdn.net/qq_22734027/article/details/135498557
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。