ML.NET.Templates is a collection of dotnet new
templates for ML.NET.
To install the dotnet new
templates, run the following
dotnet new --install ML.NET.Templates::0.4.0-beta
mlnetVersion
is optional and defaults to 1.5.4
The template bootstraps a .NET Core console app that can be used to train a ML.NET
model.
dotnet new mlnet-training --mlnetVersion 1.5.4
The template bootstraps a .NET Core console app that can be used to train a ML.NET
model. The template includes support for MLOps.NET to track your models performance and life-cycle. mlopsnetVersion
is optional and defaults to 1.3.0
dotnet new mlnet-training-mlops --mlnetVersion 1.5.4 --mlopsnetVersion 1.3.0
The template bootstraps an ASP.NET Core Web App with an embedded ML.NET
model and Docker support
dotnet new mlnet-web-embedded --mlnetVersion 1.5.4
Add dotnet new
template for the following scenarios
- ASP.NET Core with model accessed from URI
- Azure Function with model accessed from URI
- Custom scenarios, e.g. image classification, object detection, ONNX etc.
Have an idea? Feel free to open an issue!