mirror of https://github.com/AlexeyAB/darknet.git
Update Readme.md
This commit is contained in:
parent
08e8e0c8c2
commit
2c5e383c04
|
@ -481,8 +481,8 @@ Example of custom object detection: `darknet.exe detector test data/obj.data yol
|
|||
|
||||
* Increase network-resolution by set in your `.cfg`-file (`height=608` and `width=608`) or (`height=832` and `width=832`) or (any value multiple of 32) - this increases the precision and makes it possible to detect small objects: [link](https://github.com/AlexeyAB/darknet/blob/0039fd26786ab5f71d5af725fc18b3f521e7acfd/cfg/yolov3.cfg#L8-L9)
|
||||
|
||||
* you do not need to train the network again, just use `.weights`-file already trained for 416x416 resolution
|
||||
* if error `Out of memory` occurs then in `.cfg`-file you should increase `subdivisions=16`, 32 or 64: [link](https://github.com/AlexeyAB/darknet/blob/0039fd26786ab5f71d5af725fc18b3f521e7acfd/cfg/yolov3.cfg#L4)
|
||||
* it is not necessary to train the network again, just use `.weights`-file already trained for 416x416 resolution
|
||||
* but to get even greater accuracy you should train with higher resolution 608x608 or 832x832, note: if error `Out of memory` occurs then in `.cfg`-file you should increase `subdivisions=16`, 32 or 64: [link](https://github.com/AlexeyAB/darknet/blob/0039fd26786ab5f71d5af725fc18b3f521e7acfd/cfg/yolov3.cfg#L4)
|
||||
|
||||
## How to mark bounded boxes of objects and create annotation files:
|
||||
|
||||
|
|
Loading…
Reference in New Issue