PyTorch es una biblioteca de aprendizaje automático de código abierto desarrollada por Facebook. Se utiliza para fines de procesamiento de lenguaje natural y redes neuronales profundas.
La función torch.linspace()
devuelve un tensor unidimensional de puntos igualmente espaciados entre el inicio y el final.
El tensor de salida es 1-D de pasos de tamaño.
Sintaxis : torch.linspace(inicio, fin, pasos=100, salida=Ninguno)
Parámetros :
inicio : el valor inicial para el conjunto de puntos.
final : el valor final para el conjunto de puntos
pasos : el espacio entre cada par de puntos adyacentes. Predeterminado: 100.
out(Tensor, opcional) : el tensor de salidaTipo de retorno : un tensor
Código #1:
Python3
# Importing the PyTorch library import torch # Applying the linspace function and # storing the resulting tensor in 't' a = torch.linspace(3, 10, 5) print("a = ", a) b = torch.linspace(start =-10, end = 10, steps = 5) print("b = ", b)
Producción:
a = tensor([ 3.0000, 4.7500, 6.5000, 8.2500, 10.0000]) b = tensor([-10., -5., 0., 5., 10.])
Código #2: Visualización
Python3
# Importing the PyTorch library import torch # Importing the NumPy library import numpy as np # Importing the matplotlib.pyplot function import matplotlib.pyplot as plt # Applying the linspace function to get a tensor of size 15 with values from -5 to 5 a = torch.linspace(-5, 5, 15) print(a) # Plotting plt.plot(a.numpy(), np.zeros(a.numpy().shape), color = 'red', marker = "o") plt.title("torch.linspace") plt.xlabel("X") plt.ylabel("Y") plt.show()
Producción:
tensor([-5.0000, -4.2857, -3.5714, -2.8571, -2.1429, -1.4286, -0.7143, 0.0000, 0.7143, 1.4286, 2.1429, 2.8571, 3.5714, 4.2857, 5.0000]) [torch.FloatTensor of size 15]
Publicación traducida automáticamente
Artículo escrito por sanskar27jain y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA