caffemodel2pytorch icon indicating copy to clipboard operation
caffemodel2pytorch copied to clipboard

Convert Caffe models to PyTorch

Results 10 caffemodel2pytorch issues
Sort by recently updated
recently updated
newest added

Execuse me, could you provide a docker image to run the code?

I did it and got an error import caffemodel2pytorch as caffe caffe.set_mode_gpu() caffe.set_device(0) AttributeError Traceback (most recent call last) [](https://localhost:8080/#) in () 1 get_ipython().magic('cd /content/caffemodel2pytorch') 2 import caffemodel2pytorch as caffe...

when I run this repo, I got URLError. Do you know how to solve this problem?

Traceback (most recent call last): File "caffe2PytorchTry001.py", line 7, in caffe_proto = 'https://raw.githubuserco File "F:\Projects\VesselSupportClassify2\ self.net_param = initialize(caffe_proto File "F:\Projects\VesselSupportClassify2\ subprocess.check_call(['protoc', '--pro File "C:\Users\q\AppData\Local\Program retcode = call(*popenargs, **kwargs) File "C:\Users\q\AppData\Local\Program...

what is the version of the protobuf you use? I just copied ``` import torch from caffemodel2pytorch import caffemodel2pytorch model = caffemodel2pytorch.Net( prototxt = 'mobilenet_deploy.prototxt', weights = 'mobilenet.caffemodel', caffe_proto =...

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...

i tried do this : import torch import caffemodel2pytorch model = caffemodel2pytorch.Net( prototxt = 'VGG_ILSVRC_16_layers_deploy.prototxt', weights = 'VGG_ILSVRC_16_layers.caffemodel', caffe_proto = 'https://github.com/intel/caffe/blob/master/src/caffe/proto/caffe.proto/') model.cuda() model.eval() it just showed the error : 32...

Hi! I'm trying to run your example "Imitate pycaffe interface to help in porting", but an error pops up Traceback (most recent call last): File "py.py", line 9, in net...

Hey Vadim, In a fork I add 3D support and a Deconvolution layer. I put 2D layers and 3D layers in separate files. If you want I can make a...