-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
DOC add links to neural network examples #26935
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
DOC add links to neural network examples #26935
Conversation
Please link all files for which you're creating links in the description, and limit the PR to a single class (or group of a class if there are classification and regression for the same algorithm) |
Will update the PR description to contain all the files for which the links have been created.
Does this mean that separate PRs should be created for |
To simplify the PR, you can take a single example and then put link in different places wherever relevant. then it'd be okay if it touches multiple classes. |
@adrinjalali on further digging through the code, I notice that the I double checked the references for I was also not able to find any other refs for Please let me know if I am missing more references. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can keep them all here, ended up reviewing as is. Thank you :)
906d0a0
to
8061e7f
Compare
Thanks for the comments @adrinjalali I've resolved all of them with the latest commit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also liter's failing.
I've updated the code as per the new suggestions @adrinjalali linter is failing since we use |
99b67ba
to
add3131
Compare
For a comparison between Adam optimizer and SGD, see | ||
:ref:`sphx_glr_auto_examples_neural_networks_plot_mlp_training_curves.py` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
missing a .
at the end of all these sentences.
@punndcoder28 would you like to continue working on this PR? |
Apologies, the comments did not notify me. Will update the PR again |
81472b1
to
cdbe78f
Compare
Reference Issues/PRs
Adds links to
neural-networks
examples as mentioned in #26927What does this implement/fix? Explain your changes.
Adds links to auto-generated examples for classes
MLPClassifier
,BernoulliRBM
,SGDOptimizer
andAdamOptimizer
Classes and files updated with examples link
MLPClassifier
(sklearn/neural_network/_multilayer_perceptron.py
)BernoulliRBM
(sklearn/neural_network/_rbm.py
)SGDOptimizer
(sklearn/neural_network/_stochastic_optimizers.py
)AdamOptimizer
(sklearn/neural_network/_stochastic_optimizers.py
)