Set i2v to default to false when omitted from the config
This commit is contained in:
parent
038f24e8c3
commit
497014bf5d
|
|
@ -1066,7 +1066,7 @@ class DatasetConfig:
|
|||
# if true, will use a fask method to get image sizes. This can result in errors. Do not use unless you know what you are doing
|
||||
self.fast_image_size: bool = kwargs.get('fast_image_size', False)
|
||||
|
||||
self.do_i2v: bool = kwargs.get('do_i2v', True) # do image to video on models that are both t2i and i2v capable
|
||||
self.do_i2v: bool = kwargs.get('do_i2v', False) # do image to video on models that are both t2i and i2v capable
|
||||
self.do_audio: bool = kwargs.get('do_audio', False) # load audio from video files for models that support it
|
||||
self.audio_preserve_pitch: bool = kwargs.get('audio_preserve_pitch', False) # preserve pitch when stretching audio to fit num_frames
|
||||
self.audio_normalize: bool = kwargs.get('audio_normalize', False) # normalize audio volume levels when loading
|
||||
|
|
|
|||
Loading…
Reference in New Issue