当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Tensorflow.js tf.Tensor.clone()用法及代码示例


Tensorflow.js 是一个开源库,用于在 Javascript 中创建机器学习模型,允许用户直接在浏览器中运行模型。

tf.clone() 是在类 tf.Tensor 中定义的函数。它用于创建张量的副本。

用法:

tf.clone( values )

参数:

  • values:它可以是值的张量或值的数组

返回值:它返回包含与值相同的元素的张量。



范例1:输入参数值作为张量

Javascript


// Dynamic loading the "@tensorflow/tfjs" module
const tf = require('@tensorflow/tfjs');
  
//Creating a tensor
var values = tf.tensor([1, 2, 3, 4, 5, 6, 7]);
    
// Printing the colne of a tensor
tf.clone(values).print()

输出:

Tensor
    [1, 2, 3, 4, 5, 6, 7]

范例2:输入参数值作为值数组

Javascript


// Dynamic loading the "@tensorflow/tfjs" module
const tf = require('@tensorflow/tfjs');
  
//Creating a tensor
var values = [1, 2, 3, 4, 5, 6, 7];
    
// Printing the colne of a tensor
tf.clone(values).print()

输出:

Tensor
    [1, 2, 3, 4, 5, 6, 7]

参考:https://js.tensorflow.org/api/latest/#tf.Tensor.clone

相关用法


注:本文由纯净天空筛选整理自ManikantaBandla大神的英文原创作品 Tensorflow.js tf.Tensor class .clone() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。