“Array Numpy à la torche Tenseur” Réponses codées

Array Numpy à la torche Tenseur

np_array = np.array(data)
x_np = torch.from_numpy(np_array)
Clever Cow

Convertir le tableau Numpy en tenseur

import numpy as np
import torch

numpy_array = np.array([1,3,5])
tensor_array = torch.from_numpy(numpy_array)
CodeHunter

Convertir le tenseur en tableau 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

Réponses similaires à “Array Numpy à la torche Tenseur”

Questions similaires à “Array Numpy à la torche Tenseur”

Plus de réponses similaires à “Array Numpy à la torche Tenseur” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code