set batch size to 1 to avoid errors
Browse files
app.py
CHANGED
|
@@ -42,6 +42,7 @@ def process(
|
|
| 42 |
ensemble_size=ensemble_size,
|
| 43 |
denoising_steps=denoise_steps,
|
| 44 |
processing_res=processing_res,
|
|
|
|
| 45 |
show_progress_bar=True,
|
| 46 |
)
|
| 47 |
|
|
|
|
| 42 |
ensemble_size=ensemble_size,
|
| 43 |
denoising_steps=denoise_steps,
|
| 44 |
processing_res=processing_res,
|
| 45 |
+
batch_size=1,
|
| 46 |
show_progress_bar=True,
|
| 47 |
)
|
| 48 |
|