Commit 9996bdf3 authored by MithilaGunasinghe's avatar MithilaGunasinghe

convert keras model into tflite model

parent 246f0ea4
'''
Author : Gunasinghe M.D.
IT NUM : IT17043342
'''
import tensorflow as tf
converter = tf.lite.TFLiteConverter.from_keras_model_file('shapes_classification.h5')
tfmodel = converter.convert()
open ("model.tflite" , "wb") .write(tfmodel)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment