Skip to content

Commit c6988dc

Browse files
committed
PR comments.
1 parent 30e5db4 commit c6988dc

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/samples/Microsoft.ML.Samples/Dynamic/Transforms/TimeSeries/SsaDetectChangePoint.cs renamed to docs/samples/Microsoft.ML.Samples/Dynamic/Transforms/TimeSeries/DetectChangePointBySsa.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Microsoft.ML.Samples.Dynamic
66
{
7-
public static class SsaDetectChangePoint
7+
public static class DetectChangePointBySsa
88
{
99
class ChangePointPrediction
1010
{

docs/samples/Microsoft.ML.Samples/Dynamic/Transforms/TimeSeries/SsaDetectSpike.cs renamed to docs/samples/Microsoft.ML.Samples/Dynamic/Transforms/TimeSeries/DetectSpikeBySsa.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Microsoft.ML.Samples.Dynamic
66
{
7-
public static class SsaDetectSpike
7+
public static class DetectSpikeBySsa
88
{
99
class SsaSpikeData
1010
{

src/Microsoft.ML.TimeSeries/ExtensionsCatalog.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public static IidSpikeEstimator DetectIidSpike(this TransformsCatalog catalog, s
7373
/// <example>
7474
/// <format type="text/markdown">
7575
/// <![CDATA[
76-
/// [!code-csharp[SsaChangePointEstimator](~/../docs/samples/docs/samples/Microsoft.ML.Samples/Dynamic/Transforms/TimeSeries/SsaDetectChangePoint.cs)]
76+
/// [!code-csharp[DetectChangePointBySsa](~/../docs/samples/docs/samples/Microsoft.ML.Samples/Dynamic/Transforms/TimeSeries/DetectChangePointBySsa.cs)]
7777
/// ]]>
7878
/// </format>
7979
/// </example>
@@ -110,7 +110,7 @@ public static SsaChangePointEstimator DetectChangePointBySsa(this TransformsCata
110110
/// <example>
111111
/// <format type="text/markdown">
112112
/// <![CDATA[
113-
/// [!code-csharp[SingularSpectrumAnalysisDetectSpike](~/../docs/samples/docs/samples/Microsoft.ML.Samples/Dynamic/Transforms/TimeSeries/SsaDetectSpike.cs)]
113+
/// [!code-csharp[DetectSpikeBySsa](~/../docs/samples/docs/samples/Microsoft.ML.Samples/Dynamic/Transforms/TimeSeries/DetectSpikeBySsa.cs)]
114114
/// ]]>
115115
/// </format>
116116
/// </example>

src/Microsoft.ML.TimeSeries/SsaChangePointDetector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ private static IRowMapper Create(IHostEnvironment env, ModelLoadContext ctx, Dat
201201
}
202202

203203
/// <summary>
204-
/// The <see cref="IEstimator{ITransformer}"/> for detecting a signal change through <a href="http://arxiv.org/pdf/1206.6910.pdf">Singular Spectrum Analysis (SSA).</a> of time series.
204+
/// The <see cref="IEstimator{ITransformer}"/> for detecting a signal change through <a href="http://arxiv.org/pdf/1206.6910.pdf">Singular Spectrum Analysis (SSA)</a> of time series.
205205
/// </summary>
206206
public sealed class SsaChangePointEstimator : IEstimator<SsaChangePointDetector>
207207
{

0 commit comments

Comments
 (0)