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
76de6a09
Unverified
Commit
76de6a09
authored
Mar 18, 2024
by
Sayak Paul
Committed by
GitHub
Mar 18, 2024
Browse files
post-release v0.27.0 (#7329)
* post-release * quality
parent
25caf24e
Changes
37
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
23 additions
and
23 deletions
+23
-23
docs/source/en/_toctree.yml
docs/source/en/_toctree.yml
+4
-4
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/community/marigold_depth_estimation.py
examples/community/marigold_depth_estimation.py
+1
-1
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_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
examples/dreambooth/train_dreambooth_lora.py
examples/dreambooth/train_dreambooth_lora.py
+1
-1
examples/dreambooth/train_dreambooth_lora_sdxl.py
examples/dreambooth/train_dreambooth_lora_sdxl.py
+1
-1
examples/instruct_pix2pix/train_instruct_pix2pix.py
examples/instruct_pix2pix/train_instruct_pix2pix.py
+1
-1
examples/instruct_pix2pix/train_instruct_pix2pix_sdxl.py
examples/instruct_pix2pix/train_instruct_pix2pix_sdxl.py
+1
-1
examples/kandinsky2_2/text_to_image/train_text_to_image_decoder.py
...kandinsky2_2/text_to_image/train_text_to_image_decoder.py
+1
-1
No files found.
docs/source/en/_toctree.yml
View file @
76de6a09
...
...
@@ -400,14 +400,14 @@
title
:
DPMSolverSDEScheduler
-
local
:
api/schedulers/singlestep_dpm_solver
title
:
DPMSolverSinglestepScheduler
-
local
:
api/schedulers/edm_multistep_dpm_solver
title
:
EDMDPMSolverMultistepScheduler
-
local
:
api/schedulers/edm_euler
title
:
EDMEulerScheduler
-
local
:
api/schedulers/euler_ancestral
title
:
EulerAncestralDiscreteScheduler
-
local
:
api/schedulers/euler
title
:
EulerDiscreteScheduler
-
local
:
api/schedulers/edm_euler
title
:
EDMEulerScheduler
-
local
:
api/schedulers/edm_multistep_dpm_solver
title
:
EDMDPMSolverMultistepScheduler
-
local
:
api/schedulers/heun
title
:
HeunDiscreteScheduler
-
local
:
api/schedulers/ipndm
...
...
examples/advanced_diffusion_training/train_dreambooth_lora_sd15_advanced.py
View file @
76de6a09
...
...
@@ -70,7 +70,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.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/advanced_diffusion_training/train_dreambooth_lora_sdxl_advanced.py
View file @
76de6a09
...
...
@@ -78,7 +78,7 @@ from diffusers.utils.torch_utils import is_compiled_module
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/community/marigold_depth_estimation.py
View file @
76de6a09
...
...
@@ -40,7 +40,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.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
class
MarigoldDepthOutput
(
BaseOutput
):
...
...
examples/consistency_distillation/train_lcm_distill_lora_sd_wds.py
View file @
76de6a09
...
...
@@ -72,7 +72,7 @@ if is_wandb_available():
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/consistency_distillation/train_lcm_distill_lora_sdxl.py
View file @
76de6a09
...
...
@@ -65,7 +65,7 @@ if is_wandb_available():
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/consistency_distillation/train_lcm_distill_lora_sdxl_wds.py
View file @
76de6a09
...
...
@@ -78,7 +78,7 @@ if is_wandb_available():
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/consistency_distillation/train_lcm_distill_sd_wds.py
View file @
76de6a09
...
...
@@ -71,7 +71,7 @@ if is_wandb_available():
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/consistency_distillation/train_lcm_distill_sdxl_wds.py
View file @
76de6a09
...
...
@@ -77,7 +77,7 @@ if is_wandb_available():
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/controlnet/train_controlnet.py
View file @
76de6a09
...
...
@@ -60,7 +60,7 @@ if is_wandb_available():
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/controlnet/train_controlnet_flax.py
View file @
76de6a09
...
...
@@ -60,7 +60,7 @@ if is_wandb_available():
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
logging
.
getLogger
(
__name__
)
...
...
examples/controlnet/train_controlnet_sdxl.py
View file @
76de6a09
...
...
@@ -61,7 +61,7 @@ if is_wandb_available():
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/custom_diffusion/train_custom_diffusion.py
View file @
76de6a09
...
...
@@ -63,7 +63,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.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/dreambooth/train_dreambooth.py
View file @
76de6a09
...
...
@@ -63,7 +63,7 @@ if is_wandb_available():
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/dreambooth/train_dreambooth_flax.py
View file @
76de6a09
...
...
@@ -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.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
# Cache compiled models across invocations of this script.
cc
.
initialize_cache
(
os
.
path
.
expanduser
(
"~/.cache/jax/compilation_cache"
))
...
...
examples/dreambooth/train_dreambooth_lora.py
View file @
76de6a09
...
...
@@ -70,7 +70,7 @@ if is_wandb_available():
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/dreambooth/train_dreambooth_lora_sdxl.py
View file @
76de6a09
...
...
@@ -75,7 +75,7 @@ if is_wandb_available():
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/instruct_pix2pix/train_instruct_pix2pix.py
View file @
76de6a09
...
...
@@ -53,7 +53,7 @@ from diffusers.utils.torch_utils import is_compiled_module
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
get_logger
(
__name__
,
log_level
=
"INFO"
)
...
...
examples/instruct_pix2pix/train_instruct_pix2pix_sdxl.py
View file @
76de6a09
...
...
@@ -59,7 +59,7 @@ if is_wandb_available():
import
wandb
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
get_logger
(
__name__
,
log_level
=
"INFO"
)
...
...
examples/kandinsky2_2/text_to_image/train_text_to_image_decoder.py
View file @
76de6a09
...
...
@@ -52,7 +52,7 @@ if is_wandb_available():
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
7
.0.dev0"
)
check_min_version
(
"0.2
8
.0.dev0"
)
logger
=
get_logger
(
__name__
,
log_level
=
"INFO"
)
...
...
Prev
1
2
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