(Studio) Disable SD tunings and sub-model downloads (#1944)

* sets --no-use_tuned and --import_mlir as defaults in SHARK Studio.
This commit is contained in:
Ean Garvey
2023-11-07 15:55:30 -06:00
committed by GitHub
parent ad55cb696f
commit a07d542400

View File

@@ -308,7 +308,7 @@ p.add_argument(
p.add_argument(
"--import_mlir",
default=False,
default=True,
action=argparse.BooleanOptionalAction,
help="Imports the model from torch module to shark_module otherwise "
"downloads the model from shark_tank.",
@@ -331,7 +331,7 @@ p.add_argument(
p.add_argument(
"--use_tuned",
default=True,
default=False,
action=argparse.BooleanOptionalAction,
help="Download and use the tuned version of the model if available.",
)