Cattle Weight Detection Model

Hello. I am wondering if there is a way to create a Tensorflowlite model with the existing model in this database?

https://www.kaggle.com/datasets/sadhliroomyprime/cattle-weight-detection-model-dataset-12k/discussion/393162

Hi @Agro_Consultant, The link you have provided only has the dataset but does not contain any model. Generally, to convert a tensorflow keras model to tesorflow lite model we use TFLite converter.

converter = tf.lite.TFLiteConverter.from_keras_model(model)
tflite_model = converter.convert()

# Save the model.
with open('model.tflite', 'wb') as f:
  f.write(tflite_model)

Thank You.