美文网首页
Intro to ML

Intro to ML

作者: 林杰Jim | 来源:发表于2020-09-14 09:06 被阅读0次

Definition


"The field of study that gives computers the ability to learn without being explicitly programmed." —Arthur Samuel

"A computer program is said to learn from experience E concerning some class of tasks T and performance measure P, if its performance at tasks in T, as measured by P, improves with experience E." — Tom Mitchell

Category


Supervised Learning

We have a dataset and already know the correct outputs, having the idea that there is a relationship between the input and the output. Supervised Learning is categorized into regression and classification problems.

  • Regression Problem

    Given the historical data, fit a regression model (which is a trend) to predict the continuous output according to its inputs.

  • Classification Problem

    Given the historical data, draw a line (or face) that separate the outputs into binary results.

Unsupervised Learning

Having data and having no idea what the result should look like, we can derive structure by clustering the data based on the relationship among input variables.

Model Representation


Elements

  • Input
  • Hypothesis Function: a function that maps inputs to outputs.
  • Cost Function: a function used to measure the accuracy of hypothesis function.
  • Optimization Method: a method that used to minimize the sum cost of the feeding dataset (e.g. Gradient Descent)
  • Output
5 Elements of ML

Linear Algebra


Multiplication

Matrix vector

matrix-vector.png

Matrix matrix

matrix-matrix.png

Transpose

transpose.png

Inverse

inverse.png

Properties

Not commutative

A∗B ≠ B∗A

Associative

(A∗B)∗C = A∗(B∗C)

Reference


https://www.mathsisfun.com/algebra/matrix-multiplying.html

https://www.coursera.org/learn/machine-learning/resources/JXWWS

https://medium.com/@mahesh.chavan1997/model-representation-in-machine-learning-2caf22e1edf0

相关文章

  • Intro to ML

    Definition "The field of study that gives computers the a...

  • Machine Learning Notebook - Week

    Intro to ML Def of ML by Tom Mitchell: A computer program...

  • kaggle|courese|Intro to ML|noteb

    想要建立仅包含选定特征的数据集,首先建立feature_names列表,然后可以直接使用dataframe的基本方...

  • PCA的正确/错误打开方式(应用)

    Ref:安德鲁老师的经典ML intro课程 PCA适用于PCA不适用于speed up learning alg...

  • Intro

    希望通过这个软件每天做一点记录,类似小日记吧,可能无聊或琐碎的这些点滴构成了我的生活^_^

  • Intro

    太漫长了 相当于 长出一根犀牛角的时间 在你不断对我说着话时 泡沫们跃升着 我的眼中口中开满了花 所有的泪水和话语...

  • Intro

    本人名“悦”,金牛座,性格实在活脱的不像人类。 因重视生命起源,想尝试摆脱各种人类局限,于是喜欢画一些“受精卵”磨...

  • Intro

    大家好啊,我是Tonia。Full stake designer。

  • 《The intro》

    我好不容易离开了忙碌,远离了人海,避开了聒噪,走进了你的世界,却又发现我已经再也睁不开疲乏的双眼,挥不动思想的笔触...

  • Intro

    这首歌真的很适合一大早没有人, 然后自己很拉风地路跑, 感觉整个世界都是自己的!! 有时候 ,我真的不喜欢热闹, ...

网友评论

      本文标题:Intro to ML

      本文链接:https://www.haomeiwen.com/subject/qipaektx.html