Tensorflow.js是Google开发的开源库,用于在浏览器或节点环境中运行机器学习模型和深度学习神经网络。
tf.TensorBuffer 类 .toTensor() 函数用于从指定的缓冲区及其值创建一个不可变的 Tensor 对象。
用法:
toTensor ()
参数:该函数不接受任何参数。
返回值:它返回创建的不可变 Tensor 对象。
范例1:
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
// Creating a buffer of 2*2 dimensions
const buffer = tf.buffer([2, 2]);
// Setting values at particular indices.
buffer.set(5, 0, 0);
buffer.set(10, 1, 0);
// Converting the above buffer back
// to a tensor value to print with
// the help of .toTensor() function
buffer.toTensor().print();
输出:
Tensor [[5 , 0], [10, 0]]
范例2:
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
// Creating a buffer of 3*3 dimensions
const buffer = tf.buffer([3, 3]);
// Setting values at particular indices.
buffer.set(5, 0, 0);
buffer.set(10, 0, 1);
buffer.set(15, 1, 0);
buffer.set(20, 1, 1);
buffer.set(25, 2, 0);
buffer.set(30, 2, 1);
buffer.set(35, 2, 2);
// Converting the above buffer back
// to a tensor value to print with
// the help of .toTensor() function
buffer.toTensor().print()
输出:
Tensor [[5 , 10, 0 ], [15, 20, 0 ], [25, 30, 35]]
参考: https://js.tensorflow.org/api/latest/#tf.TensorBuffer.toTensor
相关用法
- Tensorflow.js tf.Tensor.buffer()用法及代码示例
- Java String repeat()用法及代码示例
- Tensorflow.js tf.LayersModel.evaluate()用法及代码示例
- Tensorflow.js tf.data.Dataset.batch()用法及代码示例
- Tensorflow.js tf.Sequential.add()用法及代码示例
- p5.js Element class()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Tensorflow.js tf.TensorBuffer Class .toTensor() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。