Shortcuts

Note

You are reading the documentation for MMOCR 0.x, which will soon be deprecated by the end of 2022. We recommend you upgrade to MMOCR 1.0 to enjoy fruitful new features and better performance brought by OpenMMLab 2.0. Check out the maintenance plan, changelog, code and documentation of MMOCR 1.0 for more details.

Source code for mmocr.core.evaluation.kie_metric

# Copyright (c) OpenMMLab. All rights reserved.
import torch


[docs]def compute_f1_score(preds, gts, ignores=[]): """Compute the F1-score of prediction. Args: preds (Tensor): The predicted probability NxC map with N and C being the sample number and class number respectively. gts (Tensor): The ground truth vector of size N. ignores (list): The index set of classes that are ignored when reporting results. Note: all samples are participated in computing. Returns: The numpy list of f1-scores of valid classes. """ C = preds.size(1) classes = torch.LongTensor(sorted(set(range(C)) - set(ignores))) hist = torch.bincount( gts * C + preds.argmax(1), minlength=C**2).view(C, C).float() diag = torch.diag(hist) recalls = diag / hist.sum(1).clamp(min=1) precisions = diag / hist.sum(0).clamp(min=1) f1 = 2 * recalls * precisions / (recalls + precisions).clamp(min=1e-8) return f1[classes].cpu().numpy()
Read the Docs v: v0.6.3
Versions
latest
stable
v0.6.3
v0.6.2
v0.6.1
v0.6.0
v0.5.0
v0.4.1
v0.4.0
v0.3.0
v0.2.1
v0.2.0
v0.1.0
dev-1.x
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.