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
This caffe model, when python3 caffemodel2pytorch.py conv3d_deepnetA_sport1m_iter_1900000 -o conv3d_deepnetA_sport1m_iter_1900000.h5 errors out because net_param.layers contains blobs, but these blobs do not contain a data field, but many diff fields (one per weight)
I don't know why this is the case. I assume it is due to an older caffe version used
Please kindly add support for these kind of models as well
The text was updated successfully, but these errors were encountered:
Sorry, I don't develop this library anymore :( I can answer questions about the codebase, but I'm not working on it anymore.
You'd have to modify it yourself (e.g. somehow ignore those blobs? or provide dummy values for data field if it makes sense). If you do, please be welcome to submit a PR.
The original C3D model (used by the fantastic anomaly detection work of Waqas https://github.com/WaqasSultani/AnomalyDetectionCVPR2018) can be downloaded from here http://vlg.cs.dartmouth.edu/c3d/ (direct link: https://www.dropbox.com/s/vr8ckp0pxgbldhs/conv3d_deepnetA_sport1m_iter_1900000?dl=0 )
This caffe model, when
python3 caffemodel2pytorch.py conv3d_deepnetA_sport1m_iter_1900000 -o conv3d_deepnetA_sport1m_iter_1900000.h5
errors out becausenet_param.layers
containsblobs
, but theseblobs
do not contain adata
field, but manydiff
fields (one per weight)I don't know why this is the case. I assume it is due to an older caffe version used
Please kindly add support for these kind of models as well
The text was updated successfully, but these errors were encountered: