ML.NET is an open source and cross-platform machine learning framework for .NET.
Перейти к файлу
Markus Weimer e9cd4bc331 Issue #104: Update the build tools to 2.1.200 (#105)
* Issue #104: Update the build tools to 2.1.200

Issues:
  This closes #104

* Updating .NET Version in the right file.
2018-05-10 10:21:26 -05:00
Documentation Correcting docs for building in Linux (#58) 2018-05-08 15:44:39 -05:00
Samples/UCI Initial commit 2018-05-03 17:22:00 -07:00
ZBaselines Initial commit 2018-05-03 17:22:00 -07:00
build publish symbols enabled (#99) 2018-05-09 12:58:23 -05:00
pkg Initial commit 2018-05-03 17:22:00 -07:00
src Comments added to LearningPipeline class to make Intellisense more helpful. (#50) 2018-05-09 12:35:10 -05:00
test Fix reversed hyperparameters in Scenarios Tests. Closes #25. (#94) 2018-05-09 17:47:34 -07:00
.gitattributes Initial commit 2018-05-03 17:22:00 -07:00
.gitignore Initial commit 2018-05-03 17:22:00 -07:00
BuildToolsVersion.txt Initial commit 2018-05-03 17:22:00 -07:00
CONTRIBUTING.md Adjust gitter link to go to new mlnet room (#42) 2018-05-07 08:54:00 -07:00
Directory.Build.props Initial commit 2018-05-03 17:22:00 -07:00
Directory.Build.targets Initial commit 2018-05-03 17:22:00 -07:00
DotnetCLIVersion.txt Issue #104: Update the build tools to 2.1.200 (#105) 2018-05-10 10:21:26 -05:00
ISSUE_TEMPLATE.md Update ISSUE_TEMPLATE.md 2018-05-06 20:32:33 -07:00
LICENSE Initial commit 2018-05-03 17:22:00 -07:00
Microsoft.ML.sln Add ML.NET Roadmap (#30) 2018-05-05 01:11:31 -07:00
PULL_REQUEST_TEMPLATE.md Update PULL_REQUEST_TEMPLATE.md 2018-05-06 20:43:27 -07:00
README.md Expand on NuGet installation (#90) 2018-05-09 09:00:56 -07:00
ROADMAP.md [Docs] Fixed typo: ROADMAP.md (#55) 2018-05-07 15:23:35 -07:00
build.cmd Initial commit 2018-05-03 17:22:00 -07:00
build.proj Initial commit 2018-05-03 17:22:00 -07:00
build.sh Get a working build (#1) 2018-05-04 14:47:21 -05:00
config.json Initial commit 2018-05-03 17:22:00 -07:00
dir.traversal.targets Initial commit 2018-05-03 17:22:00 -07:00
init-tools.cmd Initial commit 2018-05-03 17:22:00 -07:00
init-tools.msbuild Initial commit 2018-05-03 17:22:00 -07:00
init-tools.sh Get a working build (#1) 2018-05-04 14:47:21 -05:00
netci.groovy Add push trigger to netci.groovy (#46) 2018-05-07 12:26:00 -05:00
run.cmd Initial commit 2018-05-03 17:22:00 -07:00
run.sh Get a working build (#1) 2018-05-04 14:47:21 -05:00

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.

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.