Open herywang opened 5 years ago
same issue
org_weights_num = len(org_weights_mess) cur_weights_num = len(cur_weights_mess) if cur_weights_num != org_weights_num: raise RuntimeError
I trained from scratch. Have no idea, why the length aren't equal.
我也遇到相同的问题,有人解决了吗? @YunYang1994 @ITKing80 @deepBrainWH ,谢谢
I used the convert weight from older commit, to get pretrained weights and rescale. Used the checkpoints with the latest code to train. Worked well.
@karanChrysalis How do you do about the problem?Can you elaborate on that?Thanks!
Hi, I had the same problem, but I could solve it by restoring the core/config.py file to the default one. I had changed it to fit my dataset.
Hi, I had the same problem, but I could solve it by restoring the core/config.py file to the default one. I had changed it to fit my dataset.
Can you please tell me how to restore core/config.py to the default one?
I have been getting this error
Traceback (most recent call last):
File "convert_weight.py", line 74, in
Hi, I had the same problem, but I could solve it by restoring the core/config.py file to the default one. I had changed it to fit my dataset.
Can you please tell me how to restore core/config.py to the default one? I have been getting this error Traceback (most recent call last): File "convert_weight.py", line 74, in raise RuntimeError RuntimeError Thank you.
just reclone the repo or dump the contents of https://github.com/YunYang1994/tensorflow-yolov3/blob/master/core/config.py into core/config.py
Same Error here. I trained from scratch. Who can give some advice ,thanks.
在 cmd 命令行下,运行 python convert_weight.py --train_from_coco.就可以解决 主要的原因是在config.py中,改变了__C.YOLO.CLASSES = "./data/classes/traffic.names"这个参数
我train from strach,然后用训练好的模型转换为.pb时,出现runtime error,具体是org_weights_num = len(org_weights_mess) cur_weights_num = len(cur_weights_mess) if cur_weights_num != org_weights_num: raise RuntimeError org_weights_num =1049, cur_weights_num =366出错的 请问是什么原因呢?
same issue
org_weights_num = len(org_weights_mess) cur_weights_num = len(cur_weights_mess) if cur_weights_num != org_weights_num: raise RuntimeError
I trained from scratch. Have no idea, why the length aren't equal.
have you solved the problem?I'm facing the same problem
Im facing the same issue. Any solution?