Convert Numpy Array To Tensor Using Numpy Functions Code Example


Example 1: convert tensor to numpy array


import tensorflow as tf

a = tf.constant([[1, 2], [3, 4]])
b = tf.add(a, 1)

a.numpy()
# array([[1, 2],
# [3, 4]], dtype=int32)

b.numpy()
# array([[2, 3],
# [4, 5]], dtype=int32)

tf.multiply(a, b).numpy()
# array([[ 2, 6],
# [12, 20]], dtype=int32)

Example 2: 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()

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android SDK Location Should Not Contain Whitespace, As This Cause Problems With NDK Tools