Open gaikwadrahul8 opened 4 days ago
This issue originally reported by @Black3rror has been moved to this dedicated repository for LiteRT to enhance issue tracking and prioritization. To ensure continuity, we have created this new issue on your behalf.
We appreciate your understanding and look forward to your continued involvement.
System information
Steps to reproduce
model = tf.keras.models.Sequential([ tf.keras.layers.InputLayer(input_shape=(1,)), tf.keras.layers.Dense(1) ])
converter = tf.lite.TFLiteConverter.from_keras_model(model) tflite_model = converter.convert()
with open('model.tflite', 'wb') as f: f.write(tflite_model)
Note: running the code directly in Jupyter Notebook won't print anything
Problem