Convolutional Neural Networks

Computer vision

  1. 컴퓨터 비전 ⇒ 급격한 발전
  2. CNN 의 아이디어를 다른 분야에 활용

Untitled

64643 =12288

100010003 = 3million

(만약, input X크기가 3milion이고, 첫번째 layer의 unit이 1000개라면, W[1]은 (1000,3million)이 됨)

: ( 1. 과적합 방지 위해 충분한 데이터를 얻는 것이 어렵다. 2. computational … 메모리..

Edge Detection Example

Untitled

Untitled

Untitled

Untitled

6 x 6의 회색 이미지에 3x3 filter를 적용한다.

6 x 6의 회색 이미지에 3x3 filter를 적용한다.

convolution 계산시, python : conv_forward (이전에 정의해서 사용) tensorflow : tf.nn.conv2d keras : Conv2D