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
9f2bff50
Unverified
Commit
9f2bff50
authored
Jan 02, 2024
by
Daniel Socek
Committed by
GitHub
Jan 02, 2024
Browse files
[svd] fix noise_aug_strength type in svd pipe (#6389)
parent
0cb92717
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/diffusers/pipelines/stable_video_diffusion/pipeline_stable_video_diffusion.py
...stable_video_diffusion/pipeline_stable_video_diffusion.py
+2
-2
No files found.
src/diffusers/pipelines/stable_video_diffusion/pipeline_stable_video_diffusion.py
View file @
9f2bff50
...
...
@@ -311,7 +311,7 @@ class StableVideoDiffusionPipeline(DiffusionPipeline):
max_guidance_scale
:
float
=
3.0
,
fps
:
int
=
7
,
motion_bucket_id
:
int
=
127
,
noise_aug_strength
:
in
t
=
0.02
,
noise_aug_strength
:
floa
t
=
0.02
,
decode_chunk_size
:
Optional
[
int
]
=
None
,
num_videos_per_prompt
:
Optional
[
int
]
=
1
,
generator
:
Optional
[
Union
[
torch
.
Generator
,
List
[
torch
.
Generator
]]]
=
None
,
...
...
@@ -346,7 +346,7 @@ class StableVideoDiffusionPipeline(DiffusionPipeline):
Note that Stable Diffusion Video's UNet was micro-conditioned on fps-1 during training.
motion_bucket_id (`int`, *optional*, defaults to 127):
The motion bucket ID. Used as conditioning for the generation. The higher the number the more motion will be in the video.
noise_aug_strength (`
in
t`, *optional*, defaults to 0.02):
noise_aug_strength (`
floa
t`, *optional*, defaults to 0.02):
The amount of noise added to the init image, the higher it is the less the video will look like the init image. Increase it for more motion.
decode_chunk_size (`int`, *optional*):
The number of frames to decode at a time. The higher the chunk size, the higher the temporal consistency
...
...
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