How can I convert yolo weights to tflite file
问题 I will use yolo weights in android so I plan to convert yolo weights file to tflite file. I use this code in anaconda prompt because I downloaded keras library in env. activate env python convert.py yolov3.cfg yolov3.weights model_data/yolo.h5 Finally, it did.Saved Keras model to model_data/yolo.h5 And I'm going to convert this h5 file to tflite file in jupyter notebook with this code. model = tf.keras.models.load_model("./yolo/yolo.h5", compile=False) converter = tf.lite.TFLiteConverter.from