Skip to content

Commit efa032e

Browse files
authored
Quickfix format
1 parent e3db6b4 commit efa032e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def main():
145145
for x, y in tqdm(trainloader, desc="Training"):
146146
x, y = x.to(device), y.to(device)
147147
logits = model.forward(x)
148-
loss = criterion(logits, y)
148+
loss = criterion(logits, y)
149149
loss.backward()
150150

151151
optimizer.step()

0 commit comments

Comments
 (0)