Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -37,6 +37,7 @@ def sample(
|
|
| 37 |
decoding_t: int = 3, # Number of frames decoded at a time! This eats most VRAM. Reduce if necessary.
|
| 38 |
device: str = "cuda",
|
| 39 |
output_folder: str = "outputs",
|
|
|
|
| 40 |
):
|
| 41 |
if image.mode == "RGBA":
|
| 42 |
image = image.convert("RGB")
|
|
|
|
| 37 |
decoding_t: int = 3, # Number of frames decoded at a time! This eats most VRAM. Reduce if necessary.
|
| 38 |
device: str = "cuda",
|
| 39 |
output_folder: str = "outputs",
|
| 40 |
+
progress=gr.Progress(track_tqdm=True)
|
| 41 |
):
|
| 42 |
if image.mode == "RGBA":
|
| 43 |
image = image.convert("RGB")
|