Skip to content

Commit 8ff49d9

Browse files
authored
Update README.md
1 parent c20e87b commit 8ff49d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ for epoch in range(500):
3737
loss = None
3838
for x, y in dl:
3939
y_ = model.forward(x)
40-
loss = mse(y, y_)
40+
loss = objective(y, y_)
4141
loss.backprop()
4242
model.step(1e-5)
4343

0 commit comments

Comments
 (0)