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

Corrected reference to exercise4.m in Part 3.4 to exercise3.m #5

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
4 changes: 2 additions & 2 deletions doc/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -529,14 +529,14 @@ What you have just witnessed is actually a fairly general principle: centring th

Now we will explore several parameters in the algorithms:

> **Task:** Restore the preprocessing as given in `experiment4.m`. Try the following:
> **Task:** Restore the preprocessing as given in `experiment3.m`. Try the following:
>
> * Try increasing the learning rate `eta`. Can you achieve a better value of the energy in the 500 iterations?
> * Disable momentum by setting `momentum = 0`. Now try to beat the result obtained above by choosing `eta`. Can you succeed?

Finally, consider the regularisation effect of shrinking:

> **Task:** Restore the learning rate and momentum as given in `experiment4.m`. Then increase the shrinkage factor tenfold and a hundred-fold.
> **Task:** Restore the learning rate and momentum as given in `experiment3.m`. Then increase the shrinkage factor tenfold and a hundred-fold.
>
> - What is the effect on the convergence speed?
> - What is the effect on the final value of the total objective function and of the average loss part of it?
Expand Down