You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
### 1. Introduction
4
4
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:
6
6
7
7
- Efficient tf.data pipeline
8
8
- Weights converter (converting pretrained darknet weights on COCO dataset to TensorFlow checkpoint.)
(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)
56
58
57
59
#### 5. Inference speed
58
60
@@ -70,7 +72,7 @@ How fast is the inference speed? With images scaled to 416*416:
70
72
71
73
(1) annotation file
72
74
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.)
74
76
75
77
For example:
76
78
@@ -184,7 +186,7 @@ There are many skills you can try during training:
184
186
185
187
(1) Data augmentation: You can implement your data augmentation like color jittering under `data_augmentation` method in`./utils/data_utils.py`.
186
188
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.
0 commit comments