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


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


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

tf.Tensor class.bufferSync() 方法用於返回一個保存底層數據的 tf.TensorBuffer。

用法

bufferSync()

參數

  • 它不帶參數

返回值:它返回 tf.TensorBuffer



範例1:

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
console.log(tf.tensor([1, 3, 5, 4, 2]).bufferSync())

輸出:

{
  "dtype":"float32",
  "shape":[
    5
  ],
  "size":5,
  "values":{
    "0":1,
    "1":3,
    "2":5,
    "3":4,
    "4":2
  },
  "strides":[]
}

範例2:

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
const a= tf.tensor2d([[0, 1], [2, 3]])
console.log(a.bufferSync())

輸出:

{
  "dtype":"float32",
  "shape":[
    2,
    2
  ],
  "size":4,
  "values":{
    "0":0,
    "1":1,
    "2":2,
    "3":3
  },
  "strides":[
    2
  ]
}

參考:https://js.tensorflow.org/api/latest/#tf.Tensor.bufferSync

相關用法


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