Unverified Commit a6288a55 authored by Junsong Chen's avatar Junsong Chen Committed by GitHub
Browse files

[Sana]add 2K related model for Sana (#10322)

add 2K related model for Sana
parent 7d4db570
...@@ -25,6 +25,7 @@ from diffusers.utils.import_utils import is_accelerate_available ...@@ -25,6 +25,7 @@ from diffusers.utils.import_utils import is_accelerate_available
CTX = init_empty_weights if is_accelerate_available else nullcontext CTX = init_empty_weights if is_accelerate_available else nullcontext
ckpt_ids = [ ckpt_ids = [
"Efficient-Large-Model/Sana_1600M_2Kpx_BF16/checkpoints/Sana_1600M_2Kpx_BF16.pth",
"Efficient-Large-Model/Sana_1600M_1024px_MultiLing/checkpoints/Sana_1600M_1024px_MultiLing.pth", "Efficient-Large-Model/Sana_1600M_1024px_MultiLing/checkpoints/Sana_1600M_1024px_MultiLing.pth",
"Efficient-Large-Model/Sana_1600M_1024px_BF16/checkpoints/Sana_1600M_1024px_BF16.pth", "Efficient-Large-Model/Sana_1600M_1024px_BF16/checkpoints/Sana_1600M_1024px_BF16.pth",
"Efficient-Large-Model/Sana_1600M_512px_MultiLing/checkpoints/Sana_1600M_512px_MultiLing.pth", "Efficient-Large-Model/Sana_1600M_512px_MultiLing/checkpoints/Sana_1600M_512px_MultiLing.pth",
...@@ -265,9 +266,9 @@ if __name__ == "__main__": ...@@ -265,9 +266,9 @@ if __name__ == "__main__":
"--image_size", "--image_size",
default=1024, default=1024,
type=int, type=int,
choices=[512, 1024], choices=[512, 1024, 2048],
required=False, required=False,
help="Image size of pretrained model, 512 or 1024.", help="Image size of pretrained model, 512, 1024 or 2048.",
) )
parser.add_argument( parser.add_argument(
"--model_type", default="SanaMS_1600M_P1_D20", type=str, choices=["SanaMS_1600M_P1_D20", "SanaMS_600M_P1_D28"] "--model_type", default="SanaMS_1600M_P1_D20", type=str, choices=["SanaMS_1600M_P1_D20", "SanaMS_600M_P1_D28"]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment