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
Now I know that this will take a while to run on a mobile phone but the end game is to run it on a GPU in OpenGL ES on Linux and Metal on Apple desktop.
Do you have any hints
To repeat here is the error message
File "/home/samh/anaconda3/envs/tensorflow-v1.13.1/lib/python3.6/site-packages/tensorflow/lite/python/interpreter_wrapper/tensorflow_wrap_interpreter_wrapper.py", line 109, in Invoke
return _tensorflow_wrap_interpreter_wrapper.InterpreterWrapper_Invoke(self)
RuntimeError: tensorflow/lite/kernels/depthwise_conv.cc:99 params->depth_multiplier * SizeOfDimension(input, 3) != SizeOfDimension(filter, 3) (0 != 64)Node number 33 (DEPTHWISE_CONV_2D) failed to prepare.
The text was updated successfully, but these errors were encountered:
Do you know how to produce a TFLite file of any arbitary dimension from the deeplab models here:
https://github.com/tensorflow/models/blob/master/research/deeplab/g3doc/model_zoo.md
I got pretty close.
I have some test code
Which executes flawlessly
but for my own model that I have converted
It is erroring on the line
.invoke()
the .pb file was created using the export_model.py script here:
https://github.com/tensorflow/models/blob/master/research/deeplab/export_model.py
Using the docs here
https://github.com/tensorflow/models/blob/master/research/deeplab/g3doc/export_model.md
It is an xception_65 model
I quantised as follows
Which ends cleanly.
Now I know that this will take a while to run on a mobile phone but the end game is to run it on a GPU in OpenGL ES on Linux and Metal on Apple desktop.
Do you have any hints
To repeat here is the error message
The text was updated successfully, but these errors were encountered: