Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Documentation
data ModelPerformance Source #
Information about the evaluation performance of a trained model.
See: newModelPerformance
smart constructor.
Instances
newModelPerformance :: ModelPerformance Source #
Create a value of ModelPerformance
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:recall:ModelPerformance'
, modelPerformance_recall
- The overall recall metric value for the trained model.
$sel:precision:ModelPerformance'
, modelPerformance_precision
- The overall precision metric value for the trained model.
$sel:f1Score:ModelPerformance'
, modelPerformance_f1Score
- The overall F1 score metric for the trained model.
modelPerformance_recall :: Lens' ModelPerformance (Maybe Double) Source #
The overall recall metric value for the trained model.
modelPerformance_precision :: Lens' ModelPerformance (Maybe Double) Source #
The overall precision metric value for the trained model.
modelPerformance_f1Score :: Lens' ModelPerformance (Maybe Double) Source #
The overall F1 score metric for the trained model.