El método PyTorch torch.exp()
devuelve un nuevo tensor después de obtener el exponente de los elementos del tensor de entrada.
Sintaxis:
torch.exp(input, out=None)
Argumentos
- entrada: Este es el tensor de entrada.
- out: El tensor de salida.
Return: Devuelve un Tensor.
Veamos este concepto con la ayuda de algunos ejemplos:
Ejemplo 1:
# Importing the PyTorch library import torch # A constant tensor of size n a = torch.randn(6) print(a) # Applying the exp function and # storing the result in 'out' out = torch.exp(a) print(out)
Producción:
1.0532 -1.9300 0.6392 -0.7519 0.9133 0.3998 [torch.FloatTensor of size 6] 2.8667 0.1451 1.8949 0.4715 2.4925 1.4915 [torch.FloatTensor of size 6]
Ejemplo 2:
# Importing the PyTorch library import torch # A constant tensor of size n a = torch.FloatTensor([1, 4, 6, 3]) print(a) # Applying the exp function and # storing the result in 'out' out = torch.exp(a) print(out)
Producción:
1 4 6 3 [torch.FloatTensor of size 4] 2.7183 54.5981 403.4288 20.0855 [torch.FloatTensor of size 4]
Publicación traducida automáticamente
Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA