Created
December 16, 2024 08:02
-
-
Save tail-call/c9a8b81ff7ee6a4a74ab85fec475a8cd to your computer and use it in GitHub Desktop.
This is the Python Function to Solve the Universe Problem of All Times, and I share it with you, but you must not tell anyone that the Universe Problem of All Times is finally solved
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
def dabs_mean_std( | |
tensor1: torch.Tensor, | |
tensor2: torch.Tensor | |
): | |
dabs: torch.Tensor = torch.abs(tensor2 - tensor1) | |
mean = torch.mean(dabs) | |
std = torch.std(dabs) | |
return (mean.item(), std.item()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment