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
{{ message }}
This repository was archived by the owner on May 29, 2026. It is now read-only.
Here is my code, however, there seems no difference between gan_vae and cosistency_vae. What's wrong?
import torchfrom diffusers import StableDiffusionPipeline, ConsistencyDecoderVAEvae = ConsistencyDecoderVAE.from_pretrained("openai/consistency-decoder", torch_dtype=torch.float16)pipe_gan = StableDiffusionPipeline.from_pretrained( "runwayml/stable-diffusion-v1-5", torch_dtype=torch.float16 ).to("cuda")pipe_consistency = StableDiffusionPipeline.from_pretrained( "runwayml/stable-diffusion-v1-5", vae=vae, torch_dtype=torch.float16).to("cuda")image_gan = pipe_gan("a girl hold flower", generator=torch.manual_seed(0)).images[0]image_consistency = pipe_consistency("a girl hold flower", generator=torch.manual_seed(0)).images[0]