Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update softmax-regression-concise.md #1335

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chapter_linear-networks/softmax-regression-concise.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ trainer = paddle.optimizer.SGD(learning_rate=0.1, parameters=net.parameters())
```{.python .input}
#@tab all
num_epochs = 10
d2l.train_ch3(net, train_iter, test_iter, loss, num_epochs, trainer)
d2l.train_ch13(net, train_iter, test_iter, loss, num_epochs, trainer)
```

和以前一样,这个算法使结果收敛到一个相当高的精度,而且这次的代码比之前更精简了。
Expand Down
Loading