Overview
Topics
1-d Tensors
To create a 1d tensor with prescribed values
const tensor = tf.tensor1d([1, 2]);
//if not created within tidy, must dipose of tensor
tensor.dispose();
Try it!
Or
const tensor = tf.tensor([1, 2]);
//if not created within tidy, must dipose of tensor
tensor.dispose();