src.eval.advanced_classification_evaluation
Classes
|
- class src.eval.advanced_classification_evaluation.AdvancedClassificationEvaluation(**kwargs)
- Author:
Alberto M. Esmoris Pena
Class representing the result of evaluating a classification in and advanced way. See
AdvancedClassificationEvaluator.- Variables:
evals (list of
ClassificationEvaluation) – The evaluation of the classification for each filter.domain_name – See
AdvancedClassificationEvaluator.num_points (int) – The number of points without filtering (i.e., the original number of points).
num_fpoints (
np.ndarrayof int) – The number of points for each evaluation (i.e., the points preserved after applying each filter).
- __init__(**kwargs)
Initialize/instantiate an AdvancedClassificationEvaluation.
- Parameters:
kwargs – The attributes for the AdvancedClassificationEvaluation.
- report(**kwargs)
Transform the AdvancedClassificationEvaluation into an
AdvancedClassificationReport.See
AdvancedClassificationReport.- Returns:
The
AdvancedClassificationReportrepresenting theAdvancedClassificationEvaluation.- Return type:
- can_report()
See
EvaluationandEvaluation.can_report().
- plot(**kwargs)
Transform the
AdvancedClassificationEvaluatorinto aAdvancedClassificationPlot.Se
AdvancedClassificationPlot.- Parameters:
kwargs – The key-word arguments for the plot.
- Returns:
The
AdvancedClassificationPlotrepresenting theClassificationEvaluation.- Return type:
- can_plot()
See
EvaluationandEvaluation.can_plot().