mirror of
https://github.com/Wan-Video/Wan2.1.git
synced 2025-06-03 22:04:53 +00:00
* Add VACE * Support training with multiple gpus * Update default args for vace task * vace block update * Add vace exmaple jpg * Fix dist vace fwd hook error * Update vace exmample * Update vace args * Update pipeline name for vace * vace gradio and Readme * Update vace snake png --------- Co-authored-by: hanzhn <han.feng.jason@gmail.com>
11 lines
412 B
Python
11 lines
412 B
Python
from .fm_solvers import (FlowDPMSolverMultistepScheduler, get_sampling_sigmas,
|
|
retrieve_timesteps)
|
|
from .fm_solvers_unipc import FlowUniPCMultistepScheduler
|
|
from .vace_processor import VaceVideoProcessor
|
|
|
|
__all__ = [
|
|
'HuggingfaceTokenizer', 'get_sampling_sigmas', 'retrieve_timesteps',
|
|
'FlowDPMSolverMultistepScheduler', 'FlowUniPCMultistepScheduler',
|
|
'VaceVideoProcessor'
|
|
]
|