Closed Ketsuko closed 5 years ago
Hi @Ketsuko , thanks for reporting this issue. The Tile
op should be supported (see here). Could you try again with the following setup?
pip install coremltools==3.0b5
pip install tfcoreml==0.4.0b1
You'll need to enable use_coreml_3=True
flag when calling tf_converter.convert()
method as in the (readme). Let us know if this doesn't work for you. Thanks!
Hi everyone, in my quest of converting a tensorflow saved model to a coreml model, I'm facing some issues. So far, I have a TF saved model, I opened it and froze to graph to a single .pb file
Then, I'm trying to convert it into a .mlmodel file However, when I'm running the current line:
tf_converter.convert(tf_model_path='./model.pb', mlmodel_path='my_model.mlmodel', output_feature_names=['descriptor:0'], input_name_shape_dict={'image:0' : [1, 224, 224, 1]})
Python raises this error:
NotImplementedError Traceback (most recent call last)