Skip to content

Instantly share code, notes, and snippets.

@tail-call
Created December 16, 2024 08:02
Show Gist options
  • Save tail-call/c9a8b81ff7ee6a4a74ab85fec475a8cd to your computer and use it in GitHub Desktop.
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
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