TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Hacker's Guide to Neural Networks

450 点作者 bernatfp超过 10 年前

20 条评论

karpathy超过 10 年前
Thanks for the upvotes! I&#x27;m a little conflicted about this being linked around too much because it is still very much work in progress. I work on this guide on a side because I think there&#x27;s a lot of interest in these models out there, and not enough explanations.<p>On a related note, some of you might also be interested in a Stanford CS class I&#x27;ll be co-teaching with my adviser next quarter. It will be focused primarily on Convolutional Networks (but a lot of the learning machinery is generic):<p>CS231n: Convolutional Neural Networks for Visual Recognition <a href="http://vision.stanford.edu/teaching/cs231n/" rel="nofollow">http:&#x2F;&#x2F;vision.stanford.edu&#x2F;teaching&#x2F;cs231n&#x2F;</a><p>I hope to make a lot of the materials&#x2F;code freely available so everyone can follow along, and I will continue my work on this guide in parallel whenever I can squeeze in time. (And I&#x27;d be happy to hear any feedback on the content&#x2F;style&#x2F;presentation)
评论 #8558009 未加载
评论 #8555429 未加载
评论 #8554656 未加载
评论 #8555758 未加载
评论 #8555176 未加载
antimora超过 10 年前
I wanted to share this resource as well.<p>I started this online free book &quot;Neural Networks and Deep Learning&quot; (<a href="http://neuralnetworksanddeeplearning.com/" rel="nofollow">http:&#x2F;&#x2F;neuralnetworksanddeeplearning.com&#x2F;</a>). I think it has a pretty good explanation and illustration.
评论 #8557867 未加载
jaza超过 10 年前
Great guide - the only material I&#x27;ve ever read on the subject, that hasn&#x27;t completely made my head hurt and my brain not grok. I&#x27;m not a maths or ML guy, just a regular programmer. I&#x27;ve dabbled in NN before, but only to the extent of using some libraries as a &quot;black box&quot; to pass parameters &#x2F; training data to. No doubt there are many more people like me (too many!).<p>My understanding after reading this guide, is that a neural network is essentially just a formula for guessing the ideal parameter(s) of another formula, and for successively refining those parameters as more training data is passed in. I already knew this &quot;in theory&quot; before, but now I think most of the magic and mystery has been brushed off. Thanks karpathy!
评论 #8555982 未加载
zackmorris超过 10 年前
This is the first explanation of neural nets that has really clicked for me. That&#x27;s because it&#x27;s written in the same explanatory tone that I would use in person while trying to convey the concepts. I wish more people would write like this.<p>I think of these things like lectures in college. Assuming that a) you have all the context up to that point, b) you grok every step, and c) it doesn&#x27;t run beyond the length of you attention span - call it an hour - then you can learn astonishing things in a matter of a few sessions. But if you miss a step, and don&#x27;t raise your hand because you think your question is stupid, then you might as well pack up and go home.<p>I find that even though the time element of articles is removed, I still trip over certain sections because the author was too lazy to anticipate my thinking process, which forces me to search other sites for the answers, and before you know it the impact of the writing has been completely diluted.
xanderjanz超过 10 年前
<a href="https://class.coursera.org/ml-007" rel="nofollow">https:&#x2F;&#x2F;class.coursera.org&#x2F;ml-007</a><p>Andrew Ng&#x27;s Standford course has been a god send in laying out the mathmatics of Machine Learning. Would be a good next step for anybody who was intrigued by this article.
bribri超过 10 年前
Absolutely Amazing. I wish I could be taught more math in terms of programming. Hope some more people make &quot;Hacker&#x27;s Guide to _&quot;
评论 #8555237 未加载
hoprocker超过 10 年前
This is great. Always appreciate different approaches to NN and ML. I&#x27;m amazed that a Stanford PhD candidate has the time to put this together (I won&#x27;t tell your advisor :-), but still, thank you!
ilyaeck超过 10 年前
I saw the JS demos a few months ago and was blown away. It seems like the community is really thirsty for NN tools and materials, and the way you are going about this (interactive JS) is right on the money? Why not engage the community to keep building the site up, then? You may want to look into open-sourcing the entire site + the JS library, it may really pick up steam. Worse case, it breaks apart (can always reclaim it), but the exercise could be a very interesting one.
sireat超过 10 年前
This was a very good read.<p>My naive question are the gates are always so trivial or are they usually black boxes with an unknown function underneath(instead of clearly defined <i>,+, etc).<p>In other words do we usually&#x2F;always know what stands behind f(x,y)?<p>Otherwise, if f(x,y)=x</i>y then obviously you can hardcode a heuretic that just cranks up max x and max y and gets max f(x,y).<p>That is the question is why should we tweak the input slightly not go all out.
breflabb超过 10 年前
inspiring! i have always been interested in AI and neuralnets but i have been discuraged by the math, many educators that try to learn out these topics assume that their readers have the same math skills as them selfs and omits the boring parts for them. its actually the first time i enjoyed to read about AI and at the same time learn calculus! :) keepup the great work!
infinitone超过 10 年前
I was wondering the other day, since I have a CV project that could use neural networks to solve some problems. How big of a training dataset does one need? Is there some analysis on the relationship between the size of training data and accuracy?
评论 #8556247 未加载
jdminhbg超过 10 年前
I worked through the first few chapters on a flight yesterday and found this to be exactly what I need -- my ability to read code and sort of intuit alogrithms vastly exceeds my ability to read and understand math. Thanks for putting this together.
jimmaswell超过 10 年前
&quot;it is important to note that in the left-hand side of the equation above, the horizontal line does not indicate division.&quot;<p>It pretty much is, though.
JoelHobson超过 10 年前
I haven&#x27;t finished it yet, but I find this much easier to understand than any other article on neural networks that I&#x27;ve read.
ajtulloch超过 10 年前
This is a great piece of work - thanks @karpathy.
thewarrior超过 10 年前
This seems less like a biological neuron and more like a multi level table lookup.
midgetjones超过 10 年前
This was a fantastic read, thanks so much!<p>Can anyone define &#x27;pertubations&#x27; for me?
评论 #8556471 未加载
Elzair超过 10 年前
Thank you karpathy. This is a great introduction.
sathya_vj超过 10 年前
Thanks a lot for this!
therobot24超过 10 年前
HN loves Neural Nets &amp; Deep Learning - it&#x27;s all i ever see in my RSS feed (with regard to ML methods)
评论 #8554932 未加载