[ML] 4주차-2 : Applications

k_dah·2021년 11월 18일
0

MachineLearning_AndrewNg

목록 보기
8/32

Machine Learning by professor Andrew Ng in Coursera

1) Examples and Intuitions I

x1x_1 AND x2x_2를 예측하는 예제를 통해 neural network를 적용해 보자.
AND는 x1x_1x2x_2가 모두 참일 때만 '참'을 출력하는 논리연산자

[x0x1x2][g(z(2))]hΘ(x)\begin{bmatrix}x_0 \\ x_1 \\ x_2\end{bmatrix} \rightarrow \begin{bmatrix}g(z^{(2)})\end{bmatrix} \rightarrow h_\Theta(x)

이때 x0x_0는 bias 변수로 항상 1값을 가진다는 점을 명심한다.

이와 같이, AND gate를 사용하는 대신 작은 neural net으로 기본 컴퓨터 연산을 수행할 수 있다. Neural network는 다른 논리게이트를 simulate하는 데에도 쓰일 수 있다.

2) Examples and Intuitions II

3) Multiclass Classification

Multiple output units: One-vs-all



분류해야할 클래스가 총 4개라면

y(i)one of [1000][0100][0010][0001]y^{(i)} \text{one of }\begin{bmatrix}1\\0\\0\\0 \end{bmatrix} \begin{bmatrix}0\\1\\0\\0 \end{bmatrix} \begin{bmatrix}0\\0\\1\\0 \end{bmatrix} \begin{bmatrix}0\\0\\0\\1 \end{bmatrix}
profile
개똥이

0개의 댓글