[Stanford CS229] Lecture 4 강의 정리
구설구설
PerceptronLecture 3에서의 ~Sigmoid Function~은 ($ -\infty $, $\infty$)를 $ [0, 1] $로 매핑하는 부드러운 곡선 형태를 갖고 있다.~Perceptron~은 Sigmoid Function과 달리 곡선 형태가 아닌 보다 극단적인 형태를 가지고 있다.Perceptron과 Sigmoid Function의 차이부드러운 곡선 대신 hard threshold를 사용한다.$g(0) = 0.5. $\( z \to -\infty \)일 때, \( g(z) \to 0 \).\( z \to \infty \)일 때, \( g(z) \to 1 \). Perceptron의 Update Rule\[ \Theta_j = \Theta_j + \alpha \cdot (y_i - h_\..