i'm converting my custom weights file to tflite by using open source from https://github.com/haroonshakeel/tensorflow-yolov4-tflite.
there is no error when i convert Yolov4.weights to tflite but when i switch to Yolov4-tiny.weights i got an error like this
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)
does anyone knows how to fix this problem? Thank you