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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。