Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.29 KB

README.md

File metadata and controls

40 lines (31 loc) · 1.29 KB

mlops.neticon

ML.NET.Templates

ML.NET.Templates is a collection of dotnet new templates for ML.NET.

How to use

To install the dotnet new templates, run the following

dotnet new --install ML.NET.Templates::0.4.0-beta

Templates

mlnetVersion is optional and defaults to 1.5.4

mlnet-training

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

mlnet-training-mlops

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

mlnet-web-embedded

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

Ideas

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!