查看: 6855| 回复: 28
跳转到指定楼层
上一主题 下一主题
收起左侧

Stanford的Machine Learning又要开课了!

全局:

注册一亩三分地论坛,查看更多干货!

您需要 登录 才可以下载或查看附件。没有帐号?注册账号

x
本帖最后由 nibuxing 于 2014-5-21 09:16 编辑

Stanford的Machine Learning又要开课了,有没有一起跟的小伙伴。


课程链接:https://www.coursera.org/course/ml

课程概述:

Machine learning is the science of getting computers to act without being explicitly programmed. In the past decade, machine learning has given us self-driving cars, practical speech recognition, effective web search, and a vastly improved understanding of the human genome. Machine learning is so pervasive today that you probably use it dozens of times a day without knowing it. Many researchers also think it is the best way to make progress towards human-level AI. In this class, you will learn about the most effective machine learning techniques, and gain practice implementing them and getting them to work for yourself. More importantly, you'll learn about not only the theoretical underpinnings of learning, but also gain the practical know-how needed to quickly and powerfully apply these techniques to new problems. Finally, you'll learn about some of Silicon Valley's best practices in innovation as it pertains to machine learning and AI.

This course provides a broad introduction to machine learning, datamining, and statistical pattern recognition. Topics include: (i) Supervised learning (parametric/non-parametric algorithms, support vector machines, kernels, neural networks). (ii) Unsupervised learning (clustering, dimensionality reduction, recommender systems, deep learning). (iii) Best practices in machine learning (bias/variance theory; innovation process in machine learning and AI). The course will also draw from numerous case studies and applications, so that you'll also learn how to apply learning algorithms to building smart robots (perception, control), text understanding (web search, anti-spam), computer vision, medical informatics, audio, database mining, and other areas.



课程视频:https://class.coursera.org/ml-005/lecture
课程schedule: https://class.coursera.org/ml-005/wiki/CourseSchedule

week1: http://www.1point3acres.com/bbs/thread-86319-1-1.html
week2: http://www.1point3acres.com/bbs/thread-87328-1-1.html
week3: http://www.1point3acres.com/bbs/thread-90861-1-1.html
week4: http://www.1point3acres.com/bbs/thread-92525-1-1.html
week5: http://www.1point3acres.com/bbs/thread-93793-1-1.html
week6: http://www.1point3acres.com/bbs/thread-95136-1-1.html
week7: http://www.1point3acres.com/bbs/thread-96002-1-1.html
week8: http://www.1point3acres.com/bbs/thread-96702-1-1.html
week9: http://www.1point3acres.com/bbs/thread-97270-1-1.html
week10: http://www.1point3acres.com/bbs/thread-97816-1-1.html


评分

参与人数 2大米 +20 收起 理由
xz28us + 10
EroicaCMCS + 10

查看全部评分


上一篇:[Coursera] Image and video processing week3
下一篇:[Stanford] Introduction to Statistical Learning WK#4讨论作业帖
EroicaCMCS 2014-2-5 12:23:31 | 只看该作者
全局:
sanguine 发表于 2014-2-5 11:45
machine learning到底学些什么呢,能不能具体说说?我看看要不要学==

ML的范畴很大,现在做的人很多,以我现在的水平,不好概括啊。。。
“Machine learning is the science of getting computers to act without being explicitly programmed”,针对具体的问题不可能每一个都一一编程实现,ML就是想找到一个通用的方法。
比如:
1.让机器识别手写的数字。对人来说很容易,但是计算机不行,在计算机眼里所有的图像都是矩阵,要找到合适的算法来完成(比如神经网络)
2.对电子邮件分类,区分是正常邮件还是spam
3.推荐系统,比如:你在淘宝或者亚马逊买了东西,下次登录的时候它会推荐你可能喜欢的商品给你

ML里面很多模型是经典的统计学内容(比如:线性模型,logistic regression),对统计学出身的人来说偏应用偏实现,对于CS出身的人来说偏数学。事实上ML里面很多成果是CS的人提出来的,比如SVM。
有空就学学咯,这门课讲得很好理解,作业量不大(熟悉matlab的矩阵运算的话,每周的作业不超过3行代码。。)

点评

个人水平有限,建议看看syllabus  发表于 2014-2-5 12:26

评分

参与人数 1大米 +20 收起 理由
sanguine + 20 谢谢啦~

查看全部评分

回复

使用道具 举报

 楼主| nibuxing 2014-2-5 13:55:22 | 只看该作者
