由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
DataSciences版 - 机器学习需要自己搞算法吗
相关主题
为什么要知道DETAILS OF A MACHINE LEARNING ALGORITHM[Data Science Project Case] Parsing URLS
Michael Jordan 发表意见了PhD转专业求推荐
恭喜开版,发个刚看到的好玩的machine learning的图deep learning就是小团体 (转载)
公司招DATA SCIENTIST请教做信号处理的老帮菜怎么转DS?
最近想做音频数据分析, 但是不知道怎么入手啊..大家都什么背景,这里有点像转行版了
请问哪些算法是可以用python写的,然后输入PMMLNIPS一帮人很让人不爽
data science 面试求教求助:Hastie的书看不懂怎么办?
请教大家一个做feature的问题统计在data science里的地位
相关话题的讨论汇总
话题: ml话题: leetcode话题: level话题: 算法话题: svm
进入DataSciences版参与讨论
1 (共1页)
l******0
发帖数: 244
1
基本上都有现成的算法实现,比如 SVM, ME, Bayes。在公司做应用,就是使用相应的
open source ML 包,比如 libsvm, 或斯坦福的 ME. 公司搞机器学习的主要任务就是
收集,采样,和标注数据,确定并提取特征,建立模型,evaluation.
很多机器学习 paper 里面提到的一些模型和算法,基本都用不上。是不是这样?
c***z
发帖数: 6348
2
不需要,只需要懂得如何用
除非你要当大牛
t*d
发帖数: 1290
3
http://www.mitbbs.com/article_t/DataSciences/75.html

【在 l******0 的大作中提到】
: 基本上都有现成的算法实现,比如 SVM, ME, Bayes。在公司做应用,就是使用相应的
: open source ML 包,比如 libsvm, 或斯坦福的 ME. 公司搞机器学习的主要任务就是
: 收集,采样,和标注数据,确定并提取特征,建立模型,evaluation.
: 很多机器学习 paper 里面提到的一些模型和算法,基本都用不上。是不是这样?

l*******s
发帖数: 1258
4
如果能自己动手实现一些算法 会很有帮助理解模型和如何优化
当年我手动从头实现过7、8个常用的ML模型,比如NB、Decision Tree、HMM、SVM、
MaxEnt之类的,感觉挺有意思,对其中的细节,尤其是engineering方面,理解加深了
不少。
l**********e
发帖数: 336
5
1. only know how to use available package, this is the level of ten
thousands or more ppl with college/MS level education
2. familiar the details (implement the prototype, e.g., SVM) is the level of
ppl with PhD background in ML
3. can improve the algorithms for certain application (e.g., customized
random forest for object detection) is the level of machine learning expert,
e.g., Andrew Fitzgibbon in Microsoft Research
4. improve basic algorithms in general (can be used for many applications),
e.g., new DL networks, this is the level of Geoffrey Hinton (UT and Google),
Yann LeCun (NYU and Facebook), etc
if u do not familiar these names and methods, do not claim u know ML, u just
know how to use some available tools

【在 l******0 的大作中提到】
: 基本上都有现成的算法实现,比如 SVM, ME, Bayes。在公司做应用,就是使用相应的
: open source ML 包,比如 libsvm, 或斯坦福的 ME. 公司搞机器学习的主要任务就是
: 收集,采样,和标注数据,确定并提取特征,建立模型,evaluation.
: 很多机器学习 paper 里面提到的一些模型和算法,基本都用不上。是不是这样?

r*****d
发帖数: 346
6
很有启发,而且很有意思,谢谢!:)

of
expert,
,
),

【在 l**********e 的大作中提到】
: 1. only know how to use available package, this is the level of ten
: thousands or more ppl with college/MS level education
: 2. familiar the details (implement the prototype, e.g., SVM) is the level of
: ppl with PhD background in ML
: 3. can improve the algorithms for certain application (e.g., customized
: random forest for object detection) is the level of machine learning expert,
: e.g., Andrew Fitzgibbon in Microsoft Research
: 4. improve basic algorithms in general (can be used for many applications),
: e.g., new DL networks, this is the level of Geoffrey Hinton (UT and Google),
: Yann LeCun (NYU and Facebook), etc

r*****d
发帖数: 346
7
耳濡大牛们的讨论,我越发认为ML算法与“Leetcode 45分钟无bug 2-3道题”的common
ground actually非常小。各路大神怎么看?
l**********e
发帖数: 336
8
yes, agree
(1) Google, Facebook, etc, these firms use different policy to recruit top
ML/DM/IR/NLP experts, domain exps & projects & icml papers, etc
(2) usually for these top ML experts (e.g., CMU ML PhD), they are good at
programming & algorithms, so there is no problem for Leetcode/etc

common

【在 r*****d 的大作中提到】
: 耳濡大牛们的讨论,我越发认为ML算法与“Leetcode 45分钟无bug 2-3道题”的common
: ground actually非常小。各路大神怎么看?

r*****d
发帖数: 346
9
:)
in (2) there should be no problem and, no necessity for Leetcode..

【在 l**********e 的大作中提到】
: yes, agree
: (1) Google, Facebook, etc, these firms use different policy to recruit top
: ML/DM/IR/NLP experts, domain exps & projects & icml papers, etc
: (2) usually for these top ML experts (e.g., CMU ML PhD), they are good at
: programming & algorithms, so there is no problem for Leetcode/etc
:
: common

s*********e
发帖数: 1051
10
其实有很多复杂的模型并没有可以直接用的包。

【在 l******0 的大作中提到】
: 基本上都有现成的算法实现,比如 SVM, ME, Bayes。在公司做应用,就是使用相应的
: open source ML 包,比如 libsvm, 或斯坦福的 ME. 公司搞机器学习的主要任务就是
: 收集,采样,和标注数据,确定并提取特征,建立模型,evaluation.
: 很多机器学习 paper 里面提到的一些模型和算法,基本都用不上。是不是这样?

1 (共1页)
进入DataSciences版参与讨论
相关主题
统计在data science里的地位最近想做音频数据分析, 但是不知道怎么入手啊..
Big Data/data science方面都有哪些比较不错的conference?请问哪些算法是可以用python写的,然后输入PMML
借道同问,big data/data science到底是什么?data science 面试求教
机器学习日报 2015-01-29 LDA入门与Java实现请教大家一个做feature的问题
为什么要知道DETAILS OF A MACHINE LEARNING ALGORITHM[Data Science Project Case] Parsing URLS
Michael Jordan 发表意见了PhD转专业求推荐
恭喜开版,发个刚看到的好玩的machine learning的图deep learning就是小团体 (转载)
公司招DATA SCIENTIST请教做信号处理的老帮菜怎么转DS?
相关话题的讨论汇总
话题: ml话题: leetcode话题: level话题: 算法话题: svm