Skip to content

Commit ac4f0e0

Browse files
authored
Update sentiment-analysis-model-builder.md (#46584)
Correcting an incorrect extension used in the documentation related to a generated ML.NET model file.
1 parent 10ed458 commit ac4f0e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/machine-learning/tutorials/sentiment-analysis-model-builder.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ The machine learning task used to train the sentiment analysis model in this tut
9898

9999
- *SentimentAnalysis.consumption.cs* - This file contains the `ModelInput` and `ModelOutput` schemas as well as the `Predict` function generated for consuming the model.
100100
- *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.
101-
- **SentimentAnalysis.zip* - This is a serialized zip file which represents your trained ML.NET model.
101+
- **SentimentAnalysis.mlnet* - This file contains metadata and configuration details for an ML.NET model.
102102

103103
1. Select the **Next step** button to move to the next step.
104104

@@ -144,7 +144,7 @@ To make a single prediction, you have to create a <xref:Microsoft.ML.PredictionE
144144

145145
```csharp
146146
builder.Services.AddPredictionEnginePool<ModelInput, ModelOutput>()
147-
.FromFile("SentimentAnalysis.zip");
147+
.FromFile("SentimentAnalysis.mlnet");
148148
```
149149

150150
### Create sentiment analysis handler

0 commit comments

Comments
 (0)