📜  Tensorflow.js tf.selu()函数

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

Tensorflow.js tf.selu()函数

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

.selu()函数用于查找缩放的指数线性,并按元素完成。

句法:

tf.selu(x)

哪里,x < 0 ?比例 * alpha * (exp(x) – 1) : 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([-1, 76, 0, NaN, -4]);
  
// Calling selu() method and
// Printing output
y.selu().print();


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


输出:

Tensor
    [-1.1113307, 79.8532791, 0, NaN, -1.7258986]

示例 2:

Javascript

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

输出:

Tensor
    [8.9309587, 0.1470981, 0.2311542, NaN]

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