Redian新闻
>
陈世炬与胡贴耳谈话,江泽民,温家宝附耳偷听 (转载)
avatar
陈世炬与胡贴耳谈话,江泽民,温家宝附耳偷听 (转载)# Joke - 肚皮舞运动
a*h
1
本着国人互助以及传递正能量的真理,发一下我个人找工作过程中整理的machine
learning相关面经以及一些心得总结。楼主的背景是fresh CS PhD in computer
vision and machine learning, 非牛校。
已经有前辈总结过很多machine learning的面试题(传送门: http://www.mitbbs.com/article/JobHunting/32808273_0.html),此帖是对其的补充,有一小部分是重复的。面经分两大块:machine learning questions 和 coding questions.
Machine learning related questions:
- Discuss how to predict the price of a hotel given data from previous
years
- SVM formulation
- Logistic regression
- Regularization
- Cost function of neural network
- What is the difference between a generative and discriminative algorithm
- Relationship between kernel trick and dimension augmentation
- What is PCA projection and why it can be solved by SVD
- Bag of Words (BoW) feature
- Nonlinear dimension reduction (Isomap, LLE)
- Supervised methods for dimension reduction
- What is naive Bayes
- Stochastic gradient / gradient descent
- How to predict the age of a person given everyone’s phone call history
- Variance and Bias (a very popular question, watch Andrew’s class)
- Practices: When to collect more data / use more features / etc. (watch
Andrew’s class)
- How to extract features of shoes
- During linear regression, when using each attribute (dimension)
independently to predict the target value, you get a positive weight for
each attribute. However, when you combine all attributes to predict, you get
some large negative weights, why? How to solve it?
- Cross Validation
- Reservoir sampling
- Explain the difference among decision tree, bagging and random forest
- What is collaborative filtering
- How to compute the average of a data stream (very easy, different from
moving average)
- Given a coin, how to pick 1 person from 3 persons with equal probability.
Coding related questions:
- Leetcode: Number of Islands
- Given the start time and end time of each meeting, compute the smallest
number of rooms to host these meetings. In other words, try to stuff as many
meetings in the same room as possible
- Given an array of integers, compute the first two maximum products(乘积)
of any 3 elements (O(nlogn))
- LeetCode: Reverse words in a sentence (follow up: do it in-place)
- LeetCode: Word Pattern
- Evaluate a formula represented as a string, e.g., “3 + (2 * (4 - 1) )”
- Flip a binary tree
- What is the underlying data structure for JAVA hashmap? Answer: BST, so
that the keys are sorted.
- Find the lowest common parent in a binary tree
- Given a huge file, each line of which is a person’s name. Sort the names
using a single computer with small memory but large disk space
- Design a data structure to quickly compute the row sum and column sum of
a sparse matrix
- Design a wrapper class for a pointer to make sure this pointer will
always be deleted even if an exception occurs in the middle
- My Google onsite questions: http://www.mitbbs.com/article_t/JobHunting/33106617.html
面试的一点点心得:
最重要的一点,我觉得是心态。当你找了几个月还没有offer,并且看到别人一直在版
上报offer的时候,肯定很焦虑甚至绝望。我自己也是,那些报offer的帖子,对我来说
都是负能量,绝对不去点开看。这时候,告诉自己四个字:继续坚持。我相信机会总会
眷顾那些努力坚持的人,付出总有回报。
machine learning的职位还是很多的,数学好的国人们优势明显,大可一试, 看到一些
帖子说这些职位主要招PhD,这个结论可能有一定正确性。但是凭借我所遇到的大部分
面试题来看,个人认为MS或者PhD都可以。MS的话最好有一些学校里做project的经验。
仔细学习Andrew Ng在Coursera上的 machine learning课,里面涵盖很多面试中的概念
和题目。虽然讲得比较浅显,但对面试帮助很大。可以把video的速度调成1.5倍,节省
时间。
如果对一些概念或算法不清楚或者想加深理解,找其他的各种课件和视频学习,例如
coursera,wiki,牛校的machine learning课件。
找工作之前做好对自己的定位。要弄清楚自己想做什么,擅长做什么,如何让自己有竞
争力,然后取长补短(而不是扬长避短)。
感觉data scientist对coding的要求没有software engineer那么变态。不过即便如此
,对coding的复习也不应该松懈。
我个人觉得面试machine learning相关职位前需要熟悉的四大块:
Classification:
Logistic regression
Neural Net (classification/regression)
SVM
Decision tree
Random forest
Bayesian network
Nearest neighbor classification
Regression:
Neural Net regression
Linear regression
Ridge regression (add a regularizer)
Lasso regression
Support Vector Regression
Random forest regression
Partial Least Squares
Clustering:
K-means
EM
Mean-shift
Spectral clustering
Hierarchical clustering
Dimension Reduction:
PCA
ICA
CCA
LDA
Isomap
LLE
Neural Network hidden layer
最后祝各位好运。那些还在继续找工作的亲们,坚持住,加油!
avatar
k*y
2
才完工的新娘手捧花.
avatar
b*d
3
【 以下文字转载自 Military 讨论区 】
发信人: brihand (brihand), 信区: Military
标 题: 陈世炬与胡贴耳谈话,江泽民,温家宝附耳偷听
发信站: BBS 未名空间站 (Wed Jan 7 12:55:29 2015, 美东)
avatar
d*2
4
赞 !
avatar
m*i
5
太漂亮了!!!!

【在 k*******y 的大作中提到】
: 才完工的新娘手捧花.
avatar
L*d
6
mark

【在 a*****h 的大作中提到】
: 本着国人互助以及传递正能量的真理,发一下我个人找工作过程中整理的machine
: learning相关面经以及一些心得总结。楼主的背景是fresh CS PhD in computer
: vision and machine learning, 非牛校。
: 已经有前辈总结过很多machine learning的面试题(传送门: http://www.mitbbs.com/article/JobHunting/32808273_0.html),此帖是对其的补充,有一小部分是重复的。面经分两大块:machine learning questions 和 coding questions.
: Machine learning related questions:
: - Discuss how to predict the price of a hotel given data from previous
: years
: - SVM formulation
: - Logistic regression
: - Regularization

avatar
n*m
7
这也忒漂亮了!
avatar
j*3
8
必须mark啊
avatar
k*y
9
这楼放首饰:)
avatar
j*g
10
mark
avatar
k*y
11
继续首饰:)
avatar
p*9
12
mark
avatar
k*y
13
继续:)))
avatar
y*e
14
coding不在行
这些问题都不算难,但考的好细
也不好回答。
除非提前翻书
avatar
l*g
15
漂亮!!MM那花是鲜花吗?
avatar
H*V
16
mark
ty
avatar
i*h
17
好漂亮啊,手太巧了
avatar
z*e
18
hashmap底层是array
bst查询做不到amortized o(1)复杂度
但是可以保证顺序,hashmap并不能保证key or value的顺序
如果要保证顺序,用priorityqueue
avatar
B*y
19
品味不错加手巧。
avatar
gw
20
同样coding 不行。
近来开始自觉ML,希望能转行到data scientist,正在努力学习中。
Andrew的课已经学完了,其他的还没有找到特别好的。
看这个面经,觉得有必要再复习一遍Andrew的课。

