ML.NET is a cross-platform open-source machine learning framework that makes machine learning accessible to .NET developers. In this GitHub repo, we provide samples which will help you get started with ML.NET and how to infuse ML into existing and new .NET apps.
There are two types of samples/apps in the repo:
-
Getting Started - ML.NET code focused samples for each ML task or area, usually implemented as simple console apps.
-
End-End apps - Real world examples of web, desktop, mobile, and other applications infused with Machine Learning using ML.NET
The official ML.NET samples are divided in multiple categories depending on the scenario and machine learning problem/task, accessible through the following table:
Task of classifying the elements of a given set into two groups, predicting which group each one belongs to. | ||
Task of classifying instances into one of three or more classes, predicting which group each one belongs to. | ||
The task is to predict a numeric value with given input variable data. It is widely used for forecasting and 'how much / how many' predictions. |
Sales forecast C# |
|
Recommender systems are typically based on content based and collaborative filtering methods. A collaborative method predicts what items/products a user might like based on his past actions/likes/ratings compared to other users. | ||
ML task of grouping a set of objects in such a way that objects in the same group (called a cluster) are more similar to each other than to those in other groups. It is an exploratory task. It does not classify items across particular labels. | ||
Task's goal is the identification of rare items, events or observations which raise suspicions by differing significantly from the majority of the data.Usually problems such as bank fraud, structural defects or medical problems | ||
Construction of ranking models for information retrieval systems so the items are ordered/ranked based on user's input variables such as likes/dislike, context, interests, etc. | ||
Deep learning is a subset of machine learning. Deep learning architectures such as deep neural networks, are usually applied to fields such as computer vision (object detection, image classification, style transfer), speech recognition, natural language processing and audio recognition. |
Cross Cutting ML.Net Samples: The below samples are created for cross cutting scenarios like Scalable WebAPI services, Datasets stored in Database etc.
This sample explains how to optimize your code when running an ML.NET model on an ASP.NET Core WebAPI service |
Sentiment analysis C# |
NuGet feed configuration: Usually you just need to use the regular NuGet feed (https://api.nuget.org/v3/index.json), however, during a few days before releasing a minor release (such as 0.9, 0.10, 0.11, etc.) we'll be using Preview NuGet packages available in MyGet (such as 0.11.0-preview-27128-1), not available in the regular NuGet feed.
If that is the case, please use this MyGet feed in Visual Studio or your NuGet feed configuration:
https://dotnet.myget.org/F/dotnet-core/api/v3/index.json
In addition to the ML.NET samples provided by .NET Foundation, we're also highlighting samples created by the community shocased in this separated page: ML.NET Community Samples
Those Community Samples are not maintained by .NET Foundation but by their owners. If you have created any cool ML.NET sample, please, add its info into this REQUEST issue and we'll publish its information in the mentioned page, eventually.
See ML.NET Guide for detailed information on tutorials, ML basics, etc.
Check out the ML.NET API Reference to see the breadth of APIs available.
We welcome contributions! Please review our contribution guide.
Please join our community on Gitter
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.
ML.NET Samples are licensed under the MIT license.
Datasets are licensed under the original terms that the .NET Foundation received such datasets, as specified here.