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


Tensorflow.js tf.data.Dataset.toArray()用法及代碼示例


Tensorflow.js是由Google開發的開源庫,用於在瀏覽器或節點環境中運行機器學習模型以及深度學習神經網絡。

.toArray() 方法用於在數組中累積指定數據集的每個元素。

用法:

toArray()

參數:該方法不持有任何參數。

返回值:它返回 Promise( T[] )。



注意:

  • 此方法僅適用於有限的數據集,即適合內存的數據集。
  • 它用於測試目的,在可能的情況下應盡量避免。

範例1:

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Defining dataset formed of an array
// of numbers
const res = tf.data.array([11, 12, 31, 43, 15, 64]);
  
// Calling toArray() method and
// Printing output
console.log(await res.toArray());

輸出:

11, 12, 31, 43, 15, 64

範例2:

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Calling toArray() method and
// Printing output
console.log(await tf.data.array([5.7, 
    -16, .31, 0, null, NaN]).toArray());

輸出:

5.7, -16, 0.31, 0, , NaN

參考: https://js.tensorflow.org/api/latest/#tf.data.Dataset.toArray

相關用法


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