Open bsugerman opened 4 years ago
Many thanks for suggestion. All the .cfg files in this repo are from official darknet code base and currently their purpose are only converting darknet pretrained .weights to keras .h5 model file, in order to quickly model verification. Normal model construction here will still use keras native code, so that we can leverage rich types of backbone implementation in keras/tf.keras and their official pretrained weights, to easily build different YOLO model structure.
Are the darknet
.cfg
files that define models used for anything other than conversion of darknet .weights to keras .h5? It seems overly complicated to need to use thecfg
files and the models defined natively within keras. There are some keras version of yolo that seem to use the .weights files directly, rather than needing to convert them, such ashttps://github.com/experiencor/keras-yolo3/blob/master/yolo3_one_file_to_detect_them_all.py
Figured it is worth bringing that to your attention.