1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-27 17:22:53 +03:00

fix vae pt script

This commit is contained in:
Patrick von Platen
2023-02-07 08:34:19 +00:00
parent 1051ca81a6
commit 0f04e799dc

View File

@@ -146,4 +146,6 @@ if __name__ == "__main__":
parser.add_argument("--vae_pt_path", default=None, type=str, required=True, help="Path to the VAE.pt to convert.")
parser.add_argument("--dump_path", default=None, type=str, required=True, help="Path to the VAE.pt to convert.")
args = parser.parse_args()
vae_pt_to_vae_diffuser(args.vae_pt_path, args.dump_path)