Skip to content

Commit 8697bec

Browse files
Added front-matter for samples (dotnet#805)
1 parent 04076c5 commit 8697bec

File tree

4 files changed

+17
-55
lines changed

4 files changed

+17
-55
lines changed

samples/modelbuilder/ImageClassification_Azure_LandUse/LandUseAPI/Controllers/ClassificationController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public async Task<string> ClassifyImage([FromBody] Dictionary<string, string> in
4040

4141
lock (_predictionEngineLock)
4242
{
43-
// Use Prediction to classify image
43+
// Use PredictionEngine to classify image
4444
ModelOutput output = _predictionEngine.Predict(new ModelInput { ImageSource = imagePath });
4545
prediction = output.Prediction;
4646
}

samples/modelbuilder/ImageClassification_Azure_LandUse/LandUseAPI/Controllers/WeatherForecastController.cs

Lines changed: 0 additions & 39 deletions
This file was deleted.

samples/modelbuilder/ImageClassification_Azure_LandUse/LandUseAPI/WeatherForecast.cs

Lines changed: 0 additions & 15 deletions
This file was deleted.

samples/modelbuilder/ImageClassification_Azure_LandUse/README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
---
2+
page_type: sample
3+
name: "Train a deep learning image classification model in Azure with ML.NET Model Builder"
4+
description: "Use ML.NET Model Builder to train a deep learning image classification model in Azure"
5+
urlFragment: "mlnet-image-classification-azure-model-builder"
6+
languages:
7+
- csharp
8+
products:
9+
- dotnet
10+
- dotnet-core
11+
- aspnet-core
12+
- vs
13+
- windows
14+
- windows-uwp
15+
---
16+
117
# Image Classification in Azure with Model Builder
218

319
| ML.NET version | Status | App Type | Data type | Scenario | ML Task | Algorithms |

0 commit comments

Comments
 (0)