📜  Tensorflow.js tf.clipByValue()函数

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

Tensorflow.js tf.clipByValue()函数

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

.clipByValue()函数用于查找所述张量输入的剪辑值,并按元素完成。

句法 :

tf.clipByValue(x, clipValueMin, clipValueMax)

参数:

  • x:它是张量输入,其值将被裁剪,它可以是tf.TensorTypedArrayArray类型。
  • clipValueMin:它是要剪裁的规定范围的下限。
  • clipValueMax:它是要裁剪的规定范围的上限。

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

示例 1:在此示例中,我们定义了一个整数类型的输入张量,然后打印它的裁剪值。为了创建输入张量,我们使用.tensor1d()方法,为了打印输出,我们使用.print()方法。

Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Defining tensor input elements
const y = tf.tensor1d([9, -10, -19, 12]);
  
// Calling clipByValue() method and
// printing output
y.clipByValue(-11, 11).print();


Javascript
// Importing the tensorflow.js library 
import * as tf from "@tensorflow/tfjs"
  
// Defining float values
var val = [.5, 4.9, .275, -1.46];
  
// Calling tensor1d method
const y = tf.tensor1d(val);
  
// Calling clipByValue() method
var res = tf.clipByValue(y, -1, 1);
  
// printing output
res.print();


输出:

Tensor
    [9, -10, -11, 11]

示例 2:在此示例中,浮点类型值被视为张量输入,所有参数都直接传递给clipByValue函数。

Javascript

// Importing the tensorflow.js library 
import * as tf from "@tensorflow/tfjs"
  
// Defining float values
var val = [.5, 4.9, .275, -1.46];
  
// Calling tensor1d method
const y = tf.tensor1d(val);
  
// Calling clipByValue() method
var res = tf.clipByValue(y, -1, 1);
  
// printing output
res.print();

输出:

Tensor
    [0.5, 1, 0.275, -1]

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