glue¶
-
class
AccuracyAndF1(topk=(1), pos_label=1, name='acc_and_f1', *args, **kwargs)[source]¶ Bases:
paddle.metric.metrics.MetricEncapsulates Accuracy, Precision, Recall and F1 metric logic.
-
compute(pred, label, *args)[source]¶ This API is advanced usage to accelerate metric calculating, calulations from outputs of model to the states which should be updated by Metric can be defined here, where Paddle OPs is also supported. Outputs of this API will be the inputs of “Metric.update”.
If
computeis defined, it will be called with outputs of model and labels from data as arguments, all outputs and labels will be concatenated and flatten and each filed as a separate argument as follows:compute(output1, output2, ..., label1, label2,...)If
computeis not defined, default behaviour is to pass input to output, so output format will be:return output1, output2, ..., label1, label2,...see
Metric.update
-
-
class
Mcc(name='mcc', *args, **kwargs)[source]¶ Bases:
paddle.metric.metrics.MetricMatthews correlation coefficient https://en.wikipedia.org/wiki/Matthews_correlation_coefficient.
-
compute(pred, label, *args)[source]¶ This API is advanced usage to accelerate metric calculating, calulations from outputs of model to the states which should be updated by Metric can be defined here, where Paddle OPs is also supported. Outputs of this API will be the inputs of “Metric.update”.
If
computeis defined, it will be called with outputs of model and labels from data as arguments, all outputs and labels will be concatenated and flatten and each filed as a separate argument as follows:compute(output1, output2, ..., label1, label2,...)If
computeis not defined, default behaviour is to pass input to output, so output format will be:return output1, output2, ..., label1, label2,...see
Metric.update
-
-
class
PearsonAndSpearman(name='mcc', *args, **kwargs)[source]¶ Bases:
paddle.metric.metrics.MetricPearson correlation coefficient https://en.wikipedia.org/wiki/Pearson_correlation_coefficient Spearman’s rank correlation coefficient https://en.wikipedia.org/wiki/Spearman%27s_rank_correlation_coefficient.