摘要:
1. NLP一些课程,主要是深度学习方面的http://nlp.stanford.edu/ 斯坦福大学nlp上面有很多资源CS224d: Deep Learning for Natural Language Processing斯坦福大学的课程,有讲义,视频在youtube上文本挖掘课程含ppt... 阅读全文
摘要:
转载自机器学习(Machine Learning)&深度学习(Deep Learning)资料希望转载的朋友,你可以不用联系我.但是一定要保留原文链接,因为这个项目还在继续也在不定期更新.希望看到文章的朋友能够学到更多.《Brief History of Machine Learning》介绍:这是... 阅读全文
摘要:
编程要求:In this exercise, you will implement the backpropagation algorithm for neuralnetworks and apply it to the task of hand-written digit recognition.... 阅读全文
摘要:
to deal with underfitting增加feature的数目(通过feature的平方,立方项等增加feature或者增加其他的feature)减小λ的值to deal with overfitting找更多的训练样本减少feature的数目用regulation,增加λ的值θeval... 阅读全文
摘要:
Linear Regression with Multiple Variablesmean normalization:将不同特征的数据scale统一目的:为了使梯度下降法更快地找到全局最小值实现方法:把原始数据做变换,(Xraw-mean)/(XrawMax-XrawMin)feature sca... 阅读全文