You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How I can export weight to Darknet (.weight) format instead PyTorch(.pt) without weights transpose? OpenCV throw exception with "Transpose the weights (except for convolutional) is not implemented"...
/* OpenCV check version */
bool transpose = (major_ver > 1000) || (minor_ver > 1000);
if(transpose)
CV_Error(cv::Error::StsNotImplemented, "Transpose the weights (except for convolutional) is not implemented");
The text was updated successfully, but these errors were encountered:
How I can export weight to Darknet (.weight) format instead PyTorch(.pt) without weights transpose? OpenCV throw exception with "Transpose the weights (except for convolutional) is not implemented"...
The text was updated successfully, but these errors were encountered: