ML.NET is an open source and cross-platform machine learning framework for .NET.
Перейти к файлу
Eric StJohn b8f71b9c66
Don't include the SDK in our helix payload (#6918)
* Don't include the SDK in our helix payload

I noticed that the tests included the latest SDK - including the host -
in our helix payloads.

This is a large amount of unnecessary downloads and it also makes it so
we use the latest host on the older frameworks which can fail when the
latest host drops support for distros.

Since our tests shouldn't need the full CLI, remove this from our helix
payloads.

We'll instead get just the runtime we need through `AdditionalDotNetPackage`

* Place Helix downloaded runtime on the PATH

Helix only sets the path when the CLI is included, however we don't
need the CLI.
2023-12-21 08:37:50 -08:00
.github Migrate to the 'locker' GitHub action for locking closed/stale issues/PRs (#6896) 2023-11-30 17:14:50 -08:00
build Don't include the SDK in our helix payload (#6918) 2023-12-21 08:37:50 -08:00
docs Update developer-guide.md (#6870) 2023-12-07 13:31:55 -07:00
eng Don't include the SDK in our helix payload (#6918) 2023-12-21 08:37:50 -08:00
src Reorganize dataframe files (#6872) 2023-12-12 10:04:47 -07:00
test Reorganize dataframe files (#6872) 2023-12-12 10:04:47 -07:00
tools-local Add TargetType to Type_convert (#6785) 2023-08-25 10:57:35 -07:00
.editorconfig add obj-detection automl sweeper (#6633) 2023-04-28 10:27:07 -07:00
.gitattributes Initial commit 2018-05-03 17:22:00 -07:00
.gitignore Helix Integration. (#5837) 2021-06-22 19:44:27 -07:00
.gitmodules Making MF to be a part of ML.NET (#1263) 2018-10-25 22:48:11 -07:00
.vsts-dotnet-ci.yml added in win-arm64 (#6813) 2023-11-20 22:05:11 -07:00
CODE_OF_CONDUCT.md Adding code of conduct definition (#3449) 2019-04-21 17:54:45 -07:00
CONTRIBUTING.md add description about help wanted tag to Contribution.MD (#5815) 2021-06-02 13:11:50 -07:00
Directory.Build.props Attempt to retarget tests to .NET 6.0 (#6367) 2022-10-18 08:29:37 -07:00
Directory.Build.targets Attempt to retarget tests to .NET 6.0 (#6367) 2022-10-18 08:29:37 -07:00
ISSUE_TEMPLATE.md Update ISSUE_TEMPLATE.md 2018-05-06 20:32:33 -07:00
LICENSE fixing license (#6689) 2023-05-16 14:02:16 -06:00
Microsoft.ML.sln Add performance benchmarks for dataframe arithmetic operations (#6827) 2023-09-26 10:23:39 -07:00
NuGet.config Changes some of the CPU Math implemenation from our current version to use the new TensorPrimitives package. (#6875) 2023-11-14 22:46:15 -07:00
PULL_REQUEST_TEMPLATE.md Update PULL_REQUEST_TEMPLATE.md 2018-05-06 20:43:27 -07:00
README-oneDAL.md Onedal algorithms backed by nuget packages (#6521) 2022-12-21 12:54:13 -08:00
README.ko-KR.md Attempt to retarget tests to .NET 6.0 (#6367) 2022-10-18 08:29:37 -07:00
README.md Updates to official build pipeline (#6423) 2022-11-02 08:53:21 -07:00
ROADMAP.md Minor nits (#6480) 2023-04-18 17:34:26 -06:00
SECURITY.md Add SECURITY.md (#6420) 2022-11-01 12:30:06 -07:00
THIRD-PARTY-NOTICES.TXT Increase performance of arithmetic operations by enhancing calculations on nullable values (#6846) 2023-10-02 17:04:03 -07:00
build.cmd Fix warnings and enable warningsAsError (#6385) 2022-10-18 08:44:59 -07:00
build.sh Merge arcade to master (#5525) 2020-12-02 17:13:27 -08:00
codecov.yml Enhance code coverage bot message. (#2235) 2019-02-19 18:06:03 -08:00
dir.traversal.targets Initial commit 2018-05-03 17:22:00 -07:00
global.json Update dependencies from https://github.com/dotnet/arcade build 20230515.1 (#6691) 2023-05-18 15:17:45 -06:00
restore.cmd Fix warnings and enable warningsAsError (#6385) 2022-10-18 08:44:59 -07:00
restore.sh Fix warnings and enable warningsAsError (#6385) 2022-10-18 08:44:59 -07:00

README.md

Machine Learning for .NET

ML.NET is a cross-platform open-source machine learning (ML) framework for .NET.

ML.NET allows developers to easily build, train, deploy, and consume custom models in their .NET applications without requiring prior expertise in developing machine learning models or experience with other programming languages like Python or R. The framework provides data loading from files and databases, enables data transformations, and includes many ML algorithms.

With ML.NET, you can train models for a variety of scenarios, like classification, forecasting, and anomaly detection.

You can also consume both TensorFlow and ONNX models within ML.NET which makes the framework more extensible and expands the number of supported scenarios.

Getting started with machine learning and ML.NET

Roadmap

Take a look at ML.NET's Roadmap to see what the team plans to work on in the next year.

Operating systems and processor architectures supported by ML.NET

ML.NET runs on Windows, Linux, and macOS using .NET Core, or Windows using .NET Framework.

ML.NET also runs on ARM64, Apple M1, and Blazor Web Assembly. However, there are some limitations.

64-bit is supported on all platforms. 32-bit is supported on Windows, except for TensorFlow and LightGBM related functionality.

ML.NET NuGet packages status

NuGet Status

Release notes

Check out the release notes to see what's new. You can also read the blog posts for more details about each release.

Using ML.NET packages

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

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 Azure DevOps feed:

https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries/nuget/v3/index.json

Building ML.NET (For contributors building ML.NET open source code)

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

codecov

Debug Release
CentOS Build Status Build Status
Ubuntu Build Status Build Status
macOS Build Status Build Status
Windows x64 Build Status Build Status
Windows FullFramework Build Status Build Status
Windows x86 Build Status Build Status
Windows NetCore3.1 Build Status Build Status

Release process and versioning

Major releases of ML.NET are shipped once a year with the major .NET releases, starting with ML.NET 1.7 in November 2021 with .NET 6, then ML.NET 2.0 with .NET 7, etc. We will maintain release branches to optionally service ML.NET with bug fixes and/or minor features on the same cadence as .NET servicing.

Check out the Release Notes to see all of the past ML.NET releases.

Contributing

We welcome contributions! Please review our contribution guide.

Community

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.

Code examples

Here is a code snippet for training a model to predict sentiment from text samples. You can find complete samples in the 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 = mlContext.Model.CreatePredictionEngine<SentimentData, SentimentPrediction>(model);
var prediction = predictionEngine.Predict(new SentimentData
{
    SentimentText = "Today is a great day!"
});
Console.WriteLine("prediction: " + prediction.Prediction);

License

ML.NET is licensed under the MIT license, and it is free to use commercially.

.NET Foundation

ML.NET is a part of the .NET Foundation.