全局:
sanguine 发表于 2014-2-5 11:45
machine learning到底学些什么呢,能不能具体说说?我看看要不要学==

Eroica已经说得很好了,我这个菜鸟就稍做补充哈。。。
就是用数据或以往的经验,来优化计算机程序的性能。其实就是各种经典的算法,决策树,SVM,Kmeans等等,主要分为监督学习和非监督学习,好像还有一个强化学习不知道是什么。
监督学习主要是regression和classification,比如你有很多组数据,分为输入值和输出值,从这组数据中学习出一个函数,这样有新的输入值就能预测结果了。举个例子,很简单single variable的线性回归,你有一组(x,y),根据大量的(x,y)数据可以拟合出一个y=ax+b的函数,然后以后有新的x你就能得出y了。比如你根据以往的经验找到一个合适的spam/ham的邮件分类器,这样今后遇到新的邮件就可以区分了。
非监督学习就是你有输入值,但是输出值是unknown的,所以直接对输入值进行建模,根据数据内在的属性和联系进行划分,这部分主要是clustering,由于还没怎么学非监督学习,所以无法阐述太多哈。
如果走纯CS路线的话ML我觉得可以不用学,如果是想做数据分析那这个是必修课哦。

评分

参与人数 1大米 +20 收起 理由
sanguine + 20 谢谢啦

查看全部评分

回复

使用道具 举报

modifiedname 2014-2-6 02:26:32 | 只看该作者
全局:
ML 是优化性能的吗?
不是机器根据已知数据预测未知的东西吗?
supervised是有部分数据含有要预测那个量的ground truth,来预测新数据里面那个未知量的值
比如上面说的linear regression, you know both x and y for some people, here y is the ground truth. you build a model to reflect the relationship between x and y.
and for the next group of people, you know only their x, and you want to know their y. then the model can do the prediction for you.  (linear model is used for more than prediction though).
the ground truth 通常是人工辨别的etc,


unsupervised就是没有这个ground truth,只看观察到的数据本身有什么特性

回复

使用道具 举报

Dream 2014-2-6 22:58:23 | 只看该作者
全局:
回复

使用道具 举报

推荐
tianyeblack 2014-5-23 13:03:13 | 只看该作者
全局:
sanguine 发表于 2014-4-14 06:27
我有的时候也是这样%>_

求加分,我已经把week 1 to 10都补上,除了几个penalty都是按时交的,麻烦了~
回复

使用道具 举报

🔗
EroicaCMCS 2014-2-5 11:19:44 | 只看该作者
全局:
good news!!
上次跟了前一半,后一半就final了 没跟完。。
回复

使用道具 举报

🔗
sanguine 2014-2-5 11:45:24 | 只看该作者
全局:
EroicaCMCS 发表于 2014-2-5 11:19
good news!!
上次跟了前一半,后一半就final了 没跟完。。

machine learning到底学些什么呢,能不能具体说说?我看看要不要学==
回复

使用道具 举报

🔗
zzwcsong 2014-2-5 21:24:03 | 只看该作者
全局:
hahaa~太好了
上次跟了5周也没跟下去
回复

使用道具 举报

🔗
pandafolk 2014-2-6 03:00:46 | 只看该作者
全局:
上面写着3月10号开始啊?不是2月17啊
回复

使用道具 举报

🔗
ifso 2014-2-6 04:23:57 | 只看该作者
全局:
我了个大去,coursera不是说收藏了课程会有开课通知吗我怎么没收到!
回复

使用道具 举报

🔗
JessicaVans 2014-2-6 12:02:59 | 只看该作者
全局:
跟了幾次都沒跟上,繼續跟啊!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册账号
隐私提醒:
  • ☑ 禁止发布广告,拉群,贴个人联系方式:找人请去🔗同学同事飞友,拉群请去🔗拉群结伴,广告请去🔗跳蚤市场,和 🔗租房广告|找室友
  • ☑ 论坛内容在发帖 30 分钟内可以编辑,过后则不能删帖。为防止被骚扰甚至人肉,不要公开留微信等联系方式,如有需求请以论坛私信方式发送。
  • ☑ 干货版块可免费使用 🔗超级匿名:面经(美国面经、中国面经、数科面经、PM面经),抖包袱(美国、中国)和录取汇报、定位选校版
  • ☑ 查阅全站 🔗各种匿名方法

本版积分规则

>
快速回复 返回顶部 返回列表