cis-apoorv

Results 7 comments of cis-apoorv

Facing the exact same issue. Did you find any solution for this? @wangyi1177

I had observed the same thing @wangyi1177.

Hello @wangyi1177 ! I've got it running by manually saving the weights. You can edit save_model.py and just add: ` model.save_weights(FLAGS.weights)` after: `utils.load_weights(model, FLAGS.weights, FLAGS.model, FLAGS.tiny)` model.save() is unable to...

Hello @yieniggu , @nishantr05 , and @kevinhey Please replace: `utils.load_weights(model, FLAGS.weights, FLAGS.model, FLAGS.tiny)` in saved_model.py with: ``` model.save_weights(FLAGS.weights) model.load_weights(FLAGS.weights) ```

Hi @yieniggu You are right it will prohibit you to use the tiny version. So instead what you can do is, first save and load the model using: ``` model.save_weights(FLAGS.weights)...

Hello @SKH93, What I mean to say is, in save_model.py file append: ``` model.save_weights(FLAGS.weights) model.load_weights(FLAGS.weights) ``` above: `utils.load_weights(model, FLAGS.weights, FLAGS.model, FLAGS.tiny)` This works for both yolov4 and tiny-yolov4.

Did you solve this issue @GOBish ?