Skip to content

Commit 20b72f7

Browse files
committed
Updated parameter description and comments
1 parent 5af4d81 commit 20b72f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/samples/Microsoft.ML.Samples/Dynamic/Transforms/TimeSeries/LocalizeRootCause.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Samples.Dynamic
77
{
88
public static class LocalizeRootCause
99
{
10-
// This is the string defined as the aggregation symbol in the AnomalyDimension and point dimension.
10+
// In the root cause detection input, this string identifies an aggregation as opposed to a dimension value"
1111
private static string AGG_SYMBOL = "##SUM##";
1212
public static void Example()
1313
{

src/Microsoft.ML.TimeSeries/ExtensionsCatalog.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public static SrCnnAnomalyEstimator DetectAnomalyBySrCnn(this TransformsCatalog
156156
/// <param name="outputColumnName">Name of the column resulting from data processing of <paramref name="inputColumnName"/>.
157157
/// The column data is a vector of <see cref="System.Double"/>. The length of this vector varies depending on <paramref name="detectMode"/>.</param>
158158
/// <param name="inputColumnName">Name of column to process. The column data must be <see cref="System.Double"/>.</param>
159-
/// <param name="threshold">The threshold to determine anomaly. Scores larger than the threshold are considered as anomalies. This value must fall between [0,1]. Default value is 0.3.</param>
159+
/// <param name="threshold">The threshold to determine an anomaly. An anomaly is detected when the calculated anomaly score for a given time-series chunk is more than the set threshold. This threshold must fall between [0,1], and its default value is 0.3.</param>
160160
/// <param name="batchSize">Divide the input data into batches to fit srcnn model.
161161
/// When set to -1, use the whole input to fit model instead of batch by batch, when set to a positive integer, use this number as batch size.
162162
/// Must be -1 or a positive integer no less than 12. Default value is 1024.</param>

0 commit comments

Comments
 (0)