This file contains hidden or 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
""" | |
Use in PyTorch. | |
""" | |
def accuracy(output, target): | |
"""Computes the accuracy for multiple binary predictions""" | |
pred = output >= 0.5 | |
truth = target >= 0.5 | |
acc = pred.eq(truth).sum() / target.numel() | |
return acc |