I am trying to train the model from scratch, but apparently it is expecting a weights file. Even if we don't provide one, it is taking a default non-existing file as a parameter.
FileNotFoundError: [Errno 2] No such file or directory: 'weight/mobilenetv3.pth'
So you basically know what is happenning and I assume you can easily write a random initialize function for the mobilenet-YOLOV4 to replace the default weight which you don't have.
I am trying to train the model from scratch, but apparently it is expecting a weights file. Even if we don't provide one, it is taking a default non-existing file as a parameter. FileNotFoundError: [Errno 2] No such file or directory: 'weight/mobilenetv3.pth'