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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Tips for a young dreamer and developer [Help]

3 点作者 brunoalano大约 11 年前
Hello, I&#x27;ve just turned 18 years old and since my 08 years I program (Visual Basic, Python, C, C + +, Ruby, D, Javascript and others) and in these 10 years I have learned a lot!<p>Currently I am dedicated to making startups and projects, and I have great interest in furthering me in math (currently reading &quot;Discrete Mathematics with Applications&quot;) and <i>artificial intelligence</i>.<p>My big problem is:<p>- What language study the background to artificial intelligence? (Clojure, Lisp, Haskell, Scala, Python?)<p>- Which books to be read based on artificial intelligence and then continue in other subdivisions?<p>Thanks to everyone, and unfortunately I did not know whom to seek to take these doubts. Today I live in Brazil, and is very difficult to find people who can help me with this, most young people are in parties or playing games ):

4 条评论

psyklic大约 11 年前
AI is a very broad field. Much of the academic &quot;classical&quot; AI requires some advanced math to understand in depth.<p>A fun place to start is video game AI because it is visual. For example, path-finding algorithms, the ghost AI in pacman, chess&#x2F;checkers, bots which play video games.<p>Another fun visual subfield is computer vision. If you have a webcam, you could get OpenCV and play around with recognizing faces and motion detection.<p>If you are really into math, I always think that attempting an automated theorem prover would be fun. It is an up and coming science (in fact there was a HN post today about it), and I bet there are a lot of ad hoc approaches you could take if you choose a specific area of math.<p>If you want something very practical, nowadays search&#x2F;recommendations&#x2F;etc. are important on the web. There are some high-rated books on Collective Intelligence that are more practical-minded than the academic AI classics. And mining the web for a dataset could be a fun project.<p>As for the best language, it depends on which subfield you want to pursue. Scheme&#x2F;Lisp are probably the most strongly associated with AI. However, in practice they are rarely used. I would say it does not matter, as long as you are motivated :)
评论 #7502455 未加载
dennybritz大约 11 年前
Hello,<p>I think it&#x27;s great that you are motivated to study such topics. First, I think it would be useful for you to define what you actually want to learn. There is a difference in what has traditionally been called &quot;AI&quot; and what is called &quot;Machine Learning&quot; today. While these two fields are related and some people say that ML is a subfield of AI, both tend to focus on very different problems. Today, &quot;Machine Learning&quot; has taken a lot of the attention away from traditional AI (mainly due to the lack of results in making truly intelligent machines)<p>Here are some topics I think of when hearing AI vs. Machine Learning:<p>AI<p>- Robotics<p>- Intelligent Machines, e.g. for question answering<p>- Natural Language understanding (Not NLP, I mean <i>understanding</i>)<p>- Game playing&#x2F;planning<p>Machine Learning<p>- Making predictions (Often synonymous with &quot;big data analytics&quot; these days)<p>- Recommendation Systems<p>- Finding Patterns (Data Mining)<p>- &quot;Data Science&quot; techniques<p>In Machine Learning, Python is the de-facto standard language both in Academia and Industry, mainly because because of its excellent libraries. In terms of resources, I can also highly recommend the Coursera ML class, as well as statistics classes to get started. From there you can dive deeper into any of the topics you are interested in.
switch33大约 11 年前
I have a little skype group where we discuss AI. If you are interested you can add me on skype: Switch336<p>As for learning AI it is best to learn it in the language that you are strongest in or a language that is easy to understand the semantics from it. For that matter Lua, Ruby, and Python are fairly commonplace for people trying to learn how to use AI. But AI algorithms can be written in any language really.<p>I&#x27;d suggest books with common examples of AI; like <a href="https://github.com/jbrownlee/CleverAlgorithms" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;jbrownlee&#x2F;CleverAlgorithms</a>. He uses ruby for most of their examples but they are fairly understandable.<p>If you cannot get the books you want. You may be better off checking out the source codes at least. There are tons of free online books if you do some more searching. And you can even read some online ipython notebooks or blog posts about AI that may be more helpful.<p>Anyways, the more the merrier for discussions. So feel free to join our group. Just give me a message and I&#x27;ll add you :D.
评论 #7502470 未加载
pjungwir大约 11 年前
I think Python has become a de-facto standard language for machine learning (not necessarily academic AI research). The book Collective Intelligence by O&#x27;Reilly is a great overview of ML techniques, and it uses Python. You might also want to take the Coursera ML class. If you sign up today, you might not even miss the deadline for Week 1 coursework. (And if you do it&#x27;s not that bad.) That uses Octave, not Python, but you&#x27;d still learn a lot. You might also meet like-minded people in the course forums.