Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
renzhc
diffusers_dcu
Commits
9380e588
Commit
9380e588
authored
Dec 08, 2025
by
sayakpaul
Browse files
Release: v0.36.0-release
parent
2246d2c7
Changes
54
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
21 deletions
+20
-21
examples/advanced_diffusion_training/train_dreambooth_lora_flux_advanced.py
...diffusion_training/train_dreambooth_lora_flux_advanced.py
+1
-1
examples/advanced_diffusion_training/train_dreambooth_lora_sd15_advanced.py
...diffusion_training/train_dreambooth_lora_sd15_advanced.py
+1
-1
examples/advanced_diffusion_training/train_dreambooth_lora_sdxl_advanced.py
...diffusion_training/train_dreambooth_lora_sdxl_advanced.py
+1
-1
examples/cogvideo/train_cogvideox_image_to_video_lora.py
examples/cogvideo/train_cogvideox_image_to_video_lora.py
+1
-1
examples/cogvideo/train_cogvideox_lora.py
examples/cogvideo/train_cogvideox_lora.py
+1
-1
examples/cogview4-control/train_control_cogview4.py
examples/cogview4-control/train_control_cogview4.py
+1
-1
examples/community/marigold_depth_estimation.py
examples/community/marigold_depth_estimation.py
+1
-2
examples/consistency_distillation/train_lcm_distill_lora_sd_wds.py
...consistency_distillation/train_lcm_distill_lora_sd_wds.py
+1
-1
examples/consistency_distillation/train_lcm_distill_lora_sdxl.py
...s/consistency_distillation/train_lcm_distill_lora_sdxl.py
+1
-1
examples/consistency_distillation/train_lcm_distill_lora_sdxl_wds.py
...nsistency_distillation/train_lcm_distill_lora_sdxl_wds.py
+1
-1
examples/consistency_distillation/train_lcm_distill_sd_wds.py
...ples/consistency_distillation/train_lcm_distill_sd_wds.py
+1
-1
examples/consistency_distillation/train_lcm_distill_sdxl_wds.py
...es/consistency_distillation/train_lcm_distill_sdxl_wds.py
+1
-1
examples/controlnet/train_controlnet.py
examples/controlnet/train_controlnet.py
+1
-1
examples/controlnet/train_controlnet_flax.py
examples/controlnet/train_controlnet_flax.py
+1
-1
examples/controlnet/train_controlnet_flux.py
examples/controlnet/train_controlnet_flux.py
+1
-1
examples/controlnet/train_controlnet_sd3.py
examples/controlnet/train_controlnet_sd3.py
+1
-1
examples/controlnet/train_controlnet_sdxl.py
examples/controlnet/train_controlnet_sdxl.py
+1
-1
examples/custom_diffusion/train_custom_diffusion.py
examples/custom_diffusion/train_custom_diffusion.py
+1
-1
examples/dreambooth/train_dreambooth.py
examples/dreambooth/train_dreambooth.py
+1
-1
examples/dreambooth/train_dreambooth_flax.py
examples/dreambooth/train_dreambooth_flax.py
+1
-1
No files found.
examples/advanced_diffusion_training/train_dreambooth_lora_flux_advanced.py
View file @
9380e588
...
@@ -94,7 +94,7 @@ if is_wandb_available():
...
@@ -94,7 +94,7 @@ if is_wandb_available():
import
wandb
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
...
...
examples/advanced_diffusion_training/train_dreambooth_lora_sd15_advanced.py
View file @
9380e588
...
@@ -88,7 +88,7 @@ from diffusers.utils.import_utils import is_xformers_available
...
@@ -88,7 +88,7 @@ from diffusers.utils.import_utils import is_xformers_available
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
...
...
examples/advanced_diffusion_training/train_dreambooth_lora_sdxl_advanced.py
View file @
9380e588
...
@@ -95,7 +95,7 @@ if is_wandb_available():
...
@@ -95,7 +95,7 @@ if is_wandb_available():
import
wandb
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
...
...
examples/cogvideo/train_cogvideox_image_to_video_lora.py
View file @
9380e588
...
@@ -61,7 +61,7 @@ if is_wandb_available():
...
@@ -61,7 +61,7 @@ if is_wandb_available():
import
wandb
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
...
...
examples/cogvideo/train_cogvideox_lora.py
View file @
9380e588
...
@@ -52,7 +52,7 @@ if is_wandb_available():
...
@@ -52,7 +52,7 @@ if is_wandb_available():
import
wandb
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
...
...
examples/cogview4-control/train_control_cogview4.py
View file @
9380e588
...
@@ -60,7 +60,7 @@ if is_wandb_available():
...
@@ -60,7 +60,7 @@ if is_wandb_available():
import
wandb
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
...
...
examples/community/marigold_depth_estimation.py
View file @
9380e588
...
@@ -43,8 +43,7 @@ from diffusers.utils import BaseOutput, check_min_version
...
@@ -43,8 +43,7 @@ from diffusers.utils import BaseOutput, check_min_version
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0.dev0"
)
check_min_version
(
"0.36.0"
)
class
MarigoldDepthOutput
(
BaseOutput
):
class
MarigoldDepthOutput
(
BaseOutput
):
"""
"""
...
...
examples/consistency_distillation/train_lcm_distill_lora_sd_wds.py
View file @
9380e588
...
@@ -74,7 +74,7 @@ if is_wandb_available():
...
@@ -74,7 +74,7 @@ if is_wandb_available():
import
wandb
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
...
...
examples/consistency_distillation/train_lcm_distill_lora_sdxl.py
View file @
9380e588
...
@@ -67,7 +67,7 @@ if is_wandb_available():
...
@@ -67,7 +67,7 @@ if is_wandb_available():
import
wandb
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
...
...
examples/consistency_distillation/train_lcm_distill_lora_sdxl_wds.py
View file @
9380e588
...
@@ -80,7 +80,7 @@ if is_wandb_available():
...
@@ -80,7 +80,7 @@ if is_wandb_available():
import
wandb
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
...
...
examples/consistency_distillation/train_lcm_distill_sd_wds.py
View file @
9380e588
...
@@ -73,7 +73,7 @@ if is_wandb_available():
...
@@ -73,7 +73,7 @@ if is_wandb_available():
import
wandb
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
...
...
examples/consistency_distillation/train_lcm_distill_sdxl_wds.py
View file @
9380e588
...
@@ -79,7 +79,7 @@ if is_wandb_available():
...
@@ -79,7 +79,7 @@ if is_wandb_available():
import
wandb
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
...
...
examples/controlnet/train_controlnet.py
View file @
9380e588
...
@@ -61,7 +61,7 @@ if is_wandb_available():
...
@@ -61,7 +61,7 @@ if is_wandb_available():
import
wandb
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
...
...
examples/controlnet/train_controlnet_flax.py
View file @
9380e588
...
@@ -61,7 +61,7 @@ if is_wandb_available():
...
@@ -61,7 +61,7 @@ if is_wandb_available():
import
wandb
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
logging
.
getLogger
(
__name__
)
logger
=
logging
.
getLogger
(
__name__
)
...
...
examples/controlnet/train_controlnet_flux.py
View file @
9380e588
...
@@ -66,7 +66,7 @@ if is_wandb_available():
...
@@ -66,7 +66,7 @@ if is_wandb_available():
import
wandb
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
if
is_torch_npu_available
():
if
is_torch_npu_available
():
...
...
examples/controlnet/train_controlnet_sd3.py
View file @
9380e588
...
@@ -63,7 +63,7 @@ if is_wandb_available():
...
@@ -63,7 +63,7 @@ if is_wandb_available():
import
wandb
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
...
...
examples/controlnet/train_controlnet_sdxl.py
View file @
9380e588
...
@@ -62,7 +62,7 @@ if is_wandb_available():
...
@@ -62,7 +62,7 @@ if is_wandb_available():
import
wandb
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
if
is_torch_npu_available
():
if
is_torch_npu_available
():
...
...
examples/custom_diffusion/train_custom_diffusion.py
View file @
9380e588
...
@@ -64,7 +64,7 @@ from diffusers.utils.import_utils import is_xformers_available
...
@@ -64,7 +64,7 @@ from diffusers.utils.import_utils import is_xformers_available
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
...
...
examples/dreambooth/train_dreambooth.py
View file @
9380e588
...
@@ -64,7 +64,7 @@ if is_wandb_available():
...
@@ -64,7 +64,7 @@ if is_wandb_available():
import
wandb
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
logger
=
get_logger
(
__name__
)
logger
=
get_logger
(
__name__
)
...
...
examples/dreambooth/train_dreambooth_flax.py
View file @
9380e588
...
@@ -35,7 +35,7 @@ from diffusers.utils import check_min_version
...
@@ -35,7 +35,7 @@ from diffusers.utils import check_min_version
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.36.0
.dev0
"
)
check_min_version
(
"0.36.0"
)
# Cache compiled models across invocations of this script.
# Cache compiled models across invocations of this script.
cc
.
initialize_cache
(
os
.
path
.
expanduser
(
"~/.cache/jax/compilation_cache"
))
cc
.
initialize_cache
(
os
.
path
.
expanduser
(
"~/.cache/jax/compilation_cache"
))
...
...
Prev
1
2
3
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment