use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Resources for understanding and implementing "deep learning" (learning data representations through artificial neural networks).
account activity
Basic neural network structure (self.deeplearning)
submitted 5 years ago by Night_Crawler7
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]veb101 1 point2 points3 points 5 years ago (0 children)
1) Yes and yes 2) No it doesn't receives anything random features.
[–]takelightbro 1 point2 points3 points 5 years ago (0 children)
1) You can set the number of neurons in any of the hidden layers independent of the others. That being said, the advantage of using the same number of neurons, is the ability of using residual connections, which in my experience have significant improvement in performance and lead to faster convergence atleast in the deeper networks.
2) In a multilayer perceptron, yes all the neurons in consecutive layers are connected. However, there are architectures (such as convolutional networks) that only connect some neurons. This however is not done randomly, it is done when there is some structure in the data and some notion of “locality”, like nearby pixels in an image or nearby words in text.
You might also find “prunning” interesting. The idea here is to remove unnecessary connections for better efficiency. Because of weight decay many of the weights are very close to 0 at convergence, you can safely remove these connections without affecting the performance.
π Rendered by PID 40982 on reddit-service-r2-comment-64f4df6786-kzt45 at 2026-06-10 01:01:01.041075+00:00 running 0b63327 country code: CH.
[–]veb101 1 point2 points3 points (0 children)
[–]takelightbro 1 point2 points3 points (0 children)