Skip to content

Commit 6e56f0e

Browse files
MaherJendoubiantoniovs1029
authored andcommitted
Contributing: Fix a typo (dotnet#765)
1 parent 05b3eda commit 6e56f0e

File tree

1 file changed

+2
-2
lines changed
  • samples/csharp/end-to-end-apps/AnomalyDetection-Sales/SpikeDetectionE2EApp/SpikeDetection.ModelTrainer

1 file changed

+2
-2
lines changed

samples/csharp/end-to-end-apps/AnomalyDetection-Sales/SpikeDetectionE2EApp/SpikeDetection.ModelTrainer/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ private static ITransformer DetectSpike(int size, IDataView dataView)
4949
{
5050
Console.WriteLine("===============Detect temporary changes in pattern===============");
5151

52-
// STEP 1: Create Esimator.
52+
// STEP 1: Create Estimator.
5353
var estimator = mlContext.Transforms.DetectIidSpike(outputColumnName: nameof(ProductSalesPrediction.Prediction), inputColumnName: nameof(ProductSalesData.numSales), confidence: 95, pvalueHistoryLength: size / 4);
5454

5555
// STEP 2:The Transformed Model.
@@ -140,4 +140,4 @@ private static IDataView CreateEmptyDataView()
140140
return dv;
141141
}
142142
}
143-
}
143+
}

0 commit comments

Comments
 (0)