Skip to content

Commit 7997964

Browse files
authored
Merge branch 'main' into allow-non-list-component
2 parents b6f37a0 + 9e4a75b commit 7997964

File tree

545 files changed

+4966
-4362
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

545 files changed

+4966
-4362
lines changed

.github/workflows/pr_flax_dependency_test.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ limitations under the License.
3737

3838
## Installation
3939

40-
We recommend installing 🤗 Diffusers in a virtual environment from PyPI or Conda. For more details about installing [PyTorch](https://pytorch.org/get-started/locally/) and [Flax](https://flax.readthedocs.io/en/latest/#installation), please refer to their official documentation.
40+
We recommend installing 🤗 Diffusers in a virtual environment from PyPI or Conda. For more details about installing [PyTorch](https://pytorch.org/get-started/locally/), please refer to their official documentation.
4141

4242
### PyTorch
4343

@@ -53,14 +53,6 @@ With `conda` (maintained by the community):
5353
conda install -c conda-forge diffusers
5454
```
5555

56-
### Flax
57-
58-
With `pip` (official package):
59-
60-
```bash
61-
pip install --upgrade diffusers[flax]
62-
```
63-
6456
### Apple Silicon (M1/M2) support
6557

6658
Please refer to the [How to use Stable Diffusion in Apple Silicon](https://huggingface.co/docs/diffusers/optimization/mps) guide.

docker/diffusers-flax-cpu/Dockerfile

Lines changed: 0 additions & 49 deletions
This file was deleted.

docker/diffusers-flax-tpu/Dockerfile

Lines changed: 0 additions & 51 deletions
This file was deleted.

docs/source/en/_toctree.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@
99
- local: stable_diffusion
1010
title: Basic performance
1111

12-
- title: DiffusionPipeline
12+
- title: Pipelines
1313
isExpanded: false
1414
sections:
1515
- local: using-diffusers/loading
16-
title: Load pipelines
16+
title: DiffusionPipeline
1717
- local: tutorials/autopipeline
1818
title: AutoPipeline
1919
- local: using-diffusers/custom_pipeline_overview
2020
title: Community pipelines and components
2121
- local: using-diffusers/callback
2222
title: Pipeline callbacks
2323
- local: using-diffusers/reusing_seeds
24-
title: Reproducible pipelines
24+
title: Reproducibility
2525
- local: using-diffusers/schedulers
2626
title: Load schedulers and models
2727
- local: using-diffusers/scheduler_features
@@ -62,8 +62,6 @@
6262
title: Scheduler features
6363
- local: using-diffusers/callback
6464
title: Pipeline callbacks
65-
- local: using-diffusers/reusing_seeds
66-
title: Reproducible pipelines
6765
- local: using-diffusers/image_quality
6866
title: Controlling image quality
6967

@@ -194,8 +192,6 @@
194192
- title: Model accelerators and hardware
195193
isExpanded: false
196194
sections:
197-
- local: using-diffusers/stable_diffusion_jax_how_to
198-
title: JAX/Flax
199195
- local: optimization/onnx
200196
title: ONNX
201197
- local: optimization/open_vino

docs/source/en/api/models/autoencoderkl.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,3 @@ model = AutoencoderKL.from_single_file(url)
4444
## DecoderOutput
4545

4646
[[autodoc]] models.autoencoders.vae.DecoderOutput
47-
48-
## FlaxAutoencoderKL
49-
50-
[[autodoc]] FlaxAutoencoderKL
51-
52-
## FlaxAutoencoderKLOutput
53-
54-
[[autodoc]] models.vae_flax.FlaxAutoencoderKLOutput
55-
56-
## FlaxDecoderOutput
57-
58-
[[autodoc]] models.vae_flax.FlaxDecoderOutput

docs/source/en/api/models/controlnet.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,3 @@ pipe = StableDiffusionControlNetPipeline.from_single_file(url, controlnet=contro
4040
## ControlNetOutput
4141

4242
[[autodoc]] models.controlnets.controlnet.ControlNetOutput
43-
44-
## FlaxControlNetModel
45-
46-
[[autodoc]] FlaxControlNetModel
47-
48-
## FlaxControlNetOutput
49-
50-
[[autodoc]] models.controlnets.controlnet_flax.FlaxControlNetOutput

docs/source/en/api/models/overview.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ All models are built from the base [`ModelMixin`] class which is a [`torch.nn.Mo
1919
## ModelMixin
2020
[[autodoc]] ModelMixin
2121

22-
## FlaxModelMixin
23-
24-
[[autodoc]] FlaxModelMixin
25-
2622
## PushToHubMixin
2723

2824
[[autodoc]] utils.PushToHubMixin

docs/source/en/api/models/unet2d-cond.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,3 @@ The abstract from the paper is:
2323

2424
## UNet2DConditionOutput
2525
[[autodoc]] models.unets.unet_2d_condition.UNet2DConditionOutput
26-
27-
## FlaxUNet2DConditionModel
28-
[[autodoc]] models.unets.unet_2d_condition_flax.FlaxUNet2DConditionModel
29-
30-
## FlaxUNet2DConditionOutput
31-
[[autodoc]] models.unets.unet_2d_condition_flax.FlaxUNet2DConditionOutput

docs/source/en/api/outputs.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,6 @@ To check a specific pipeline or model output, refer to its corresponding API doc
5454

5555
[[autodoc]] pipelines.ImagePipelineOutput
5656

57-
## FlaxImagePipelineOutput
58-
59-
[[autodoc]] pipelines.pipeline_flax_utils.FlaxImagePipelineOutput
60-
6157
## AudioPipelineOutput
6258

6359
[[autodoc]] pipelines.AudioPipelineOutput

0 commit comments

Comments
 (0)