tensor
- Graph.tensor(data, *, name=None)
Create a real or complex Tensor with the data provided.
- Parameters
data (number or np.ndarray or Tensor) – The data to convert to an appropriate tensor.
name (str, optional) – The name of the node.
- Returns
Real or complex Tensor representation of the input data.
- Return type
Notes
Use this node to create a Tensor from some numeric data. Note that you can pass numbers or NumPy arrays to operations that accept Tensors.