Open harshap-ai opened 3 years ago
for linux try install from package repo https://www.tensorflow.org/lite/guide/python#install_tensorflow_lite_for_python
or you can use Tensorflow python instead
self.interpreter = tflite.Interpreter(model_path=MODEL_PATH)
change to
self.interpreter = tf.lite.Interpreter(model_path=MODEL_PATH)
Hey,
When I try to run "requirement.txt" in Colab, I'm getting the following error message.
ERROR: Could not find a version that satisfies the requirement tflite_runtime (from -r requirement.txt (line 1)) (from versions: none) ERROR: No matching distribution found for tflite_runtime (from -r requirement.txt (line 1))
Is this because of some dependency issue or deprecation? How to bypass?