Answers for "ml.net time series forecasting"

C#
0

ml.net time series forecasting

var forecastingPipeline = mlContext.Forecasting.ForecastBySsa(
    outputColumnName: "ForecastedRentals",
    inputColumnName: "TotalRentals",
    windowSize: 7,
    seriesLength: 30,
    trainSize: 365,
    horizon: 7,
    confidenceLevel: 0.95f,
    confidenceLowerBoundColumn: "LowerBoundRentals",
    confidenceUpperBoundColumn: "UpperBoundRentals");
Posted by: Guest on January-27-2021

Code answers related to "ml.net time series forecasting"

C# Answers by Framework

Browse Popular Code Answers by Language