Intro to ML

2020-09-14  本文已影响0人  林杰Jim

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.

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

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

上一篇 下一篇

猜你喜欢

热点阅读