Skip to content

Commit 9c887ef

Browse files
committed
update readme
1 parent 790b635 commit 9c887ef

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### 1. Introduction
44

5-
This is my implementation of [YOLOv3](https://pjreddie.com/media/files/papers/YOLOv3.pdf) in pure TensorFlow. It contains the full pipeline of training and evaluation on your own dataset. The keys features of this repo are:
5+
This is my implementation of [YOLOv3](https://pjreddie.com/media/files/papers/YOLOv3.pdf) in pure TensorFlow. It contains the full pipeline of training and evaluation on your own dataset. The key features of this repo are:
66

77
- Efficient tf.data pipeline
88
- Weights converter (converting pretrained darknet weights on COCO dataset to TensorFlow checkpoint.)
@@ -52,7 +52,9 @@ Some results:
5252

5353
![](https://github.com/wizyoung/YOLOv3_TensorFlow/blob/master/data/demo_data/results/kite.jpg?raw=true)
5454

55-
(The kite result is under image resolution 1344x896)
55+
Compare the kite detection results with TensorFlow's offical API result [here](https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/img/kites_detections_output.jpg).
56+
57+
(The kite detection result is under input image resolution 1344x896)
5658

5759
#### 5. Inference speed
5860

@@ -70,7 +72,7 @@ How fast is the inference speed? With images scaled to 416*416:
7072

7173
(1) annotation file
7274

73-
Generate `train.txt/val.txt/test.txt` files under `./data/my_data/` directory. One line for one image, in the format like `image_absolute_path box_1 box_2 ... box_n`. Box_format: `label_index x_min y_min x_max y_max`.
75+
Generate `train.txt/val.txt/test.txt` files under `./data/my_data/` directory. One line for one image, in the format like `image_absolute_path box_1 box_2 ... box_n`. Box_format: `label_index x_min y_min x_max y_max`.(The origin of coordinates is at the left top corner.)
7476

7577
For example:
7678

@@ -184,7 +186,7 @@ There are many skills you can try during training:
184186
185187
(1) Data augmentation: You can implement your data augmentation like color jittering under `data_augmentation` method in `./utils/data_utils.py`.
186188
187-
(2) Mutil-scale training: You can change the input image scales periodically like the author does in the original paper.
189+
(2) Mutil-scale training: You can change the input image scales (i.e. different input resolutions) periodically like the author does in the original paper.
188190
189191
-------
190192

0 commit comments

Comments
 (0)