TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What are the best resources today for learning AI/LLMs

20 pointsby geph202110 months ago
I know of a few resources, but I&#x27;m sure there are others and would love to gather some pointers from the HN crowd. These come to mind:<p>https:&#x2F;&#x2F;course.fast.ai&#x2F;<p>https:&#x2F;&#x2F;www.deeplearning.ai&#x2F;courses&#x2F;<p>Andrej Karpathy youtube and github:<p>https:&#x2F;&#x2F;www.youtube.com&#x2F;@AndrejKarpathy&#x2F;videos

5 comments

gnabgib10 months ago
Related:<p><i>“If you learn all of these, you’ll know 90% of what matters”</i> (313 points, 2 months ago, 110 comments) <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=40397806">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=40397806</a><p><i>ASK: How do I learn more about LLMs and ML?</i> (35 points, 4 months ago, 17 comments) <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=39950683">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=39950683</a>
评论 #41117480 未加载
nextos10 months ago
I&#x27;d say Kevin Murphy&#x27;s two-volume PML book is a wonderful outline of almost everything that concerns ML these days: <a href="https:&#x2F;&#x2F;probml.github.io&#x2F;pml-book" rel="nofollow">https:&#x2F;&#x2F;probml.github.io&#x2F;pml-book</a>. Note there is a ton of companion code to recreate figures and discuss concepts. My other favorite, <a href="https:&#x2F;&#x2F;d2l.ai" rel="nofollow">https:&#x2F;&#x2F;d2l.ai</a>, is much simpler mostly aiming at modern CNNs and LLMs. It is really polished, and code is embedded within the text.<p>AI is very broad. I think the future is neurosymbolic, and these two books only cover a tiny part of symbolic, mostly concerned with probabilistic and causal models. See Murphy vol 2 sections V-VI. Lots of interesting ideas for symbolic AI can be found in the SAT and theorem proving literature.
constantinum10 months ago
I would recommend Simon Willison’s blog <a href="https:&#x2F;&#x2F;simonwillison.net&#x2F;" rel="nofollow">https:&#x2F;&#x2F;simonwillison.net&#x2F;</a>
vasili11110 months ago
Links that you have provided are good for learning how deep learning in general and LLMs in particular work. But if you are interested in only building the products based on existing models (like GPT models from OpenAI) you will not need those details of inner work and how those model are created. In that case learn from OpenAI documentation, Azure OpenAI documentation, Azure AI services documentation and etc.
zacky3110 months ago
You can try this.<a href="https:&#x2F;&#x2F;github.com&#x2F;rasbt&#x2F;LLMs-from-scratch">https:&#x2F;&#x2F;github.com&#x2F;rasbt&#x2F;LLMs-from-scratch</a>