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
List tempData = new List();
for (int i = 0; i < size / 2; i++)
tempData.Add(new Data(5));
for (int i = 0; i < size / 2; i++)
tempData.Add(new Data((float)(5 + i * 1.1)));
foreach (var d in tempData)
data.Add(new Data(d.Value));
Simplify the code by removing tempData.
The text was updated successfully, but these errors were encountered:
v.0.7.0-preview-27031-8:
file: Microsoft.ML.TimeSeries.Tests/TimeSeriesDirectApi.cs
List tempData = new List();
for (int i = 0; i < size / 2; i++)
tempData.Add(new Data(5));
for (int i = 0; i < size / 2; i++)
tempData.Add(new Data((float)(5 + i * 1.1)));
foreach (var d in tempData)
data.Add(new Data(d.Value));
Simplify the code by removing tempData.
The text was updated successfully, but these errors were encountered: