Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Microsoft.ML.TimeSeries/PolynomialUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -336,8 +336,8 @@ public static bool FindPolynomialCoefficients(Complex[] roots, ref Double[] coef

if (destinationOffset < n - 1)
{
if (Utils.Size(PolynomialFactor.Destination) < n)
PolynomialFactor.Destination = new decimal[n];
// always clean up Destination to avoid random test failure
PolynomialFactor.Destination = new decimal[n];

while (factors.Count > 1)
{
Expand Down
2 changes: 0 additions & 2 deletions test/Microsoft.ML.TimeSeries.Tests/TimeSeriesDirectApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,6 @@ public void ChangePointDetectionWithSeasonalityPredictionEngine()
}

[LessThanNetCore30OrNotNetCoreFact("netcoreapp3.1 output differs from Baseline")]
//Skipping test temporarily. This test will be re-enabled once the cause of failures has been determined
[Trait("Category", "SkipInCI")]
public void SsaForecast()
{
var env = new MLContext(1);
Expand Down