Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9f66e84

Browse files
committedOct 7, 2021
image links
1 parent b6f745b commit 9f66e84

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed
 

‎articles/machine-learning/how-to-use-automl-small-object-detect.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To help with this problem, automated ML supports tiling as part of the public pr
2323

2424
When tiling, each image is divided into a grid of tiles. Adjacent tiles overlap with each other in width and height dimensions. The tiles are cropped from the original as shown in the following image.
2525

26-
![Tiles generation](./media/how-to-use-automl-train-small-object-detect/tiles-generation.jpg)
26+
![Tiles generation](./media/how-to-use-automl-small-object-detect/tiles-generation.png)
2727

2828
## Prerequisites
2929

@@ -90,7 +90,7 @@ The following are the parameters you can use to control the tiling feature.
9090

9191
When a model trained with tiling is deployed, tiling also occurs during inference. Automated ML uses the `tile_grid_size` value from training to generate the tiles during inference. The entire image and corresponding tiles are passed through the model, and the object proposals from them are merged to output final predictions, like in the following image.
9292

93-
![Object proposals merge](./media/how-to-use-automl-train-small-object-detect/tiles-merge.jpg)
93+
![Object proposals merge](./media/how-to-use-automl-small-object-detect/tiles-merge.png)
9494

9595
You also have the option to enable tiling only during inference without enabling it in training. To do so, set the `tile_grid_size` parameter only during inference, not for training.
9696

Loading

0 commit comments

Comments
 (0)
Please sign in to comment.