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
+37-9
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,5 @@
1
1
# Yet-Another-YOLOv4-Pytorch
2
+

2
3
3
4
This is implementation of YOLOv4 object detection neural network on pytorch. I'll try to implement all features of original paper.
4
5
@@ -14,12 +15,26 @@ This is implementation of YOLOv4 object detection neural network on pytorch. I'l
14
15
-[ ] Self attention attack
15
16
-[ ] Notebook with guide
16
17
18
+
## What you can already do
19
+
You can use video_demo.py to take a look at the original weights realtime OD detection. (Have 9 fps on my GTX1060 laptop!!!)
20
+

21
+
22
+
You can train your own model with mosaic augmentation for training. Guides how to do this are written below. Borders of images on some datasets are even hard to find.
23
+

24
+
25
+
26
+
You can make inference, guide bellow.
27
+
28
+
17
29
## Initialize NN
18
30
19
31
import model
20
32
#If you change n_classes from the pretrained, there will be caught one error, don't panic it is ok
21
33
m = model.YOLOv4(n_classes=1, weights_path="weights/yolov4.pth")
22
34
35
+
## Download weights
36
+
You can download weights using from this link: https://drive.google.com/open?id=12AaR4fvIQPZ468vhm0ZYZSLgWac2HBnq
0 commit comments