libZSservicesZSamazonka-forecastZSamazonka-forecast
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Forecast.Types.PredictorExecutionDetails

Description

 
Synopsis

Documentation

data PredictorExecutionDetails Source #

Contains details on the backtests performed to evaluate the accuracy of the predictor. The tests are returned in descending order of accuracy, with the most accurate backtest appearing first. You specify the number of backtests to perform when you call the operation.

See: newPredictorExecutionDetails smart constructor.

Constructors

PredictorExecutionDetails' 

Fields

  • predictorExecutions :: Maybe (NonEmpty PredictorExecution)

    An array of the backtests performed to evaluate the accuracy of the predictor against a particular algorithm. The NumberOfBacktestWindows from the object determines the number of windows in the array.

Instances

Instances details
Eq PredictorExecutionDetails Source # 
Instance details

Defined in Amazonka.Forecast.Types.PredictorExecutionDetails

Read PredictorExecutionDetails Source # 
Instance details

Defined in Amazonka.Forecast.Types.PredictorExecutionDetails

Show PredictorExecutionDetails Source # 
Instance details

Defined in Amazonka.Forecast.Types.PredictorExecutionDetails

Generic PredictorExecutionDetails Source # 
Instance details

Defined in Amazonka.Forecast.Types.PredictorExecutionDetails

Associated Types

type Rep PredictorExecutionDetails :: Type -> Type #

NFData PredictorExecutionDetails Source # 
Instance details

Defined in Amazonka.Forecast.Types.PredictorExecutionDetails

Hashable PredictorExecutionDetails Source # 
Instance details

Defined in Amazonka.Forecast.Types.PredictorExecutionDetails

FromJSON PredictorExecutionDetails Source # 
Instance details

Defined in Amazonka.Forecast.Types.PredictorExecutionDetails

type Rep PredictorExecutionDetails Source # 
Instance details

Defined in Amazonka.Forecast.Types.PredictorExecutionDetails

type Rep PredictorExecutionDetails = D1 ('MetaData "PredictorExecutionDetails" "Amazonka.Forecast.Types.PredictorExecutionDetails" "libZSservicesZSamazonka-forecastZSamazonka-forecast" 'False) (C1 ('MetaCons "PredictorExecutionDetails'" 'PrefixI 'True) (S1 ('MetaSel ('Just "predictorExecutions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty PredictorExecution)))))

newPredictorExecutionDetails :: PredictorExecutionDetails Source #

Create a value of PredictorExecutionDetails 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:predictorExecutions:PredictorExecutionDetails', predictorExecutionDetails_predictorExecutions - An array of the backtests performed to evaluate the accuracy of the predictor against a particular algorithm. The NumberOfBacktestWindows from the object determines the number of windows in the array.

predictorExecutionDetails_predictorExecutions :: Lens' PredictorExecutionDetails (Maybe (NonEmpty PredictorExecution)) Source #

An array of the backtests performed to evaluate the accuracy of the predictor against a particular algorithm. The NumberOfBacktestWindows from the object determines the number of windows in the array.