Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
chenpangpang
diffusers
Commits
d0c30cfd
Unverified
Commit
d0c30cfd
authored
Aug 17, 2023
by
Sayak Paul
Committed by
GitHub
Aug 17, 2023
Browse files
make post-release (#4650)
parent
7c3e7fed
Changes
20
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
20 deletions
+20
-20
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/text_to_image/train_text_to_image.py
examples/text_to_image/train_text_to_image.py
+1
-1
examples/text_to_image/train_text_to_image_flax.py
examples/text_to_image/train_text_to_image_flax.py
+1
-1
examples/text_to_image/train_text_to_image_lora.py
examples/text_to_image/train_text_to_image_lora.py
+1
-1
examples/text_to_image/train_text_to_image_lora_sdxl.py
examples/text_to_image/train_text_to_image_lora_sdxl.py
+1
-1
examples/text_to_image/train_text_to_image_sdxl.py
examples/text_to_image/train_text_to_image_sdxl.py
+1
-1
examples/textual_inversion/textual_inversion.py
examples/textual_inversion/textual_inversion.py
+1
-1
examples/textual_inversion/textual_inversion_flax.py
examples/textual_inversion/textual_inversion_flax.py
+1
-1
examples/unconditional_image_generation/train_unconditional.py
...les/unconditional_image_generation/train_unconditional.py
+1
-1
setup.py
setup.py
+1
-1
src/diffusers/__init__.py
src/diffusers/__init__.py
+1
-1
No files found.
examples/controlnet/train_controlnet.py
View file @
d0c30cfd
...
...
@@ -56,7 +56,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
0
.0.dev0"
)
check_min_version
(
"0.2
1
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/controlnet/train_controlnet_flax.py
View file @
d0c30cfd
...
...
@@ -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
0
.0.dev0"
)
check_min_version
(
"0.2
1
.0.dev0"
)
logger
=
logging
.
getLogger
(
__name__
)
...
...
examples/controlnet/train_controlnet_sdxl.py
View file @
d0c30cfd
...
...
@@ -58,7 +58,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
0
.0.dev0"
)
check_min_version
(
"0.2
1
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/custom_diffusion/train_custom_diffusion.py
View file @
d0c30cfd
...
...
@@ -58,7 +58,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
0
.0.dev0"
)
check_min_version
(
"0.2
1
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/dreambooth/train_dreambooth.py
View file @
d0c30cfd
...
...
@@ -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
0
.0.dev0"
)
check_min_version
(
"0.2
1
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/dreambooth/train_dreambooth_flax.py
View file @
d0c30cfd
...
...
@@ -36,7 +36,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
0
.0.dev0"
)
check_min_version
(
"0.2
1
.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 @
d0c30cfd
...
...
@@ -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
0
.0.dev0"
)
check_min_version
(
"0.2
1
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/dreambooth/train_dreambooth_lora_sdxl.py
View file @
d0c30cfd
...
...
@@ -58,7 +58,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
0
.0.dev0"
)
check_min_version
(
"0.2
1
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/instruct_pix2pix/train_instruct_pix2pix.py
View file @
d0c30cfd
...
...
@@ -52,7 +52,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
0
.0.dev0"
)
check_min_version
(
"0.2
1
.0.dev0"
)
logger
=
get_logger
(
__name__
,
log_level
=
"INFO"
)
...
...
examples/instruct_pix2pix/train_instruct_pix2pix_sdxl.py
View file @
d0c30cfd
...
...
@@ -55,7 +55,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
0
.0.dev0"
)
check_min_version
(
"0.2
1
.0.dev0"
)
logger
=
get_logger
(
__name__
,
log_level
=
"INFO"
)
...
...
examples/text_to_image/train_text_to_image.py
View file @
d0c30cfd
...
...
@@ -53,7 +53,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
0
.0.dev0"
)
check_min_version
(
"0.2
1
.0.dev0"
)
logger
=
get_logger
(
__name__
,
log_level
=
"INFO"
)
...
...
examples/text_to_image/train_text_to_image_flax.py
View file @
d0c30cfd
...
...
@@ -33,7 +33,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
0
.0.dev0"
)
check_min_version
(
"0.2
1
.0.dev0"
)
logger
=
logging
.
getLogger
(
__name__
)
...
...
examples/text_to_image/train_text_to_image_lora.py
View file @
d0c30cfd
...
...
@@ -48,7 +48,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
0
.0.dev0"
)
check_min_version
(
"0.2
1
.0.dev0"
)
logger
=
get_logger
(
__name__
,
log_level
=
"INFO"
)
...
...
examples/text_to_image/train_text_to_image_lora_sdxl.py
View file @
d0c30cfd
...
...
@@ -57,7 +57,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.1
9
.0.dev0"
)
check_min_version
(
"0.
2
1.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/text_to_image/train_text_to_image_sdxl.py
View file @
d0c30cfd
...
...
@@ -57,7 +57,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
0
.0.dev0"
)
check_min_version
(
"0.2
1
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/textual_inversion/textual_inversion.py
View file @
d0c30cfd
...
...
@@ -79,7 +79,7 @@ else:
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
0
.0.dev0"
)
check_min_version
(
"0.2
1
.0.dev0"
)
logger
=
get_logger
(
__name__
)
...
...
examples/textual_inversion/textual_inversion_flax.py
View file @
d0c30cfd
...
...
@@ -56,7 +56,7 @@ else:
# ------------------------------------------------------------------------------
# Will error if the minimal version of diffusers is not installed. Remove at your own risks.
check_min_version
(
"0.2
0
.0.dev0"
)
check_min_version
(
"0.2
1
.0.dev0"
)
logger
=
logging
.
getLogger
(
__name__
)
...
...
examples/unconditional_image_generation/train_unconditional.py
View file @
d0c30cfd
...
...
@@ -30,7 +30,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
0
.0.dev0"
)
check_min_version
(
"0.2
1
.0.dev0"
)
logger
=
get_logger
(
__name__
,
log_level
=
"INFO"
)
...
...
setup.py
View file @
d0c30cfd
...
...
@@ -233,7 +233,7 @@ install_requires = [
setup
(
name
=
"diffusers"
,
version
=
"0.2
0
.0.dev0"
,
# expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots)
version
=
"0.2
1
.0.dev0"
,
# expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots)
description
=
"Diffusers"
,
long_description
=
open
(
"README.md"
,
"r"
,
encoding
=
"utf-8"
).
read
(),
long_description_content_type
=
"text/markdown"
,
...
...
src/diffusers/__init__.py
View file @
d0c30cfd
__version__
=
"0.2
0
.0.dev0"
__version__
=
"0.2
1
.0.dev0"
from
.configuration_utils
import
ConfigMixin
from
.utils
import
(
...
...
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