From 36e241ca711562cc11b5c6085c691a0c030f59f5 Mon Sep 17 00:00:00 2001 From: OscarVanL <7999692+OscarVanL@users.noreply.github.com> Date: Tue, 20 Oct 2020 17:01:46 +0100 Subject: [PATCH] Removed extraneous period --- tensorflow/lite/g3doc/convert/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/lite/g3doc/convert/index.md b/tensorflow/lite/g3doc/convert/index.md index 36774205770..070e801030b 100644 --- a/tensorflow/lite/g3doc/convert/index.md +++ b/tensorflow/lite/g3doc/convert/index.md @@ -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: