Evaluation

class Evaluation(completion: float, accuracy: float, precision: float, recall: float, f1: float)[source]

Bases: NamedTuple

An evaluation tuple.

Create new instance of Evaluation(completion, accuracy, precision, recall, f1)

Attributes Summary

accuracy

Alias for field number 1

completion

Completion is the ratio of curated / (curated + predicted), where closer to 1.0 means that more of the curation has been done

f1

Alias for field number 4

precision

Alias for field number 2

recall

Alias for field number 3

Attributes Documentation

accuracy: float

Alias for field number 1

completion: float

Completion is the ratio of curated / (curated + predicted), where closer to 1.0 means that more of the curation has been done

f1: float

Alias for field number 4

precision: float

Alias for field number 2

recall: float

Alias for field number 3