Skip to content

Commit d586e9b

Browse files
committed
Update Blog “production-ready-object-detection-model-training-workflow-with-hpe-machine-learning-development-environment”
1 parent 830437e commit d586e9b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/blog/production-ready-object-detection-model-training-workflow-with-hpe-machine-learning-development-environment.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Now that we have our Docker Engine installed and the PyTorch Container running,
7979

8080
# Part 2: Data Preparation
8181

82-
Note this Demo is based on ngc docker image `nvcr.io/nvidia/pytorch:21.11-py3`
82+
*Note this Demo is based on ngc docker image* `nvcr.io/nvidia/pytorch:21.11-py3`
8383

8484
This notebook walks you each step to train a model using containers from the NGC Catalog. We chose the GPU optimized Pytorch container as an example. The basics of working with docker containers apply to all NGC containers.
8585

@@ -150,7 +150,7 @@ You can also [download the dataset](https://challenge.xviewdataset.org/data-down
150150

151151
## 2. How to convert labels to coco format
152152

153-
Here we run a script to convert the dataset labels from .geojson format to COCO format. More details on the COCO format here:
153+
Here we run a script to convert the dataset labels from .geojson format to COCO format. [Read more details about the COCO format at this link.](https://www.immersivelimit.com/tutorials/create-coco-annotations-from-scratch)
154154

155155
The result will be two files (in COCO formal) generated `train.json` and `val.json`
156156

@@ -167,7 +167,7 @@ The result will be two files (in COCO formal) generated `train.json` and `val.js
167167

168168
## 3. Slicing/Tiling the Dataset
169169

170-
Here we are using the SAHI library to slice our large satellite images. Satellite images can be up to 50k^2 pixels in size, which wouldnt fit in GPU memory. We alleviate this problem by slicing the image.
170+
Here we are using the SAHI library to slice our large satellite images. Satellite images can be up to 50k^2 pixels in size, which wouldn't fit in GPU memory. We alleviate this problem by slicing the image.
171171

172172
```python
173173
!python data_utils/slice_coco.py --image_dir xview_dataset/train_images_rgb/ \

0 commit comments

Comments
 (0)