ML.NET is an open source and cross-platform machine learning framework for .NET.
C# C++ Shell Batchfile C CMake
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
build Bump master to v0.3 (#269) May 30, 2018
docs Migration of first `IDataView` docs (#173) May 22, 2018
pkg Support packages.config (#165) May 17, 2018
src Fix SupportedMetric.ByName() method (#280) Jun 1, 2018
test Fix SupportedMetric.ByName() method (#280) Jun 1, 2018
.gitattributes Initial commit May 4, 2018
.gitignore switch housing dataset to wine (#170) May 23, 2018
BuildToolsVersion.txt Initial commit May 4, 2018
CONTRIBUTING.md Change "Documentation" folder to "docs" (#87) May 17, 2018
Directory.Build.props Update NuGet packages to fill out all metadata. (#115) May 14, 2018
Directory.Build.targets Initial commit May 4, 2018
DotnetCLIVersion.txt Issue #104: Update the build tools to 2.1.200 (#105) May 10, 2018
ISSUE_TEMPLATE.md Update ISSUE_TEMPLATE.md May 7, 2018
LICENSE Initial commit May 4, 2018
Microsoft.ML.sln Change "Documentation" folder to "docs" (#240) May 25, 2018
PULL_REQUEST_TEMPLATE.md Update PULL_REQUEST_TEMPLATE.md May 7, 2018
README.md Change "Documentation" folder to "docs" (#87) May 17, 2018
ROADMAP.md [Docs] Fixed typo: ROADMAP.md (#55) May 7, 2018
build.cmd Fixes build errors caused by spaces in the project path (#196) May 23, 2018
build.proj switch housing dataset to wine (#170) May 23, 2018
build.sh Fixes build error when path contains space on Linux (#247) May 30, 2018
config.json Initial commit May 4, 2018
dir.traversal.targets Initial commit May 4, 2018
init-tools.cmd Remove references to ILAsmVersion.txt from build script (#266) May 30, 2018
init-tools.msbuild Initial commit May 4, 2018
init-tools.sh Remove references to ILAsmVersion.txt from build script (#266) May 30, 2018
netci.groovy Add push trigger to netci.groovy (#46) May 7, 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 ML into their applications without prior expertise in developing or tuning machine learning models, all in .NET.

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 ML tasks like classification (e.g. support text classification, sentiment analysis) and regression (e.g. 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 64 bit .NET Core or later is available.

The current release is 0.1. Check out the release notes.

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 see the complete sample here):

var pipeline = new LearningPipeline();
pipeline.Add(new TextLoader<SentimentData>(dataPath, separator: ","));
pipeline.Add(new TextFeaturizer("Features", "SentimentText"));
pipeline.Add(new FastTreeBinaryClassifier());
var model = pipeline.Train<SentimentData, SentimentPrediction>();

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

SentimentData data = new SentimentData
{
    SentimentText = "Today is a great day!"
};

SentimentPrediction prediction = model.Predict(data);

Console.WriteLine("prediction: " + prediction.Sentiment);

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.