“Tensorflow nach Numpy” Code-Antworten

Wie verwandle ich einen Tensor in ein numpy Array?

import torch

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

# Convert tensor to NumPy array
A_np = A_torch.numpy()
AI Nerd

Tensorflow nach Numpy

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)
Shanti

verwandeln

tf.numpy_function(    func, inp, Tout, name=None)
Real Raccoon

Ähnliche Antworten wie “Tensorflow nach Numpy”

Fragen ähnlich wie “Tensorflow nach Numpy”

Weitere verwandte Antworten zu “Tensorflow nach Numpy” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen