📜  Tensorflow.js tf.softplus()函数

📅  最后修改于: 2022-05-13 01:56:26.104000             🧑  作者: Mango

Tensorflow.js tf.softplus()函数

Tensorflow.js 是一个由谷歌开发的开源库,用于在浏览器或节点环境中运行机器学习模型以及深度学习神经网络。

.softplus()函数用于查找指定输入张量的 softplus,即log(exp(x) + 1)并按元素完成。

句法 :

tf.softplus(x)

参数:

  • x:表示张量输入,可以是 tf.Tensor、TypedArray 或 Array 类型。

返回值:它返回 tf.Tensor 对象。

示例 1:

Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Defining tensor input elements
const y = tf.tensor1d([11, 17, 0, NaN, -41]);
  
// Calling softplus() method and
// Printing output
y.softplus().print();


Javascript
// Importing the tensorflow.js library 
import * as tf from "@tensorflow/tfjs"
  
// Defining tensor input
var val = [1.5, .4, .23, null, 'a'];
  
// Calling tensor1d method
const y = tf.tensor1d(val);
  
// Calling softplus() method
var res = tf.softplus(y)
  
// Printing output
res.print();


输出:

Tensor
    [11.0000162, 17, 0.6931472, NaN, 0]

示例 2:

Javascript

// Importing the tensorflow.js library 
import * as tf from "@tensorflow/tfjs"
  
// Defining tensor input
var val = [1.5, .4, .23, null, 'a'];
  
// Calling tensor1d method
const y = tf.tensor1d(val);
  
// Calling softplus() method
var res = tf.softplus(y)
  
// Printing output
res.print();

输出:

Tensor
    [1.7014132, 0.9130152, 0.8147451, 0.6931472, NaN]

参考: https://js.tensorflow.org/api/latest/#softplus