You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Microsoft.ML.TimeSeries/ExtensionsCatalog.cs
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -164,11 +164,11 @@ public static SrCnnAnomalyEstimator DetectAnomalyBySrCnn(this TransformsCatalog
164
164
/// <param name="rank">The desired rank of the subspace used for SSA projection (parameter r). This parameter should be in the range in [1, windowSize].
165
165
/// If set to null, the rank is automatically determined based on prediction error minimization.</param>
166
166
/// <param name="maxRank">The maximum rank considered during the rank selection process. If not provided (i.e. set to null), it is set to windowSize - 1.</param>
167
-
/// <param name="shouldStablize">The flag determining whether the model should be stabilized.</param>
167
+
/// <param name="shouldStabilize">The flag determining whether the model should be stabilized.</param>
168
168
/// <param name="shouldMaintainInfo">The flag determining whether the meta information for the model needs to be maintained.</param>
169
169
/// <param name="maxGrowth">The maximum growth on the exponential trend.</param>
170
-
/// <param name="forcastingConfidentLowerBoundColumnName">The name of the confidence interval lower bound column. If not specified then confidence intervals will not be calculated.</param>
171
-
/// <param name="forcastingConfidentUpperBoundColumnName">The name of the confidence interval upper bound column. If not specified then confidence intervals will not be calculated.</param>
170
+
/// <param name="lowerBoundConfidenceColumn">The name of the confidence interval lower bound column. If not specified then confidence intervals will not be calculated.</param>
171
+
/// <param name="upperBoundConfidenceColumn">The name of the confidence interval upper bound column. If not specified then confidence intervals will not be calculated.</param>
172
172
/// <param name="confidenceLevel">The confidence level for forecasting.</param>
173
173
/// <param name="variableHorizon">Set this to true if horizon will change after training(at prediction time).</param>
174
174
/// <example>
@@ -182,10 +182,10 @@ public static SrCnnAnomalyEstimator DetectAnomalyBySrCnn(this TransformsCatalog
@@ -255,11 +255,11 @@ public sealed class SsaForecastingEstimator : IEstimator<SsaForecastingTransform
255
255
/// <param name="rank">The desired rank of the subspace used for SSA projection (parameter r). This parameter should be in the range in [1, windowSize].
256
256
/// If set to null, the rank is automatically determined based on prediction error minimization.</param>
257
257
/// <param name="maxRank">The maximum rank considered during the rank selection process. If not provided (i.e. set to null), it is set to windowSize - 1.</param>
258
-
/// <param name="shouldStablize">The flag determining whether the model should be stabilized.</param>
258
+
/// <param name="shouldStabilize">The flag determining whether the model should be stabilized.</param>
259
259
/// <param name="shouldMaintainInfo">The flag determining whether the meta information for the model needs to be maintained.</param>
260
260
/// <param name="maxGrowth">The maximum growth on the exponential trend.</param>
261
-
/// <param name="forcastingConfidentLowerBoundColumnName">The name of the confidence interval lower bound column. If not specified then confidence intervals will not be calculated.</param>
262
-
/// <param name="forcastingConfidentUpperBoundColumnName">The name of the confidence interval upper bound column. If not specified then confidence intervals will not be calculated.</param>
261
+
/// <param name="lowerBoundConfidenceColumn">The name of the confidence interval lower bound column. If not specified then confidence intervals will not be calculated.</param>
262
+
/// <param name="upperBoundConfidenceColumn">The name of the confidence interval upper bound column. If not specified then confidence intervals will not be calculated.</param>
263
263
/// <param name="confidenceLevel">The confidence level for forecasting.</param>
264
264
/// <param name="variableHorizon">Set this to true if horizon will change after training.</param>
0 commit comments