Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -315,8 +315,6 @@ def generate_text(steps):
|
|
| 315 |
|
| 316 |
with torch.no_grad():
|
| 317 |
for i in range(steps):
|
| 318 |
-
progress(i / steps, desc=f"Denoising Step {i+1}/{steps}")
|
| 319 |
-
|
| 320 |
t = timesteps[i] * torch.ones(x.shape[0], 1, device=DEVICE)
|
| 321 |
curr_sigma_bar, _ = NOISE(t)
|
| 322 |
|
|
|
|
| 315 |
|
| 316 |
with torch.no_grad():
|
| 317 |
for i in range(steps):
|
|
|
|
|
|
|
| 318 |
t = timesteps[i] * torch.ones(x.shape[0], 1, device=DEVICE)
|
| 319 |
curr_sigma_bar, _ = NOISE(t)
|
| 320 |
|