Answers for "tensor numpy array to tensor"

5

tf tensor from numpy

tf.convert_to_tensor(my_np_array, dtype=tf.float32)
Posted by: Guest on July-14-2020
0

how do i turn a tensor into a numpy array

import torch

# Create PyTorch tensor
A_torch = torch.tensor([1, 2])

# Convert tensor to NumPy array
A_np = A_torch.numpy()
Posted by: Guest on January-14-2021

Python Answers by Framework

Browse Popular Code Answers by Language