Removed extraneous period

This commit is contained in:
OscarVanL 2020-10-20 17:01:46 +01:00
parent 5fe5a49092
commit 36e241ca71

View File

@ -74,7 +74,7 @@ import tensorflow as tf
# Convert the model
converter = tf.lite.TFLiteConverter.from_saved_model(saved_model_dir) # path to the SavedModel directory
tflite_model = converter.convert().
tflite_model = converter.convert()
# Save the model.
with open('model.tflite', 'wb') as f: