Open Bienqq opened 5 years ago
in the training process, have the test loss ever been Nan?
No, the training itself was without problems. I tried again and the results are quite good, it's possible that earlier I made some mistake.
I use my trained model to generate .pb files(use convert_weights).The following questions occur, do you know what is going on?Thanks
Traceback (most recent call last):
File "/home/lmy/Downloads/tensorflow-yolov3-master-kitti-dense/convert_weight.py", line 55, in
I use my trained model to generate .pb files(use convert_weights).The following questions occur, do you know what is going on?Thanks
Traceback (most recent call last): File "/home/lmy/Downloads/tensorflow-yolov3-master-kitti-dense/convert_weight.py", line 55, in raise RuntimeError RuntimeError
same,how to fix it
Hello,
I was trying to perform yolov3 transfer learning, I started from train from COCO weights as described in README. In my coco2017 dataset I have only vehicles - 5 classes. In orginal model there are 80 classes. I used scripts from this repository to perform training and model export with following configuration:
config.py
my_classes.names
Training, convert_weights, and export freeze_graph was successful and I received my_yolov3.pb file which next I used in my video detector.
But the detection results are really bad, they are definitely worse than using initial pretrained model... The detector can not find any objects.
Is it possible that such poor results are caused by a reduction in the number of classes from 80 to 5 ? Needs some changes in configuration ? Or any ideas what went wrong?