随笔分类 -  Machine Learning

摘要:Competition Description The sinking of the RMS Titanic is one of the most infamous shipwrecks in history. On April 15, 1912, during her maiden voyage, 阅读全文
posted @ 2018-07-29 11:58 BerMaker 阅读(196) 评论(0) 推荐(0)
摘要:Start Books and courses are frustrating. They give you lots of recipes and snippets, but you never get to see how they all fit together. When you are 阅读全文
posted @ 2018-07-29 11:56 BerMaker 阅读(201) 评论(0) 推荐(0)
摘要:Steps Data Exploration Data Properties and Data Visualization data analysis to get a feeling for the dataset check the missing data learn which featur 阅读全文
posted @ 2018-07-29 11:55 BerMaker 阅读(136) 评论(0) 推荐(0)
摘要:支持向量机(support vector machines, SVM)是一种二类分类模型。它的基本模型是定义在特征空间上的间隔最大的线性分类器,间隔最大使它有别于感知机;支持向量机还包括核技巧,这使它成为实质上的非线性分类器。支持向量机的学习策略是间隔最大化,可形式化为一个求解凸二次规划(conve 阅读全文
posted @ 2018-06-17 22:35 BerMaker 阅读(426) 评论(0) 推荐(0)
摘要:Hypothesis Linear Regression, 线性回归是机器学习中监督学习的一种非常常用的方法。 $$ h_\theta(x) = \theta_0 + \theta_1 x_1 + \theta_2 x_2 + \cdots + \theta_n x_n $$ The vectori 阅读全文
posted @ 2018-04-15 22:37 BerMaker 阅读(209) 评论(0) 推荐(0)
摘要:Python 数据分析库 Python 编程语言 Pythong Tutorial: "https://docs.python.org/3/tutorial/" NumPy 提供常用的数值数组、矩阵等函数,为Python提供快速的多维数组处理能力。 官网: "http://www.numpy.org 阅读全文
posted @ 2018-04-15 18:37 BerMaker 阅读(275) 评论(0) 推荐(0)