Skip to content

YOLOv11 TFLite Model: 100% Accuracy in Ultralytics, 0% in TensorFlow

A YOLOv11 model, trained on the Roboflow ALPR dataset for license plate recognition, was converted to TFLite format. When using Ultralytics’ inference pipeline, both the original .pt and the converted .tflite models achieve 100% accuracy in detecting Persian numbers. However, when the same TFLite model is used directly with TensorFlow, it fails to produce correct detections, with output data either incorrect or missing. The model was trained with images sized at 640×640 pixels and a batch size of 1. The discrepancy in performance between the two platforms raises questions about necessary preprocessing or post-processing steps for TensorFlow inference. The model can be tested using a provided download link.

Source: stackoverflow.com

Related Links

Related Videos