El método PyTorch torch.abs()
calcula el valor absoluto de los elementos del tensor de entrada dado.
Sintaxis:
torch.abs(inp, out=None) ? Tensor
Argumentos
- inp: Este es el tensor de entrada.
- out: Este es un parámetro opcional y es el tensor de salida.
Retorno: Devuelve un Tensor que tiene valor absoluto de entrada inp.
Veamos este concepto con la ayuda de algunos ejemplos:
Ejemplo 1:
# Importing the PyTorch library import torch # A constant tensor of size 1 a = torch.FloatTensor([-15]) print(a) # Applying the abs function and # storing the result in 'b' b = torch.abs(a) print(b)
Producción:
-15 [torch.FloatTensor of size 1] 15 [torch.FloatTensor of size 1]
Ejemplo 2:
# Importing the PyTorch library import torch # A constant tensor of size n a = torch.FloatTensor([15, -5, 3, -2]) print(a) # Applying the abs function and # storing the result in 'b' b = torch.abs(a) print(b)
Producción:
15 -5 3 -2 [torch.FloatTensor of size 4] 15 5 3 2 [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