1. Mathematical representation of Fully connected layer fully connected layer은 여러 개의 뉴런을 일렬로 모아둔(vectorization) 것으로 위와 같은 곱셈 연산으로 표현됩니다. 2. Mathematical representation of convolutional layer input 된 것의 channel의 개수(Cin)과 output 된 것의 channel의 개수(Cout) 만큼의 kernel이 나타나게 됩니다. W = kernel의 크기(Kh x Kw) Cin x Cout = kernel의 개수 -> 이를 ij로 인덱싱하여 W와 ij을 vectorization하면 Weight tensor로 만들어집니다. 3. Stride 합성곱 연산..