zzh8829 / yolov3-tf2

YoloV3 Implemented in Tensorflow 2.0

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Convert.py does not produce yolov3.tf

kalikhademi opened this issue · comments

Hi

I am running convert.py on darknet original weights. It does not produce any error but it does not produce yolov3.tf although I put it as the output file. It produces the following files.
Screen Shot 2021-06-22 at 9 08 51 AM

I appreciate if anyone can help me about this.

It doesn't matter if the extensions are not the same. Run the inference still with 'yolov3.tf', and it correctly reads the data automatically.

Thanks! I used the .tf in the detect.py and it worked but in the training .tf was not working.

Hi @kalikhademi
In train.py if you are loading weights from .tf file please replace the model.load_weights(FLAGS.weights) with model.load_weights(FLAGS.weights).expect_partial()