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


Tensorflow.js tf.print()用法及代碼示例


Tensorflow.js是Google開發的開源庫,用於在瀏覽器或節點環境中運行機器學習模型和深度學習神經網絡。它可以幫助開發人員使用JavaScript開發ML模型,並直接在瀏覽器或Node.js中使用ML。

tf.print()函數用於打印有關tf.tensor的信息及其數據。

用法:

tf.print (x, verbose)

參數:

  • x:要打印的張量
  • verbose:它是一個可選參數。這些是布爾參數,它決定是否打印有關Tensor的詳細信息,包括dtype和size。

返回:它不返回任何內容,即無效。



範例1:

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Setting the value of verbose
const verbose = true;
  
// Creating the tensor
var val = tf.tensor2d([8, 2, 5, 6], [2, 2]);
  
// Printing the tensor
val.print(verbose)

輸出:

Tensor
   dtype:float32
   rank:2
   shape:[2,2]
   values:
      [[8, 2],
       [5, 6]]

範例2:

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Setting the value of verbose
const verbose = false;
  
// Creating the tensor
var val = tf.tensor2d([8, 2, 5, 6], [2, 2]);
  
// Printing the tensor
val.print(verbose)

輸出:

Tensor
   [[8, 2],
    [5, 6]]

參考:https://js.tensorflow.org/api/3.4.0/#print

相關用法


注:本文由純淨天空篩選整理自CoderSaty大神的英文原創作品 Tensorflow.js tf.print() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。