gpt4 book ai didi

pytorch - 为什么在 pytorch 的 F.sigmoid 中没有 inplace 标志?

转载 作者:行者123 更新时间:2023-12-04 01:45:06 24 4
gpt4 key购买 nike

reluleakyrelu 都有inplace 标记,为什么sigmoid 没有?

Signature: F.sigmoid(input)

F.relu(input, inplace=False)

最佳答案

根据文档:

nn.functional.sigmoid is deprecated. Use torch.sigmoid instead.

如果你需要就地版本,使用sigmoid_:

import torch
torch.manual_seed(0)

a = torch.randn(5)

print(a)

a.sigmoid_()

print(a)
tensor([ 1.5410, -0.2934, -2.1788,  0.5684, -1.0845])
tensor([0.8236, 0.4272, 0.1017, 0.6384, 0.2527])

sigmoid docs

关于pytorch - 为什么在 pytorch 的 F.sigmoid 中没有 inplace 标志?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55615813/

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