Machine Learning Basics
โMachine Learningโ์ ๊ณต๋ถํ๋ฉด์ ๊ฐ์ธ์ ์ธ ์ฉ๋๋ก ์ ๋ฆฌํ ํฌ์คํธ์ ๋๋ค. ์ง์ ์ ์ธ์ ๋ ํ์์ ๋๋ค :)
Definition. basis function; ๊ธฐ์ ํจ์
$y(\mathbf{x}, \mathbf{w}) = \mathbf{w} \cdot \mathbf{x}$์ธ Linear Regression์์ input $\mathbf{x}$๋ฅผ transform ํ๋ ํจ์๋ฅผ ๋งํจ.
\[y(\mathbf{x}, \mathbf{w}) = \mathbf{w} \cdot \phi(\mathbf{x})\]์ด๋ฐ basis function ์ฌ๋ฌ ๊ฐ๋ฅผ ์ฌ์ฉํด Linear Regression1 ํ ์๋ ์๋ค.
\[y(\mathbf{x}, \mathbf{w}) = \sum_{j=1}^{M} \mathbf{w}_j \cdot \phi_j(\mathbf{x})\]Example. basis function
- polynomial basis function
- sigmoid basis function
- gaussian basis function
references
-
$x$์ ๋ํด์๋ ๋น์ ํ ํจ์์ด์ง๋ง, $w$์ ๋ํด์ ์ ํ์ด๋ฏ๋ก Linear Regression์ด๋ผ๊ณ ๋ถ๋ฅธ๋ค.ย ↩