Skip to content

Commit 3ba3997

Browse files
RyanJDickpsychedelicious
authored andcommitted
Fix lint error.
1 parent 46316e4 commit 3ba3997

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/generate_vae_linear_approximation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def train(
8989
loss_fn = torch.nn.MSELoss()
9090

9191
epoch_pbar = tqdm(range(num_epochs), desc="Training")
92-
for epoch in epoch_pbar:
92+
for _ in epoch_pbar:
9393
total_loss = 0.0
9494
for latent, target in zip(latents, targets, strict=True):
9595
latent = latent.to(device=device, dtype=dtype)

0 commit comments

Comments
 (0)