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
e45c25d0
Unverified
Commit
e45c25d0
authored
Oct 22, 2024
by
Sayak Paul
Committed by
GitHub
Oct 22, 2024
Browse files
post-release 0.31.0 (#9742)
* post-release * style
parent
76c00c72
Changes
46
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
examples/unconditional_image_generation/train_unconditional.py
...les/unconditional_image_generation/train_unconditional.py
+1
-1
examples/vqgan/train_vqgan.py
examples/vqgan/train_vqgan.py
+1
-1
examples/wuerstchen/text_to_image/train_text_to_image_lora_prior.py
...uerstchen/text_to_image/train_text_to_image_lora_prior.py
+1
-1
examples/wuerstchen/text_to_image/train_text_to_image_prior.py
...les/wuerstchen/text_to_image/train_text_to_image_prior.py
+1
-1
setup.py
setup.py
+1
-1
src/diffusers/__init__.py
src/diffusers/__init__.py
+1
-1
No files found.
examples/unconditional_image_generation/train_unconditional.py
View file @
e45c25d0
...
@@ -29,7 +29,7 @@ from diffusers.utils.import_utils import is_xformers_available
...
@@ -29,7 +29,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.3
1
.0.dev0"
)
check_min_version
(
"0.3
2
.0.dev0"
)
logger
=
get_logger
(
__name__
,
log_level
=
"INFO"
)
logger
=
get_logger
(
__name__
,
log_level
=
"INFO"
)
...
...
examples/vqgan/train_vqgan.py
View file @
e45c25d0
...
@@ -50,7 +50,7 @@ if is_wandb_available():
...
@@ -50,7 +50,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.3
1
.0.dev0"
)
check_min_version
(
"0.3
2
.0.dev0"
)
logger
=
get_logger
(
__name__
,
log_level
=
"INFO"
)
logger
=
get_logger
(
__name__
,
log_level
=
"INFO"
)
...
...
examples/wuerstchen/text_to_image/train_text_to_image_lora_prior.py
View file @
e45c25d0
...
@@ -50,7 +50,7 @@ if is_wandb_available():
...
@@ -50,7 +50,7 @@ if is_wandb_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.3
1
.0.dev0"
)
check_min_version
(
"0.3
2
.0.dev0"
)
logger
=
get_logger
(
__name__
,
log_level
=
"INFO"
)
logger
=
get_logger
(
__name__
,
log_level
=
"INFO"
)
...
...
examples/wuerstchen/text_to_image/train_text_to_image_prior.py
View file @
e45c25d0
...
@@ -51,7 +51,7 @@ if is_wandb_available():
...
@@ -51,7 +51,7 @@ if is_wandb_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.3
1
.0.dev0"
)
check_min_version
(
"0.3
2
.0.dev0"
)
logger
=
get_logger
(
__name__
,
log_level
=
"INFO"
)
logger
=
get_logger
(
__name__
,
log_level
=
"INFO"
)
...
...
setup.py
View file @
e45c25d0
...
@@ -254,7 +254,7 @@ version_range_max = max(sys.version_info[1], 10) + 1
...
@@ -254,7 +254,7 @@ version_range_max = max(sys.version_info[1], 10) + 1
setup
(
setup
(
name
=
"diffusers"
,
name
=
"diffusers"
,
version
=
"0.3
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)
version
=
"0.3
2
.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
=
"State-of-the-art diffusion in PyTorch and JAX."
,
description
=
"State-of-the-art diffusion in PyTorch and JAX."
,
long_description
=
open
(
"README.md"
,
"r"
,
encoding
=
"utf-8"
).
read
(),
long_description
=
open
(
"README.md"
,
"r"
,
encoding
=
"utf-8"
).
read
(),
long_description_content_type
=
"text/markdown"
,
long_description_content_type
=
"text/markdown"
,
...
...
src/diffusers/__init__.py
View file @
e45c25d0
__version__
=
"0.3
1
.0.dev0"
__version__
=
"0.3
2
.0.dev0"
from
typing
import
TYPE_CHECKING
from
typing
import
TYPE_CHECKING
...
...
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