The Wayback Machine - https://web.archive.org/web/20190322172850/https://github.com/dotnet/machinelearning
Skip to content
Please note that GitHub no longer supports Internet Explorer.

We recommend upgrading to the latest Microsoft Edge, Google Chrome, or Firefox.

Learn more
ML.NET is an open source and cross-platform machine learning framework for .NET.
Branch: master
Clone or download
TomFinley Remove model saving/loading inconsistencies (#3044)
* Change the model load/save API to always have ITransformer as central object.
* Keep the with loader save order the same as with schema overload, with ITransformer always first.
* Change ModelLoadingTests to use the MLContext of its new base class.
Latest commit 75fc055 Mar 22, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
build
docs
pkg Refactor cancellation mechanism and make it internal, accessible via … Mar 19, 2019
src
test Remove model saving/loading inconsistencies (#3044) Mar 22, 2019
tools-local/Microsoft.ML.InternalCodeAnalyzer Main namespace types2445 (#2885) Mar 8, 2019
.editorconfig Sort namespaces as per stylecop rules/.net convention and remove unus… Dec 25, 2018
.gitattributes Initial commit May 4, 2018
.gitignore
.gitmodules
.vsts-dotnet-ci.yml Updating MKL (#2867) Mar 18, 2019
BuildToolsVersion.txt Updating the buildtools version to the latest (#2822) Mar 6, 2019
CONTRIBUTING.md Fixed a spelling from adressing to addressing. (#651) Aug 6, 2018
Directory.Build.props
Directory.Build.targets Update documentation for LightGBM and add missing binary references t… Jul 2, 2018
DotnetCLIVersion.netcoreapp.latest.txt Updating the netcoreapp sdk to latest version (#2347) Feb 1, 2019
DotnetCLIVersion.txt
ISSUE_TEMPLATE.md Update ISSUE_TEMPLATE.md May 7, 2018
LICENSE Initial commit May 4, 2018
Microsoft.ML.sln
PULL_REQUEST_TEMPLATE.md Update PULL_REQUEST_TEMPLATE.md May 7, 2018
README.md Fix readme sample (#2930) Mar 12, 2019
ROADMAP.md Suggest a typo in "Update ROADMAP.md" (#1414) Nov 16, 2018
THIRD-PARTY-NOTICES.TXT
build.cmd Fixes build errors caused by spaces in the project path (#196) May 23, 2018
build.proj
build.sh Fixes build error when path contains space on Linux (#247) May 30, 2018
codecov.yml
config.json Automate code coverage report as part of PRs. (#2194) Jan 23, 2019
dir.traversal.targets
init-tools.cmd Handle space in the directory path for building. (#2925) Mar 13, 2019
init-tools.msbuild
init-tools.sh Updating the buildtools version to the latest (#2822) Mar 6, 2019
run.cmd
run.sh

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.

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 using .NET Core, or Windows using .NET Framework. 64 bit is supported on all platforms. 32 bit is supported on Windows, except for TensorFlow, LightGBM, and ONNX related functionality.

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

First, ensure you have installed .NET Core 2.1 or later. ML.NET also works on the .NET Framework 4.6.1 or later, but 4.7.2 or later is recommended.

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.

codecov

Debug Release
CentOS x64-debug x64-release
macOS x64-debug x64-release
Windows x64 x64-debug x64-release
Windows x86 Build Status Build Status
Core 3.0 Build Status Build Status

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 is a snippet code for training a model to predict sentiment from text samples. You can find complete samples in samples repo.

var dataPath = "sentiment.csv";
var mlContext = new MLContext();
var loader = mlContext.Data.CreateTextLoader(new[]
	{
		new TextLoader.Column("SentimentText", DataKind.String, 1),
		new TextLoader.Column("Label", DataKind.Boolean, 0),
	},
	hasHeader: true,
	separatorChar: ',');
var data = loader.Load(dataPath);
var learningPipeline = mlContext.Transforms.Text.FeaturizeText("Features", "SentimentText")
		.Append(mlContext.BinaryClassification.Trainers.FastTree());
var model = learningPipeline.Fit(data);

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

var predictionEngine = model.CreatePredictionEngine<SentimentData, SentimentPrediction>(mlContext);
var prediction = predictionEngine.Predict(new SentimentData
{
    SentimentText = "Today is a great day!"
});
Console.WriteLine("prediction: " + prediction.Prediction);

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

API Documentation

See the ML.NET API Reference Documentation.

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.
You can’t perform that action at this time.