VidCraft / utils.py
ansel3911's picture
Upload 3 files
d6439c9 verified
raw
history blame contribute delete
269 Bytes
from gradio import Progress
def create_progress_updater(start: int, total: int, desc: str, progress: Progress):
def updater(pipe, step, timestep, callback_kwargs):
progress((step + start, total), desc=desc)
return callback_kwargs
return updater