我正在使用来自https://github.com/haroonshakeel/tensorflow-yolov4-tflite的开源将我的自定义权重文件转换为 tflite 。
当我将 Yolov4.weights 转换为 tflite 时没有错误,但是当我切换到 Yolov4-tiny.weights 时出现这样的错误
conv_weights = conv_weights.reshape(conv_shape).transpose([2, 3, 1, 0])
ValueError: cannot reshape array of size 372388 into shape (256,256,3,3)
有谁知道如何解决这个问题?谢谢