Machine Learning Fundamentals: Algorithms and Techniques
Classified in Mathematics
Written on in
English with a size of 581.54 KB
ML → SUBSET OF AI; allows computers to learn from data without being explicitly programmed.
BASIC MATH INFO
- matrix multiplication: if A is of size m x n, B if of size n x p, then AB size = m x p
- col of A must = row of B
- each row A * each column B
- ie A of shape(m, n) * B of shape(n, p) = AB of shape(m, p)
- to find logbase2 (n):
$$ log_2(n) = \frac{ln(n)}{ln(2)} $$
DEFINITIONS
- Supervised Learning: Models learn from labeled data → learn a hypothesis function that approximates the target function
- classification: goal = categorise input into classes
- predicting if patient has a disease given symptoms (yes vs no)
- identify type of fruit given images of fruit (apple, pear..)
- regression: predict continuous numerical values based on input data
- predict house price
- classification: goal = categorise input into classes