diffusers
diffusers copied to clipboard
🤗 Diffusers: State-of-the-art diffusion models for image and audio generation in PyTorch and FLAX.
`FlaxEncoder` receives it [here](https://github.com/huggingface/diffusers/blob/main/src/diffusers/models/vae_flax.py#L326), but then it's ignored. `FlaxResnetBlock2D` uses a [hardcoded value](https://github.com/huggingface/diffusers/blob/main/src/diffusers/models/vae_flax.py#L99). Discovered by @younesbelkada in https://github.com/huggingface/diffusers/pull/589#discussion_r975796548
The textual inversion example now saves by default only the learned embeddings, unless the command line arguments --save_full_model or --push_to_hub are used. (Implements #759)
### Describe the bug Using the inpainting example but trying to run it on the cpu instead of gpu (since i'm trying to push to hf space). Hitting this runtime...
Hi, I added Stable Diffusion image-to-image and inpaint using onnx. I used non-onnx versions as "templates" and translated them according to existing text-to-image onnx. The only problem is that this...
### Describe the bug See this forum post: https://discuss.huggingface.co/t/stable-diffusion-bs-1-uses-negative-as-prompt/24130. In short: ```Python _ = pipe(["frog"]*2, negative_prompt=["bird"]*2) ``` Reaches this condition https://github.com/huggingface/diffusers/blob/main/src/diffusers/pipelines/stable_diffusion/pipeline_stable_diffusion.py#L247. As expected, `negative_prompt` is a list with the same...
### Describe the bug I'm using T4 with colab free , when I start training it tells me cuda error, it happens when I activate prior_preservation.  Run training ```...
We should add a couple of simple tests that use the `mps` device to detect issues like #760. I'm not familiar with how the CI system is set up or...
does the txt2img pipe support load a finetune .pt file to improve the output performance of checkpoint model ?
The following values were not passed to `accelerate launch` and had defaults used instead: `--num_cpu_threads_per_process` was set to `6` to improve out-of-box performance To avoid this warning pass in values...