From 64cbdc0d6666476c36487a97ef398d82929aa54b Mon Sep 17 00:00:00 2001 From: MoziVi Date: Thu, 5 Jun 2025 17:32:25 +0100 Subject: [PATCH] Update sentiment-analysis-model-builder.md Correcting an incorrect extension used in the documentation related to a generated ML.NET model file. --- .../tutorials/sentiment-analysis-model-builder.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/machine-learning/tutorials/sentiment-analysis-model-builder.md b/docs/machine-learning/tutorials/sentiment-analysis-model-builder.md index 074f198afd62a..b2edf6ca562a2 100644 --- a/docs/machine-learning/tutorials/sentiment-analysis-model-builder.md +++ b/docs/machine-learning/tutorials/sentiment-analysis-model-builder.md @@ -98,7 +98,7 @@ The machine learning task used to train the sentiment analysis model in this tut - *SentimentAnalysis.consumption.cs* - This file contains the `ModelInput` and `ModelOutput` schemas as well as the `Predict` function generated for consuming the model. - *SentimentAnalysis.training.cs* - This file contains the training pipeline (data transforms, trainer, trainer hyperparameters) chosen by Model Builder to train the model. You can use this pipeline for re-training your model. - - **SentimentAnalysis.zip* - This is a serialized zip file which represents your trained ML.NET model. + - **SentimentAnalysis.mlnet* - This file contains metadata and configuration details for an ML.NET model. 1. Select the **Next step** button to move to the next step. @@ -144,7 +144,7 @@ To make a single prediction, you have to create a () - .FromFile("SentimentAnalysis.zip"); + .FromFile("SentimentAnalysis.mlnet"); ``` ### Create sentiment analysis handler