Skip to content

Commit 8348667

Browse files
committed
Fix minor issue in displaying directory structures
1 parent 658fa33 commit 8348667

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/source/training.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -389,10 +389,10 @@ model, our ``training_demo`` directory should now look as follows:
389389
training_demo/
390390
├─ ...
391391
├─ pre-trained-models/
392-
| └─ ssd_resnet50_v1_fpn_640x640_coco17_tpu-8/
393-
| ├─ checkpoint/
392+
└─ ssd_resnet50_v1_fpn_640x640_coco17_tpu-8/
393+
├─ checkpoint/
394394
│ ├─ saved_model/
395-
| └─ pipeline.config
395+
└─ pipeline.config
396396
└─ ...
397397
398398
Note that the above process can be repeated for all other pre-trained models you wish to experiment
@@ -407,11 +407,11 @@ model, you can download the model and after extracting its context the demo dire
407407
│ ├─ efficientdet_d1_coco17_tpu-32/
408408
│ │ ├─ checkpoint/
409409
│ │ ├─ saved_model/
410-
| │ └─ pipeline.config
410+
│ └─ pipeline.config
411411
│ └─ ssd_resnet50_v1_fpn_640x640_coco17_tpu-8/
412-
| ├─ checkpoint/
412+
├─ checkpoint/
413413
│ ├─ saved_model/
414-
| └─ pipeline.config
414+
└─ pipeline.config
415415
└─ ...
416416
417417
.. _training_pipeline_conf:
@@ -430,7 +430,7 @@ like this:
430430
├─ ...
431431
├─ models/
432432
│ └─ my_ssd_resnet50_v1_fpn/
433-
| └─ pipeline.config
433+
└─ pipeline.config
434434
└─ ...
435435
436436
Now, let's have a look at the changes that we shall need to apply to the ``pipeline.config`` file
@@ -648,9 +648,9 @@ After the above process has completed, you should find a new folder ``my_model``
648648
├─ ...
649649
├─ exported-models/
650650
│ └─ my_model/
651-
| ├─ checkpoint/
652-
| ├─ saved_model/
653-
| └─ pipeline.config
651+
├─ checkpoint/
652+
├─ saved_model/
653+
└─ pipeline.config
654654
└─ ...
655655
656656
This model can then be used to perform inference.

0 commit comments

Comments
 (0)