dotnet / machinelearning

ML.NET is an open source and cross-platform machine learning framework for .NET.
https://dot.net/ml
MIT License
9.04k stars 1.88k forks source link

Error When Building Anomaly Detection Example Using 0.7.0 #1591

Closed ReidAnderson closed 6 years ago

ReidAnderson commented 6 years ago

Hello, I'm a .NET developer but new to the .NET core world. I was able to verify this on two different machines. I didn't see any existing issues open on this. Hopefully I'm not missing something obvious here, and apologies if I am. Let me know if there's any further information I can provide or questions I can answer

System information

Issue

dotnet new console dotnet add package Microsoft.ML --version 0.7.0

Source code / logs

using System;
using System.Collections.Generic; 
using Microsoft.ML.Runtime.Api; 
using Microsoft.ML.Runtime.Data; 
using Microsoft.ML.Runtime.TimeSeriesProcessing;

namespace console_dotnetcore
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}
Zruty0 commented 6 years ago

Time series operations are in Microsoft.ML.TimeSeries NuGet.

ReidAnderson commented 6 years ago

Awesome, that did it. Thanks for the clarification!