mirror of https://github.com/hpcaitech/ColossalAI
8 lines
148 B
Python
8 lines
148 B
Python
|
import torch
|
||
|
|
||
|
|
||
|
def calc_acc(logits, targets):
|
||
|
preds = torch.argmax(logits, dim=-1)
|
||
|
correct = torch.sum(targets == preds)
|
||
|
return correct
|