From dfdd2d31fd8b8b3e13ff0209cc39ca72929d6fab Mon Sep 17 00:00:00 2001 From: Alexander Slotte Date: Sun, 23 Aug 2020 14:53:25 -0400 Subject: [PATCH] Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d5461d5..2914c20 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,12 @@ The template bootstraps a .NET Core console app that can be used to train a `ML. dotnet new mlnet-training --mlnetVersion 1.5.1 ``` +### 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.1.0 +``` +dotnet new mlnet-training-mlops --mlnetVersion 1.5.1 --mlnetopsVersion 1.1.0 +``` + ### mlnet-web-embedded The template bootstraps an ASP.NET Core Web App with an embedded `ML.NET` model and Docker support ``` @@ -27,7 +33,6 @@ dotnet new mlnet-web-embedded --mlnetVersion 1.5.1 ## Ideas Add `dotnet new` template for the following scenarios -- ML.NET Console App with MLOps.NET support - 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.