в тензорном потоке 2.2, я обучаю модель mobileNetv1 и получаю файл .h5, теперь я хочу преобразовать его в файл .tflite для приложения android, но получаю сообщение об ошибке типа title. вот мой код:
model = load_model(h5path)
converter = tf.lite.TFLiteConverter.from_keras_model(model)
litemodel = converter.convert()
open(litepath,"wb").write(litemodel)
вот моя ошибка:
tensorflow.lite.python.convert.ConverterError: Could not find toco_from_protos binary, make sure your virtualenv bin directory or pip local bin directory is in your path.
In particular, if you have installed TensorFlow with --user, make sure you add the install directory to your path.
For example:
Linux: export PATH=$PATH:~/.local/bin/
Mac: export PATH=$PATH:~/Library/Python/<version#>/bin
Alternative, use virtualenv.
пожалуйста, помогите мне с моей головоломкой.
Сервер системы Linux.