You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser=argparse.ArgumentParser(description="Convert Keras SavedModel to .keras format.")
90
90
parser.add_argument("--savedmodel_dir", type=str, required=True, help="Path to the SavedModel directory.")
91
91
parser.add_argument("--output_directory", type=str, required=False, help="Path to the output directory for the converted model. Default: converted_model/", default="converted_model")
92
-
parser.add_argument("--output_file", type=str, required=False, help="for backwards compatibility, not used anymore", default="None")
92
+
parser.add_argument("--output_file", type=str, required=False, help="for backwards compatibility, not used anymore", default=None)
0 commit comments