sor([0, 1, 0, 1, 0, 1]) >>> equal_opportunity(preds, target, groups) {'EO_0_1': tensor(0.)} Example (preds is float tensor): >>> from torchmetrics.functional.classification import equal_opportunity >>> target = torch.tensor([0, 1, 0, 1, 0, 1]) >>> preds = torch.tensor([0.11, 0.84, 0.22, 0.73, 0.33, 0.92]) >>> groups = torch.tensor([0, 1, 0, 1, 0, 1]) >>> equal_opportunity(preds, target, groups) {'EO_0_1': tensor(0.)} r