We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Trying to convert any Caffe model in Python 3 will result in the following error:
--------------------------------------------------------------------------- ImportError Traceback (most recent call last) <ipython-input-2-0841eccd1027> in <module>() ----> 1 caffe_converter.convert('/Users/tobyroseman/Downloads/oxford102.caffemodel') /Users/tobyroseman/anaconda3/lib/python3.6/site-packages/coremltools/converters/caffe/_caffe_converter.py in convert(model, image_input_names, is_bgr, red_bias, blue_bias, green_bias, gray_bias, image_scale, class_labels, predicted_feature_name, model_precision) 181 blue_bias, 182 green_bias, gray_bias, image_scale, class_labels, --> 183 predicted_feature_name) 184 model = MLModel(model_path) 185 /Users/tobyroseman/anaconda3/lib/python3.6/site-packages/coremltools/converters/caffe/_caffe_converter.py in _export(filename, model, image_input_names, is_bgr, red_bias, blue_bias, green_bias, gray_bias, image_scale, class_labels, predicted_feature_name) 194 image_scale=1.0, 195 class_labels=None, predicted_feature_name=None): --> 196 from ... import libcaffeconverter 197 198 if isinstance(model, basestring): ImportError: dynamic module does not define module export function (PyInit_libcaffeconverter)
The text was updated successfully, but these errors were encountered:
Resolved by #98.
Sorry, something went wrong.
Add unconditional image generation (apple#79)
06c7973
* uP * finish downsampling layers * finish major refactor * remove bugus file
No branches or pull requests
Trying to convert any Caffe model in Python 3 will result in the following error:
The text was updated successfully, but these errors were encountered: