Anne Tomato
Anne Tomato
Two things I noticed, there was a queue to view the availability, and they limited the number of zip codes you could search.
this also happens in controlnet.ipynb ``` TypeError Traceback (most recent call last) [](https://localhost:8080/#) in () 9 extras = core.setup_extras_pre() 10 print(extras) ---> 11 models = core.setup_models(extras) 12 models.generator.eval().requires_grad_(False) 13 print("CONTROLNET...
I did the same flow on Android 14, com.google.firebase:firebase-auth, com.google.firebase:firebase-bom:28.4.0, (Java from firebase's OIDP provider example with Capacitor passing the token strings and using the same Javascript as above) and...
``` repo_id="huggingfaceuser/zwx-person" huggingface_token="hf_accesstoken" vae = AutoencoderKL.from_pretrained("stabilityai/sd-vae-ft-mse", torch_dtype=torch.float16).to("cuda") unet = UNet2DConditionModel.from_pretrained(repo_id, use_auth_token=huggingface_token, subfolder="unet", torch_dtype=torch.float16).to("cuda") text_encoder = CLIPTextModel.from_pretrained(repo_id, use_auth_token=huggingface_token, subfolder="text_encoder", torch_dtype=torch.float16) pipe_canny = StableDiffusionControlNetPipeline.from_pretrained( "takuma104/control_sd15_canny", text_encoder=text_encoder, vae=vae,safety_checker=None,unet=unet, torch_dtype=torch.float16).to("cuda") pipe_canny.scheduler = euler_scheduler pipe_canny.enable_xformers_memory_efficient_attention()...
Intuitively, I wanted to use the pipeline like this FWIW: `pipe = StableDiffusionControlNetPipeline.from_pretrained("huggingfaceuser/zwx",controlnet="takuma104/control_sd15_canny")` or even be able to add the `controlnet` && `controlnet_hint` to other stable diffusion pipelines