Lnton羚通算法算力云平台【PyTorch】教程:torch.nn.Softplus

torch.nn.Softplus
原型

CLASS torch.nn.Softplus(beta=1, threshold=20)

参数

beta (int) – Softplus里β \betaβ 值, 默认为 1.
threshold (int) – 高于这个值恢复为线性函数,默认为 20.
Lnton羚通算法算力云平台【PyTorch】教程:torch.nn.Softplus_第1张图片

Lnton羚通算法算力云平台【PyTorch】教程:torch.nn.Softplus_第2张图片 

 代码

import torch
import torch.nn as nn

m = nn.Softplus()
input = torch.randn(4)
output = m(input)

print("input: ", input)  # input:  tensor([-1.7161, -1.2501,  0.4484, -0.4609])
print("output: ", output) # output:  tensor([0.1653, 0.2519, 0.9423, 0.4890])

Lnton羚通是专注于音视频算法、算力、云平台的高科技人工智能企业。 公司基于视频分析技术、视频智能传输技术、远程监测技术以及智能语音融合技术等, 拥有多款可支持ONVIF、RTSP、GB/T28181等多协议、多路数的音视频智能分析服务器/云平台。

Lnton羚通算法算力云平台【PyTorch】教程:torch.nn.Softplus_第3张图片

 

你可能感兴趣的:(算法,pytorch,深度学习,人工智能)