ML.NET is an open source and cross-platform machine learning framework for .NET.
Clone or download
Anipik Bug Fixes on some paths of the native side (#1343)
* Adding comments, bug fixes, length checks

* autformatiing

* using spaces instead of tabs

* correcting switch case statements
Latest commit b791d66 Oct 25, 2018
Permalink
Failed to load latest commit information.
build Introducing official x86 CI build (#1306) Oct 25, 2018
docs sample for dynamic SDCA binary (#1361) Oct 25, 2018
pkg Add System.Memory as dependency in ML.CpuMath.nupkgproj file (#1368) Oct 25, 2018
src Bug Fixes on some paths of the native side (#1343) Oct 26, 2018
test move regex to right place to reduce test time (#1388) Oct 26, 2018
tools-local/Microsoft.ML.InternalCodeAnalyzer replace "e.g." with "for example" (#1016) Oct 9, 2018
.gitattributes Initial commit May 4, 2018
.gitignore switch housing dataset to wine (#170) May 23, 2018
.vsts-dotnet-ci.yml Introducing official x86 CI build (#1306) Oct 25, 2018
BuildToolsVersion.txt Update buildtools to 3.0.0-preview1-03129-01 (#767) Aug 30, 2018
CONTRIBUTING.md Fixed a spelling from adressing to addressing. (#651) Aug 6, 2018
Directory.Build.props Move towards being able to build for x86 (#1008) Oct 10, 2018
Directory.Build.targets Update documentation for LightGBM and add missing binary references t… Jul 2, 2018
DotnetCLIVersion.txt Move to netcoreapp2.1 (#690) Aug 21, 2018
ISSUE_TEMPLATE.md Update ISSUE_TEMPLATE.md May 7, 2018
LICENSE Initial commit May 4, 2018
Microsoft.ML.sln Adding a sample for Vector<T> ConcatWith<T>(this Scalar<T> me, params… Oct 12, 2018
PULL_REQUEST_TEMPLATE.md Update PULL_REQUEST_TEMPLATE.md May 7, 2018
README.md ML.NET supports x64 bits, not any 64 bits (#1291) Oct 19, 2018
ROADMAP.md Grammar fixes in documentation and comments (#1179) Oct 9, 2018
build.cmd Fixes build errors caused by spaces in the project path (#196) May 23, 2018
build.proj Added Numeric Ranking Performance Tests (#888) Sep 19, 2018
build.sh Fixes build error when path contains space on Linux (#247) May 30, 2018
config.json Fix test output during CI. (#652) Aug 6, 2018
dir.traversal.targets Initial commit May 4, 2018
init-tools.cmd Update buildtools to 3.0.0-preview1-03129-01 (#767) Aug 30, 2018
init-tools.msbuild Initial commit May 4, 2018
init-tools.sh Update buildtools to 3.0.0-preview1-03129-01 (#767) Aug 30, 2018
run.cmd Fixes build errors caused by spaces in the project path (#196) May 23, 2018
run.sh Fixes build error when path contains space on Linux (#247) May 30, 2018

README.md

Machine Learning for .NET

ML.NET is a cross-platform open-source machine learning framework which makes machine learning accessible to .NET developers.

ML.NET allows .NET developers to develop their own models and infuse custom machine learning into their applications, using .NET, even without prior expertise in developing or tuning machine learning models.

ML.NET was originally developed in Microsoft Research, and evolved into a significant framework over the last decade and is used across many product groups in Microsoft like Windows, Bing, PowerPoint, Excel and more.

With this first preview release, ML.NET enables machine learning tasks like classification (for example: support text classification, sentiment analysis) and regression (for example, price-prediction).

Along with these ML capabilities, this first release of ML.NET also brings the first draft of .NET APIs for training models, using models for predictions, as well as the core components of this framework such as learning algorithms, transforms, and ML data structures.

Installation

NuGet Status

ML.NET runs on Windows, Linux, and macOS - any platform where x64 .NET Core or later is available. In addition, .NET Framework on Windows x64 is also supported.

The current release is 0.6. Check out the release notes to see what's new.

First, ensure you have installed .NET Core 2.0 or later. ML.NET also works on the .NET Framework. Note that ML.NET currently must run in a 64-bit process.

Once you have an app, you can install the ML.NET NuGet package from the .NET Core CLI using:

dotnet add package Microsoft.ML

or from the NuGet package manager:

Install-Package Microsoft.ML

Or alternatively, you can add the Microsoft.ML package from within Visual Studio's NuGet package manager or via Paket.

Daily NuGet builds of the project are also available in our MyGet feed:

https://dotnet.myget.org/F/dotnet-core/api/v3/index.json

Building

To build ML.NET from source please visit our developers guide.

x64 Debug x64 Release
Linux x64-debug x64-release
macOS x64-debug x64-release
Windows x64-debug x64-release

Contributing

We welcome contributions! Please review our contribution guide.

Community

Please join our community on Gitter Join the chat at https://gitter.im/dotnet/mlnet

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information, see the .NET Foundation Code of Conduct.

Examples

Here's an example of code to train a model to predict sentiment from text samples. (You can find a sample of the legacy API here):

var env = new LocalEnvironment();
var reader = TextLoader.CreateReader(env, ctx => (
        Target: ctx.LoadFloat(2),
        FeatureVector: ctx.LoadFloat(3, 6)),
        separator: ',',
        hasHeader: true);
var data = reader.Read(new MultiFileSource(dataPath));
var classification = new MulticlassClassificationContext(env);
var learningPipeline = reader.MakeNewEstimator()
    .Append(r => (
    r.Target,
    Prediction: classification.Trainers.Sdca(r.Target.ToKey(), r.FeatureVector)));
var model = learningPipeline.Fit(data);

Now from the model we can make inferences (predictions):

var predictionFunc = model.MakePredictionFunction<SentimentInput, SentimentPrediction>(env);
var prediction = predictionFunc.Predict(new SentimentData
{
    SentimentText = "Today is a great day!"
});
Console.WriteLine("prediction: " + prediction.Sentiment);

A cookbook that shows how to use these APIs for a variety of existing and new scenarios can be found here.

Samples

We have a repo of samples that you can look at.

License

ML.NET is licensed under the MIT license.

.NET Foundation

ML.NET is a .NET Foundation project.

There are many .NET related projects on GitHub.

  • .NET home repo - links to 100s of .NET projects, from Microsoft and the community.