【在 y******e 的大作中提到】
: coding不在行
: 这些问题都不算难,但考的好细
: 也不好回答。
: 除非提前翻书

avatar
s*r
21
好看!!!mm这原材料是哪来的阿?收我当徒弟吧~~
avatar
y*e
22
Pattern classification
这本书可以好好看看,呵呵

【在 gw 的大作中提到】
: 同样coding 不行。
: 近来开始自觉ML,希望能转行到data scientist,正在努力学习中。
: Andrew的课已经学完了,其他的还没有找到特别好的。
: 看这个面经,觉得有必要再复习一遍Andrew的课。

avatar
s*i
23
好棒~
avatar
a*u
24
mark,mark
avatar
v*a
25
真好看啊 mm自己做的吗? 有几个项链做的好好看啊
想要

【在 k*******y 的大作中提到】
: 才完工的新娘手捧花.
avatar
w*t
26
马!
avatar
t*9
27
真好看
avatar
i*e
28
Mark
avatar
n*1
29
猫猫的设计相当不俗!
avatar
q*x
30
大赞总结!收藏了!

【在 a*****h 的大作中提到】
: 本着国人互助以及传递正能量的真理,发一下我个人找工作过程中整理的machine
: learning相关面经以及一些心得总结。楼主的背景是fresh CS PhD in computer
: vision and machine learning, 非牛校。
: 已经有前辈总结过很多machine learning的面试题(传送门: http://www.mitbbs.com/article/JobHunting/32808273_0.html),此帖是对其的补充,有一小部分是重复的。面经分两大块:machine learning questions 和 coding questions.
: Machine learning related questions:
: - Discuss how to predict the price of a hotel given data from previous
: years
: - SVM formulation
: - Logistic regression
: - Regularization

avatar
v*y
31
又见猫猫

【在 k*******y 的大作中提到】
: 才完工的新娘手捧花.
avatar
f*D
32
mark
avatar
o*n
33
好看!很精致照得也好看~
avatar
r*g
34
谢谢分享!
avatar
f*y
35
好看啊

【在 k*******y 的大作中提到】
: 才完工的新娘手捧花.
avatar
a*h
36
本着国人互助以及传递正能量的真理,发一下我个人找工作过程中整理的machine
learning相关面经以及一些心得总结。楼主的背景是fresh CS PhD in computer
vision and machine learning, 非牛校。
已经有前辈总结过很多machine learning的面试题(传送门: http://www.mitbbs.com/article/JobHunting/32808273_0.html),此帖是对其的补充,有一小部分是重复的。面经分两大块:machine learning questions 和 coding questions.
Machine learning related questions:
- Discuss how to predict the price of a hotel given data from previous
years
- SVM formulation
- Logistic regression
- Regularization
- Cost function of neural network
- What is the difference between a generative and discriminative algorithm
- Relationship between kernel trick and dimension augmentation
- What is PCA projection and why it can be solved by SVD
- Bag of Words (BoW) feature
- Nonlinear dimension reduction (Isomap, LLE)
- Supervised methods for dimension reduction
- What is naive Bayes
- Stochastic gradient / gradient descent
- How to predict the age of a person given everyone’s phone call history
- Variance and Bias (a very popular question, watch Andrew’s class)
- Practices: When to collect more data / use more features / etc. (watch
Andrew’s class)
- How to extract features of shoes
- During linear regression, when using each attribute (dimension)
independently to predict the target value, you get a positive weight for
each attribute. However, when you combine all attributes to predict, you get
some large negative weights, why? How to solve it?
- Cross Validation
- Reservoir sampling
- Explain the difference among decision tree, bagging and random forest
- What is collaborative filtering
- How to compute the average of a data stream (very easy, different from
moving average)
- Given a coin, how to pick 1 person from 3 persons with equal probability.
Coding related questions:
- Leetcode: Number of Islands
- Given the start time and end time of each meeting, compute the smallest
number of rooms to host these meetings. In other words, try to stuff as many
meetings in the same room as possible
- Given an array of integers, compute the first two maximum products(乘积)
of any 3 elements (O(nlogn))
- LeetCode: Reverse words in a sentence (follow up: do it in-place)
- LeetCode: Word Pattern
- Evaluate a formula represented as a string, e.g., “3 + (2 * (4 - 1) )”
- Flip a binary tree
- What is the underlying data structure for JAVA hashmap? Answer: BST, so
that the keys are sorted.
- Find the lowest common parent in a binary tree
- Given a huge file, each line of which is a person’s name. Sort the names
using a single computer with small memory but large disk space
- Design a data structure to quickly compute the row sum and column sum of
a sparse matrix
- Design a wrapper class for a pointer to make sure this pointer will
always be deleted even if an exception occurs in the middle
- My Google onsite questions: http://www.mitbbs.com/article_t/JobHunting/33106617.html
面试的一点点心得:
最重要的一点,我觉得是心态。当你找了几个月还没有offer,并且看到别人一直在版
上报offer的时候,肯定很焦虑甚至绝望。我自己也是,那些报offer的帖子,对我来说
都是负能量,绝对不去点开看。这时候,告诉自己四个字:继续坚持。我相信机会总会
眷顾那些努力坚持的人,付出总有回报。
machine learning的职位还是很多的,数学好的国人们优势明显,大可一试, 看到一些
帖子说这些职位主要招PhD,这个结论可能有一定正确性。但是凭借我所遇到的大部分
面试题来看,个人认为MS或者PhD都可以。MS的话最好有一些学校里做project的经验。
仔细学习Andrew Ng在Coursera上的 machine learning课,里面涵盖很多面试中的概念
和题目。虽然讲得比较浅显,但对面试帮助很大。可以把video的速度调成1.5倍,节省
时间。
如果对一些概念或算法不清楚或者想加深理解,找其他的各种课件和视频学习,例如
coursera,wiki,牛校的machine learning课件。
找工作之前做好对自己的定位。要弄清楚自己想做什么,擅长做什么,如何让自己有竞
争力,然后取长补短(而不是扬长避短)。
感觉data scientist对coding的要求没有software engineer那么变态。不过即便如此
,对coding的复习也不应该松懈。
我个人觉得面试machine learning相关职位前需要熟悉的四大块:
Classification:
Logistic regression
Neural Net (classification/regression)
SVM
Decision tree
Random forest
Bayesian network
Nearest neighbor classification
Regression:
Neural Net regression
Linear regression
Ridge regression (add a regularizer)
Lasso regression
Support Vector Regression
Random forest regression
Partial Least Squares
Clustering:
K-means
EM
Mean-shift
Spectral clustering
Hierarchical clustering
Dimension Reduction:
PCA
ICA
CCA
LDA
Isomap
LLE
Neural Network hidden layer
最后祝各位好运。那些还在继续找工作的亲们,坚持住,加油!
avatar
a*o
37
捧花真漂亮
avatar
d*2
38
赞 !
avatar
y*i
39
太漂亮了
avatar
L*d
40
mark

【在 a*****h 的大作中提到】
: 本着国人互助以及传递正能量的真理,发一下我个人找工作过程中整理的machine
: learning相关面经以及一些心得总结。楼主的背景是fresh CS PhD in computer
: vision and machine learning, 非牛校。
: 已经有前辈总结过很多machine learning的面试题(传送门: http://www.mitbbs.com/article/JobHunting/32808273_0.html),此帖是对其的补充,有一小部分是重复的。面经分两大块:machine learning questions 和 coding questions.
: Machine learning related questions:
: - Discuss how to predict the price of a hotel given data from previous
: years
: - SVM formulation
: - Logistic regression
: - Regularization

avatar
b*l
41
真漂亮!
avatar
j*3
42
必须mark啊
avatar
D*a
43
自己做的???
手真巧!!!
喜欢这些色彩强烈的首饰
avatar
j*g
44
mark
avatar
c*7
45
手太qiao了
avatar
p*9
46
mark
avatar
f*d
47
very pretty...thanks for sharing
avatar
y*e
48
coding不在行
这些问题都不算难,但考的好细
也不好回答。
除非提前翻书
avatar
g*n
49
太太太精美了!!!!!
avatar
H*V
50
mark
ty
avatar
c*n
51
好漂亮啊。
avatar
z*e
52
hashmap底层是array
bst查询做不到amortized o(1)复杂度
但是可以保证顺序,hashmap并不能保证key or value的顺序
如果要保证顺序,用priorityqueue
avatar
I*e
53
怒赞!

【在 k*******y 的大作中提到】
: 才完工的新娘手捧花.
avatar
gw
54
同样coding 不行。
近来开始自觉ML,希望能转行到data scientist,正在努力学习中。
Andrew的课已经学完了,其他的还没有找到特别好的。
看这个面经,觉得有必要再复习一遍Andrew的课。

【在 y******e 的大作中提到】
: coding不在行
: 这些问题都不算难,但考的好细
: 也不好回答。
: 除非提前翻书

avatar
n*n
55
太美了太美了太美了!!!!!
avatar
y*e
56
Pattern classification
这本书可以好好看看,呵呵

【在 gw 的大作中提到】
: 同样coding 不行。
: 近来开始自觉ML,希望能转行到data scientist,正在努力学习中。
: Andrew的课已经学完了,其他的还没有找到特别好的。
: 看这个面经,觉得有必要再复习一遍Andrew的课。

avatar
i*e
57
美, 不过这个很费工费时间吧

【在 k*******y 的大作中提到】
: 才完工的新娘手捧花.
avatar
a*u
58
mark,mark
avatar
k*y
59
谢谢大家的喜爱和捧场:))
avatar
w*t
60
马!
avatar
E*1
61
那捧花真惊艳阿
avatar
i*e
62
Mark
avatar
m*n
63
喜欢“DSC_0177-2.jpg”那个大大的耳环!!
avatar
q*x
64
大赞总结!收藏了!

【在 a*****h 的大作中提到】
: 本着国人互助以及传递正能量的真理,发一下我个人找工作过程中整理的machine
: learning相关面经以及一些心得总结。楼主的背景是fresh CS PhD in computer
: vision and machine learning, 非牛校。
: 已经有前辈总结过很多machine learning的面试题(传送门: http://www.mitbbs.com/article/JobHunting/32808273_0.html),此帖是对其的补充,有一小部分是重复的。面经分两大块:machine learning questions 和 coding questions.
: Machine learning related questions:
: - Discuss how to predict the price of a hotel given data from previous
: years
: - SVM formulation
: - Logistic regression
: - Regularization

avatar
G*a
65
这捧花不会有新娘舍得扔出去的

【在 k*******y 的大作中提到】
: 才完工的新娘手捧花.
avatar
f*D
66
mark
avatar
L*e
67
wow~真的很好看,赞妹妹手巧。
:)

【在 k*******y 的大作中提到】
: 才完工的新娘手捧花.
avatar
r*g
68
谢谢分享!
avatar
c*4
69
很久没见lz了哈哈,一出现就是惊艳啊!!!!!!
avatar
D*e
70
markmark
avatar
y*n
71
手真巧 可以自开专卖店了
avatar
p*9
72
mark
avatar
b*a
73
天吶,你的設計越來越好看了!!!
avatar
g*u
74
Andrew的课讲得很实际, 不向其他人的课程, 先把公式砸。 Andrew的就是面向实际
应用的 。所以说的技巧比较多

【在 gw 的大作中提到】
: 同样coding 不行。
: 近来开始自觉ML,希望能转行到data scientist,正在努力学习中。
: Andrew的课已经学完了,其他的还没有找到特别好的。
: 看这个面经,觉得有必要再复习一遍Andrew的课。

avatar
w*s
75
不错,喜欢第二个红色的耳坠
很有特点阿

【在 k*******y 的大作中提到】
: 这楼放首饰:)
avatar
d*v
76
好文,这个一定要赞。
avatar
t*6
77
佩服。
avatar
p*e
78
thanks for sharing
avatar
p*a
79
好漂亮!

【在 k*******y 的大作中提到】
: 才完工的新娘手捧花.
avatar
p*a
80
太牛了

【在 k*******y 的大作中提到】
: 这楼放首饰:)
avatar
n*n
81
这个太漂亮了可以定制不啊

才完工的新娘手捧花.
★ Sent from iPhone App: iReader Mitbbs Lite 7.28

【在 k*******y 的大作中提到】
: 才完工的新娘手捧花.
avatar
M*9
82
你要婚了?

★ 发自iPhone App: ChineseWeb - 中文网站浏览器

【在 n****n 的大作中提到】
: 这个太漂亮了可以定制不啊
:
: 才完工的新娘手捧花.
: ★ Sent from iPhone App: iReader Mitbbs Lite 7.28

avatar
w*a
83
手真是巧啊!
avatar
d*g
84
又见猫猫精品~~~捧花真漂亮~~~~
avatar
d*3
85
很喜欢那条蓝色的手链:)
avatar
m*e
86
猫猫真的是好久不来玩了~哈哈 欢迎回来~
avatar
h*x
87
赞啊!
avatar
H*E
88
真好看!!!
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。