Skip to content

Commit 60af910

Browse files
author
shubham soni
committed
typo
1 parent 0dc0ce8 commit 60af910

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

articles/machine-learning/how-to-auto-train-image-models.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,8 +287,8 @@ An AutoML training job uses a primary metric for model optimization and hyperpar
287287

288288
* [Accuracy](https://scikit-learn.org/stable/modules/generated/sklearn.metrics.accuracy_score.html) for image classification
289289
* [Intersection over union](https://scikit-learn.org/stable/modules/generated/sklearn.metrics.jaccard_score.html) for image classification multilabel
290-
* [Mean average precision](how-to-understand-automated-ml#object-detection-and-instance-segmentation-metrics) for image object detection
291-
* [Mean average precision](how-to-understand-automated-ml#object-detection-and-instance-segmentation-metrics) for image instance segmentation
290+
* [Mean average precision](how-to-understand-automated-ml.md#object-detection-and-instance-segmentation-metrics) for image object detection
291+
* [Mean average precision](how-to-understand-automated-ml.md#object-detection-and-instance-segmentation-metrics) for image instance segmentation
292292

293293
### Job limits
294294

articles/machine-learning/v1/how-to-inference-onnx-automl-image-models-v1.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ automl_image_run = AutoMLRun(experiment=experiment, run_id=run_id)
124124
best_child_run = automl_image_run.get_best_child()
125125
```
126126

127-
Use the following model specific arguments to submit the script. For more details on arguments, refer to [model specific hyperparameters](reference-automl-images-hyperparameters-v1.md#model-specific-hyperparameters) and for supported object detection model names refer to the [supported model architectures section](how-to-auto-train-image-models-v1.md#supported-model-architectures).
127+
Use the following model specific arguments to submit the script. For more details on arguments, refer to [model specific hyperparameters](reference-automl-images-hyperparameters-v1.md#model-specific-hyperparameters) and for supported object detection model names refer to the [supported model algorithms section](how-to-auto-train-image-models-v1.md#supported-model-algorithms).
128128

129129
To get the argument values needed to create the batch scoring model, refer to the scoring scripts generated under the outputs folder of the AutoML training runs. Use the hyperparameter values available in the model settings variable inside the scoring file for the best child run.
130130

@@ -713,7 +713,7 @@ assert batch_size == img_data.shape[0]
713713

714714
# [Object detection with Faster R-CNN or RetinaNet](#tab/object-detect-cnn)
715715

716-
For object detection with the Faster R-CNN architecture, follow the same preprocessing steps as image classification, except for image cropping. You can resize the image with height `600` and width `800`. You can get the expected input height and width with the following code.
716+
For object detection with the Faster R-CNN algorithm, follow the same preprocessing steps as image classification, except for image cropping. You can resize the image with height `600` and width `800`. You can get the expected input height and width with the following code.
717717

718718
```python
719719
batch, channel, height_onnx, width_onnx = session.get_inputs()[0].shape
@@ -776,7 +776,7 @@ assert batch_size == img_data.shape[0]
776776

777777
# [Object detection with YOLO](#tab/object-detect-yolo)
778778

779-
For object detection with the YOLO architecture, follow the same preprocessing steps as image classification, except for image cropping. You can resize the image with height `600` and width `800`, and get the expected input height and width with the following code.
779+
For object detection with the YOLO algorithm, follow the same preprocessing steps as image classification, except for image cropping. You can resize the image with height `600` and width `800`, and get the expected input height and width with the following code.
780780

781781
```python
782782
batch, channel, height_onnx, width_onnx = session.get_inputs()[0].shape

0 commit comments

Comments
 (0)