mirror of
https://github.com/Wan-Video/Wan2.1.git
synced 2025-11-05 06:29:14 +00:00
New command parameters to prefill UI and configuration options
This commit is contained in:
parent
8a51c29c9f
commit
938a31f6e0
@ -19,6 +19,7 @@ In this repository, we present **Wan2.1**, a comprehensive and open suite of vid
|
||||
|
||||
|
||||
## 🔥 Latest News!!
|
||||
* Mar 18 2022: 👋 Wan2.1GP v2.11: Added more command line parameters to prefill the generation settings + customizable output directory and choice of type of metadata for generated videos. Many thanks to Tophness for his contributions. You will need one more *pip install -r requirements.txt* to reflect new dependencies\
|
||||
* Mar 18 2022: 👋 Wan2.1GP v2.1: More Loras !: added support for 'Safetensors' and 'Replicate' Lora formats.\
|
||||
You will need to refresh the requirements with a *pip install -r requirements.txt*
|
||||
* Mar 17 2022: 👋 Wan2.1GP v2.0: The Lora festival continues:
|
||||
@ -242,6 +243,9 @@ You can define multiple lines of macros. If there is only one macro line, the ap
|
||||
--seed no : set default seed value\
|
||||
--frames no : set the default number of frames to generate\
|
||||
--steps no : set the default number of denoising steps\
|
||||
--res resolution : default resolution, choices=["480p", "720p", "823p", "1024p", "1280p"]\
|
||||
--teacache speed multiplier: Tea cache speed multiplier, choices=["0", "1.5", "1.75", "2.0", "2.25", "2.5"]\
|
||||
--slg : turn on skip layer guidance for improved quality\
|
||||
--check-loras : filter loras that are incompatible (will take a few seconds while refreshing the lora list or while starting the app)\
|
||||
--advanced : turn on the advanced mode while launching the app
|
||||
|
||||
|
||||
@ -236,7 +236,7 @@ def _parse_args():
|
||||
)
|
||||
|
||||
parser.add_argument(
|
||||
"--skip-guidance",
|
||||
"--slg",
|
||||
action="store_true",
|
||||
help="Enable skip guidance"
|
||||
)
|
||||
@ -1982,7 +1982,7 @@ def create_demo():
|
||||
("OFF", 0),
|
||||
("ON", 1),
|
||||
],
|
||||
value= 1 if args.skip_guidance else 0,
|
||||
value= 1 if args.slg else 0,
|
||||
visible=True,
|
||||
scale = 1,
|
||||
label="Skip Layer guidance"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user