18 references to RankSelectionMethod
Microsoft.ML.TimeSeries (18)
AdaptiveSingularSpectrumSequenceModeler.cs (9)
154private readonly RankSelectionMethod _rankSelectionMethod; 229RankSelectionMethod rankSelectionMethod = RankSelectionMethod.Exact, int? rank = null, int? maxRank = null, 252if (_rankSelectionMethod == RankSelectionMethod.Fixed) 384_rankSelectionMethod = (RankSelectionMethod)temp; 1258var signalLength = _rankSelectionMethod == RankSelectionMethod.Exact ? originalSeriesLength : 2 * _windowSize - 1;//originalSeriesLength; 1325if (_rankSelectionMethod == RankSelectionMethod.Exact) 1327else if (_rankSelectionMethod == RankSelectionMethod.Fast) 1366if (_rankSelectionMethod != RankSelectionMethod.Exact)
ExtensionsCatalog.cs (2)
477bool isAdaptive = false, float discountFactor = 1, RankSelectionMethod rankSelectionMethod = RankSelectionMethod.Exact, int? rank = null,
SsaAnomalyDetectionBase.cs (1)
205DiscountFactor, RankSelectionMethod.Exact, null, SeasonalWindowSize / 2, false, false);
SSaForecasting.cs (5)
60public RankSelectionMethod RankSelectionMethod = RankSelectionMethod.Exact; 231/// <seealso cref="Microsoft.ML.TimeSeriesCatalog.ForecastBySsa(Microsoft.ML.ForecastingCatalog,System.String,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Single,Microsoft.ML.Transforms.TimeSeries.RankSelectionMethod,System.Int32?,System.Int32?,System.Boolean,System.Boolean,Microsoft.ML.Transforms.TimeSeries.GrowthRatio?,System.String,System.String,System.Single,System.Boolean)" /> 270RankSelectionMethod rankSelectionMethod = RankSelectionMethod.Exact,
SsaForecastingBase.cs (1)
94public RankSelectionMethod RankSelectionMethod;