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: AI is really exciting but where do I start?

131 pointsby CyberMacGyverover 2 years ago
It&#x27;s mind blowing to see all the advances in AI from generating images based on text input to designing beautiful interiors and even editing out objects live from video.<p>Where would you start if you want to practically work with AI?<p>I have some programming and high school level math background.

30 comments

imranqover 2 years ago
Stanford grad courses are excellent. Just following the exercises will get you very far:<p>* AI Foundations: <a href="https:&#x2F;&#x2F;stanford-cs221.github.io&#x2F;autumn2022&#x2F;" rel="nofollow">https:&#x2F;&#x2F;stanford-cs221.github.io&#x2F;autumn2022&#x2F;</a><p>* Meta Learning: <a href="https:&#x2F;&#x2F;cs330.stanford.edu&#x2F;" rel="nofollow">https:&#x2F;&#x2F;cs330.stanford.edu&#x2F;</a><p>* Theoretical ML: <a href="https:&#x2F;&#x2F;cs229.stanford.edu&#x2F;" rel="nofollow">https:&#x2F;&#x2F;cs229.stanford.edu&#x2F;</a><p>* NLP: <a href="https:&#x2F;&#x2F;web.stanford.edu&#x2F;class&#x2F;cs224n&#x2F;" rel="nofollow">https:&#x2F;&#x2F;web.stanford.edu&#x2F;class&#x2F;cs224n&#x2F;</a><p>* Computer vision: <a href="http:&#x2F;&#x2F;cs231n.stanford.edu&#x2F;" rel="nofollow">http:&#x2F;&#x2F;cs231n.stanford.edu&#x2F;</a><p>* Reinforcement Learning: <a href="https:&#x2F;&#x2F;web.stanford.edu&#x2F;class&#x2F;cs234&#x2F;" rel="nofollow">https:&#x2F;&#x2F;web.stanford.edu&#x2F;class&#x2F;cs234&#x2F;</a><p>Read Blogs:<p>* DeepMind: <a href="https:&#x2F;&#x2F;www.deepmind.com&#x2F;blog" rel="nofollow">https:&#x2F;&#x2F;www.deepmind.com&#x2F;blog</a><p>* Google Research: <a href="https:&#x2F;&#x2F;ai.googleblog.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;ai.googleblog.com&#x2F;</a><p>Replicate papers that you are interested in with a twist specific to your use cases<p>* RL Spinning UP:<a href="https:&#x2F;&#x2F;spinningup.openai.com&#x2F;en&#x2F;latest&#x2F;" rel="nofollow">https:&#x2F;&#x2F;spinningup.openai.com&#x2F;en&#x2F;latest&#x2F;</a>
constantcryingover 2 years ago
It depends on what you do. The <i>basics</i> of how neural networks work don&#x27;t involve much more than highschool math and the tools are accessible to basically anyone, although knowing python makes it easier.<p>The best thing you can do, in my oppinion, is actually start using AI libraries. TensorFlow has quite a bit of tutorials, which guide you through simple tasks. You have to understand a bit of mathematics and python to do them. You know how to programm, so you know how to assemble the pieces, there isn&#x27;t really anything stopping you. For me there has never been a faster way to learn anything than trying something, failing, trying to understand why I am failing and repeating that process.<p>If you really want to understand what a NN <i>is</i> you need linear algebra and calculus, then you can implement your own basic NN library. After that the mathematics gets more involved.
izuchukwuover 2 years ago
If you want to get starting building with AI right away, I&#x27;d recommend getting an OpenAI key and playing with prompts in a tool like Everyprompt. Start asking it whatever you can think of, click Deploy to make an API out of it, then try building apps based on that.<p>You can then try running Stable Diffusion and using that in your apps too.<p>These other answers, while well meaning, are for building models and not for practically working with AI. They&#x27;re like being given resources on how compilers work when someone asked how to write &quot;Hello World.&quot;<p>Once you get that magic feeling of having something working, you can always dig into all of the research, like <a href="https:&#x2F;&#x2F;course.fast.ai" rel="nofollow">https:&#x2F;&#x2F;course.fast.ai</a>, later.
评论 #33380739 未加载
评论 #33382866 未加载
f0e4c2f7over 2 years ago
<a href="https:&#x2F;&#x2F;course.fast.ai&#x2F;" rel="nofollow">https:&#x2F;&#x2F;course.fast.ai&#x2F;</a>
machiawelicznyover 2 years ago
Fast.ai and Karpathy’s youtube channel. I get some news&#x2F;tools from Twitter mostly - bleedingedge.ai and @ai__pub<p>Try running stable diffusion locally, tag your images with YOLO, learn how to use transformers library from hugging face or langchain lib<p>One you get hang of it then Kaggle is probably good next step
评论 #33372481 未加载
danweeover 2 years ago
I started with Artificial Intelligence: A Modern Approach (by Norvig). I know it has nothing to do with the current trends of machine generated images and videos based on textual input... but I don&#x27;t care. I don&#x27;t really like machine&#x2F;deep learning, but I love the AI topics the book covers. Hopefully one day Symbolic AI will kick off.
评论 #33374873 未加载
评论 #33382235 未加载
taneqover 2 years ago
1) Define your domain. AI doesn&#x27;t mean neural nets. It means making a computer do something that you thought required intelligence. Neural nets are getting pretty good at general purpose do-what-I-mean problem solving, though. Do you want to do neural nets or do you want to do AI?<p>2) Set a goal. Start by figuring out what you want to do. You want to make an algorithm which achieves X, solve for X.<p>3) Lit review. Find out what work has been done in this particular direction. Don&#x27;t just skim, understand the work. Re-implement and reproduce the most promising studies just to see if you can get them working. If you can&#x27;t, that&#x27;s publishable in and of itself! If no-one&#x27;s done anything in this direction then this should be easy.<p>4) Proof of concept. You&#x27;ve determined that a thing is possible and you have a good idea how to do it. Start working on an implementation of the thing.<p>...this is where business, science and engineering part ways.<p>Science:<p>5) Once you have a proof of concept that exceeds state of the art in some measurable way, write a paper and publish it. Get funding. Repeat.<p>Engineering:<p>5) Apply for a job at a company doing similar research using your proof of concept as your resume. No-one cares what grades you got in year 10 geography if you can show them something awesome that you built just now.<p>Business:<p>5) Either build a minimum viable product yourself, break into a viable market, and then iterate on that while also working yourself to death learning to do all the business stuff you never realised even existed, or use your proof of concept as a pitch deck to get financial backing from some incubator, angel, VC etc. then build your dream for them as well as you.
mrtedbearover 2 years ago
I&#x27;ve found Lilian Weng&#x27;s blog a great resource to get an intuition for the maths behind popular models and concepts. <a href="https:&#x2F;&#x2F;lilianweng.github.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;lilianweng.github.io&#x2F;</a>
phlipskiover 2 years ago
About a year and a half ago I was looking to learn more about the openCV library and computer vision. Searching through HN turned me on to: <a href="https:&#x2F;&#x2F;pyimagesearch.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;pyimagesearch.com&#x2F;</a><p>Their approach to hands on learning with code samples you can download and run proved very effective (for me) at demystifying the current AI fields of image classification and object detection. It&#x27;s all python based and leans heavily on existing libraries. But he does cover the basic math and references various books and research papers that are influential in the field.<p>I ultimately signed up for their paid courses but you could learn quite a bit from the free stuff.<p>After a few months of learning from pyimagesearch.com I ultimately decided to enroll in the GT OMSCS program to really dig into the field. @Pinegulf is right - AI is just code. There is no &quot;one AI program to rule them all&quot; and there never will be. Better to think of AI as a collection of various tools (really cool tools!) that have been invented to solve various problems - image classification, or voice processing to name two of the more recent hot AI tools.
mellingover 2 years ago
<a href="https:&#x2F;&#x2F;www.kaggle.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.kaggle.com&#x2F;</a><p>There’s a community so you can learn from others.<p>Small tutorials:<p><a href="https:&#x2F;&#x2F;www.kaggle.com&#x2F;learn" rel="nofollow">https:&#x2F;&#x2F;www.kaggle.com&#x2F;learn</a><p>Hands on Machine Learning is a great book:<p><a href="https:&#x2F;&#x2F;a.co&#x2F;d&#x2F;3jgyEds" rel="nofollow">https:&#x2F;&#x2F;a.co&#x2F;d&#x2F;3jgyEds</a><p>Version 3 ships in the middle of November so wait a couple weeks.
graypeggover 2 years ago
I really liked Grokking Machine Learning by Luis Serrano. [1] It builds from a highschool math level, which made it really easy to get up to speed!<p>[1] <a href="https:&#x2F;&#x2F;www.manning.com&#x2F;books&#x2F;grokking-machine-learning" rel="nofollow">https:&#x2F;&#x2F;www.manning.com&#x2F;books&#x2F;grokking-machine-learning</a>
nazkaover 2 years ago
An in depth practical example from the game Quake III: check out the 2 link at the end of this quick intro. <a href="https:&#x2F;&#x2F;fabiensanglard.net&#x2F;quake3&#x2F;a.i.php" rel="nofollow">https:&#x2F;&#x2F;fabiensanglard.net&#x2F;quake3&#x2F;a.i.php</a><p>I love its simplicity yet it is so effective. So many project in AI turn to a bunch of complex stuff that just add some questionable value. And sometimes a project where we wonder “is the different part of the logic acting against each other and get the AI to some half idle state compare to what it’s supposed to do?”. You can even see how you can add different behavior very easily like here for some character to prefer different guns.
ultrasounderover 2 years ago
AI is a very broad term for a specific branch of CS. Let me relate my own experience and so I think I am better equipped to answer that question. My background is that I am an Electrical engineer with no formal programming background. I learnt Python from Zed Shaws LPTHW book. So as a first step I would suggest you do that. Then play around with the language and the tooling itself a bit. I Explored web programming with Django and even basic CV with OpenCV. Once I understood the basics of the language mechanics as applied to Machine Learning basics I then recently started down with Fast.ai course. It’s very bottom-up as in you start building advanced AI stuff right from the get go. It’s free and the instructor and the whole community is top notch: they even have an entire book that is catering to the class. They also have a second iteration which is about stable diffusion which seems to be all the rage these days and the first course sets you up nicely for that: after that the world is the oyster. In my own case I have a specific project in mind. An app that people can point their smartphone camera at and decide if their meat is well done or not( 1M people get good poison every year ). Good luck with your learning journey. It’s an exciting journey. I am on a mobile so please excuse my typos.
antcasover 2 years ago
Depends a bit on your approach.<p>If you&#x27;re trying to ship projects and you don&#x27;t care how things work under the hood, then check out repos that look interesting and start pulling levers.<p>A lot of projects you can play around with now on Google Colab without really knowing how they work.<p>If you want to go deeper, really understand what&#x27;s happening with Machine Learning and neural-nets, then the most-recommended course is still Andrew Ng&#x27;s Coursera course.<p><a href="https:&#x2F;&#x2F;www.coursera.org&#x2F;collections&#x2F;machine-learning" rel="nofollow">https:&#x2F;&#x2F;www.coursera.org&#x2F;collections&#x2F;machine-learning</a><p>And if you just want to keep up with the headlines&#x2F;fight FOMO I&#x27;m writing a 20% jokes 80% informative newsletter at <a href="https:&#x2F;&#x2F;boteatbrain.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;boteatbrain.com&#x2F;</a>
orzigover 2 years ago
AI is a big field, you will have to choose a specialty. Don’t stress about it too much, you can change later, but think whether you would rather do images, text, etc. I would focus on whatever you might be able to work into your day job, as diligent as you will try to be, it will be much easier to keep momentum if it ties to what you are paid to think about every weekday.<p>It might not be possible to overlap the sexiest new techniques with the things that you can practice during your job, but there is a lot of fundamentals you will be learning regardless, and when you are ready to jump more squarely into cutting edge applications you will find them essential.
Emigre_over 2 years ago
I would really recommend you the Artificial Intelligence for Humans series of books by Jeff Heaton, because they give a generic overview of the field as a whole without going into too much detail. I think they are perfect to get started, and once you have an idea of the different topics you can find a more detailed book to go more in-depth.<p>There are three books in the series: Fundamental Algorithms, Nature-Based Algorithms, and Deep Learning and Neural Networks.
omeysalviover 2 years ago
Don&#x27;t do tutorials or Udemy courses. You will learn with them but you need to understand the math behind things to really make something worthwhile. Read the Deep Learning Book. It will prepare you to really dive deep into the field. <a href="https:&#x2F;&#x2F;www.deeplearningbook.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.deeplearningbook.org&#x2F;</a>
评论 #33371281 未加载
pharmakomover 2 years ago
Any good resources that are <i>not</i> Python?<p>It’s a great language in terms of libraries but I find other aspects of it quite painful to work with.
drabadurover 2 years ago
This site also list the main courses that would make sense: <a href="https:&#x2F;&#x2F;www.deeplearning.ai&#x2F;courses&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.deeplearning.ai&#x2F;courses&#x2F;</a>
sanatgersappaover 2 years ago
Making friends with machine learning <a href="https:&#x2F;&#x2F;youtu.be&#x2F;1vkb7BCMQd0" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;1vkb7BCMQd0</a>
cyberdataover 2 years ago
For practical purpose : Fast AI course would be ideal.<p>To get into the theory side of things : Deep Learning Specialization from Coursera taught by Andrew NG.
评论 #33371108 未加载
kurtreedover 2 years ago
<a href="https:&#x2F;&#x2F;www.deeplearningbook.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.deeplearningbook.org&#x2F;</a>
评论 #33379884 未加载
whoevercaresover 2 years ago
The fun thing is if you move and learn fast enough, you might end up questioning the foundation at not very far future
eceover 2 years ago
<a href="https:&#x2F;&#x2F;colah.github.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;colah.github.io&#x2F;</a>
modinfoover 2 years ago
<a href="https:&#x2F;&#x2F;huggingface.co" rel="nofollow">https:&#x2F;&#x2F;huggingface.co</a>
browningstreetover 2 years ago
Most external AI I encounter is terrible. Any benefit from running AI myself, for myself?
anotheryouover 2 years ago
Does anyone have experience with knime? Looked fun. (low code ML enviroment)
cgearhartover 2 years ago
If you just mean building something that uses AI then any generic tutorial online will get you started. But that’s uninteresting, so I’m going to assume you want to know what it would take to be on the teams inventing this stuff. For the most part today that means working on deep learning at a big company that has the data and compute resources required. At my work I sometimes hire AI&#x2F;ML applied research scientists to work on the kind of problems you described, so I’ll explain what it takes for them to get hired and maybe that will help you figure out a plan to get there.<p>The interview panel is basically a phone screen with some coding (a math-centric generic problem), then an on-site that involves an hour deep dive discussion on ML fundamentals, an hour discussion on NLP, an hour on ML system design, an hour discussion on deep learning, and an hour coding up a neural network from scratch (you can import numpy), a behavioral interview, and time for the candidate to ask questions. Notice how much of the interview is discussion&#x2F;theoretical; it doesn’t scale to do practical tests on all these domains during and onsite, so we fall back on these discussions. If you have only used ML libraries or only used ML services then you will likely struggle in these interviews.<p>From that perspective you should look for training and experience that prepares you for both theoretical and practical interviews. As basic courses, I like Andrew Ng’s ML course on Coursera and the fast.ai course is pretty useful early on too; I also like this book <a href="https:&#x2F;&#x2F;d2l.ai&#x2F;" rel="nofollow">https:&#x2F;&#x2F;d2l.ai&#x2F;</a> However, none of these resources is really sufficient—there’s a lot of stuff you will need to learn on the job.<p>Getting a first job coding is the hardest. Be willing to take lower pay if the experience will help you open doors. Take jobs that let you work with tools and tech that cover gaps in your skill set. If you have previous experience coding and you want to switch to AI&#x2F;ML then you may need to take a pay cut at some point (and briefly). For some reason it’s rare that companies will value software experience in ML engineers or researchers, so they’ll downlevel when you’re hired and then scramble to promote you in six months if you’re successful on the team.<p>An undergrad degree in CS is very good; and a graduate degree in CS&#x2F;math&#x2F;stats&#x2F;similar is even better. Do you <i>need</i> degrees? No, but your odds without them are kinda like the odds of making it into the NFL as a walk-on — <i>low</i>. If you already have an undergrad degree, you can check out Georgia Tech, UT Austin, UIUC and other schools that have online MSCS programs (all pretty fast and cheaper than resident programs).<p>Overall, if you’re serious about this then your plan should be to get to that level in like 10 years. I’m not saying you can’t even start until then—there’s lots you can do along the way. But I’m trying to create an expectation that other people who are also really smart, motivated, and interested in these problems—just like you—take about 10 years to get where they are. There’s no good shortcuts, otherwise we’d all be using them already.
RandomWorkerover 2 years ago
With data
Pinegulfover 2 years ago
Essentially Ai is just a code, thus learn how to code.<p>Ignore those who swear to the name of a specific language. The skills are largely transferable. Python has great resources and is pretty popular. It also host lates AI tools. Win-win in my books.