From 2e922dd3d9e319941b5a924f573e4b59e0f612e0 Mon Sep 17 00:00:00 2001 From: rustui <90625190+rustui@users.noreply.github.com> Date: Sat, 7 Dec 2024 06:46:54 +0800 Subject: [PATCH] Add the missing dot operator --- python_coreml_stable_diffusion/torch2coreml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_coreml_stable_diffusion/torch2coreml.py b/python_coreml_stable_diffusion/torch2coreml.py index 504ec105..17ec4c32 100644 --- a/python_coreml_stable_diffusion/torch2coreml.py +++ b/python_coreml_stable_diffusion/torch2coreml.py @@ -627,7 +627,7 @@ def convert_vae_decoder_sd3(args): coreml_vae_decoder.author = f"Please refer to the Model Card available at huggingface.co/{args.model_version}" coreml_vae_decoder.license = "Stability AI Community License (https://huggingface.co/stabilityai/stable-diffusion-3-medium/blob/main/LICENSE.md)" coreml_vae_decoder.version = args.model_version - coreml_vae_decodershort_description = \ + coreml_vae_decoder.short_description = \ "Stable Diffusion 3 generates images conditioned on text or other images as input through the diffusion process. " \ "Please refer to https://arxiv.org/pdf/2403.03206 for details."