I trained my model on colab. The prediction worked well using the .pb and .meta files. But when i tried prediction in the local machine, this error was shown:
Traceback (most recent call last):
File "/home/sreerag/python36/darkflow_inference/on_small_plate.py", line 16, in <module>
tfnet = TFNet( options )
File "/home/sreerag/.local/lib/python3.6/site-packages/darkflow/net/build.py", line 54, in __init__
self.build_from_pb()
File "/home/sreerag/.local/lib/python3.6/site-packages/darkflow/net/build.py", line 83, in build_from_pb
graph_def.ParseFromString(f.read())
google.protobuf.message.DecodeError: Error parsing message
I trained my model on colab. The prediction worked well using the .pb and .meta files. But when i tried prediction in the local machine, this error was shown:
where
Is this any issue regarding compatibility, since i trained the model in colab, or something else?