![]() |
Belle II Software
release-05-01-25
|
Functions | |
def | data_amount (truths, predictions) |
def | signal_amount (truths, predictions) |
def | accepted_amount (truths, predictions) |
def | accepted_signal_amount (truths, predictions) |
def | background_amount (truths, predictions) |
def | rejected_amount (truths, predictions) |
def | rejected_signal_amount (truths, predictions) |
def | accepted_background_amount (truths, predictions) |
def | rejected_background_amount (truths, predictions) |
def | purity (truths, predictions) |
def | efficiency (truths, predictions) |
def | accuracy (truths, predictions) |
def | background_rejection (truths, predictions) |
def | signal_background_ratio (truths, predictions) |
This module contains score functions to quantify the quality of a classification All score function have the signature def score(truths, predictions): comparing the truth information against a model and return a numerical value.
def tracking.validation.scores.accepted_amount | ( | truths, | |
predictions | |||
) |
def tracking.validation.scores.accepted_background_amount | ( | truths, | |
predictions | |||
) |
def tracking.validation.scores.accepted_signal_amount | ( | truths, | |
predictions | |||
) |
def tracking.validation.scores.accuracy | ( | truths, | |
predictions | |||
) |
def tracking.validation.scores.background_amount | ( | truths, | |
predictions | |||
) |
def tracking.validation.scores.background_rejection | ( | truths, | |
predictions | |||
) |
def tracking.validation.scores.data_amount | ( | truths, | |
predictions | |||
) |
def tracking.validation.scores.efficiency | ( | truths, | |
predictions | |||
) |
def tracking.validation.scores.purity | ( | truths, | |
predictions | |||
) |
def tracking.validation.scores.rejected_amount | ( | truths, | |
predictions | |||
) |
def tracking.validation.scores.rejected_background_amount | ( | truths, | |
predictions | |||
) |
def tracking.validation.scores.rejected_signal_amount | ( | truths, | |
predictions | |||
) |
def tracking.validation.scores.signal_amount | ( | truths, | |
predictions | |||
) |