當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。