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
@@ -132,10 +132,10 @@ public static SsaSpikeEstimator DetectSpikeBySsa(this TransformsCatalog catalog,
132
132
/// The column data is a vector of <see cref="System.Double"/>. The vector contains 3 elements: alert (1 means anomaly while 0 means normal), raw score, and magnitude of spectual residual.</param>
133
133
/// <param name="inputColumnName">Name of column to transform. The column data must be <see cref="System.Single"/>.</param>
134
134
/// <param name="windowSize">The size of the sliding window for computing spectral residual.</param>
135
-
/// <param name="backAddWindowSize">The number of points to add back of training window. No more than windowSize, usually keep default value.</param>
136
-
/// <param name="lookaheadWindowSize">The number of pervious points used in prediction. No more than windowSize, usually keep default value.</param>
137
-
/// <param name="averageingWindowSize">The size of sliding window to generate a saliency map for the series. No more than windowSize, usually keep default value.</param>
138
-
/// <param name="judgementWindowSize">The size of sliding window to calculate the anomaly score for each data point. No more than windowSize.</param>
135
+
/// <param name="backAddWindowSize">The number of points to add back of training window. No more than <paramref name="windowSize"/>, usually keep default value.</param>
136
+
/// <param name="lookaheadWindowSize">The number of pervious points used in prediction. No more than <paramref name="windowSize"/>, usually keep default value.</param>
137
+
/// <param name="averageingWindowSize">The size of sliding window to generate a saliency map for the series. No more than <paramref name="windowSize"/>, usually keep default value.</param>
138
+
/// <param name="judgementWindowSize">The size of sliding window to calculate the anomaly score for each data point. No more than <paramref name="windowSize"/>.</param>
139
139
/// <param name="threshold">The threshold to determine anomaly, score larger than the threshold is considered as anomaly. Should be in (0,1)</param>
140
140
/// <example>
141
141
/// <format type="text/markdown">
@@ -155,14 +155,14 @@ public static SrCnnAnomalyEstimator DetectAnomalyBySrCnn(this TransformsCatalog
155
155
/// <param name="catalog">Catalog.</param>
156
156
/// <param name="inputColumnName">The name of the column on which forecasting needs to be performed.</param>
157
157
/// <param name="trainSize">The length of series from the begining used for training.</param>
158
-
/// <param name="seriesLength">The length of series that is kept in buffer for modeling (parameter N).</param>
159
-
/// <param name="windowSize">The length of the window on the series for building the trajectory matrix (parameter L).</param>
158
+
/// <param name="seriesLength">The length of series that is kept in buffer for modeling (parameter N from reference papar).</param>
159
+
/// <param name="windowSize">The length of the window on the series for building the trajectory matrix (parameter L from reference papar).</param>
160
160
/// <param name="discountFactor">The discount factor in [0,1] used for online updates (default = 1).</param>
/// <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].
162
+
/// <param name="rank">The desired rank of the subspace used for SSA projection (parameter r from reference papar). This parameter should be in the range in [1, <paramref name="windowSize"/>].
163
163
/// If set to null, the rank is automatically determined based on prediction error minimization. (default = null)</param>
164
-
/// <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>
165
-
/// <param name="shouldComputeForecastIntervals">The flag determining whether the confidence bounds for the point forecasts should be computed. (default = true)</param>
164
+
/// <param name="maxRank">The maximum rank considered during the rank selection process. If not provided (i.e. set to null), it is set to <paramref name="windowSize"/> - 1.</param>
165
+
/// <param name="shouldComputeForecastIntervals">The flag determining whether the confidence bounds for the point forecasts should be computed. (default = <see langword="true"/>)</param>
166
166
/// <param name="shouldstablize">The flag determining whether the model should be stabilized.</param>
167
167
/// <param name="shouldMaintainInfo">The flag determining whether the meta information for the model needs to be maintained.</param>
168
168
/// <param name="maxGrowth">The maximum growth on the exponential trend</param>
0 commit comments