Artificial Intelligence35 머신 러닝(Machine learning)이란 무엇인가? (supervised? or unsupervised?) 머신 러닝이란? 다양한 정의가 있지만 가장 유명한 두 가지 정의로 설명하겠다. Arthur Smuel(1959) : 구체적인 프로그래밍 없이도 컴퓨터가 학습할 수 있는 능력을 주는 것을 연구하는 영역이다. Tom Mitchell(1998) : Well-posed learing problem : A computer program is said to learn from experience E with respect to some task T and some performance measure P, if its peformance on T, improves with experience E. 머신러닝이란 어떤 과제를 수행하는 데에 있어서, 사람이 일일이 프로그래밍하는 것이 아닌 경험을 바탕으로 컴퓨터가 학습할 .. 2020. 3. 21. [CNN] Padding 무엇인가? Zero Padding - zero padding이란 image 주위를 0으로 둘러주는 과정을 말한다. padding size 딥러닝을 할때 항상 input과 output의 데이터 사이즈를 잘 알아야 모델을 잘 만들 수 있다. p : padding layer의 수 image_size : (n x n) padded_image_size : ((n + 2p) x (n + 2p)) convolution-operation (with (f x f) filter) outputs : ((n + 2p – f + 1) x (n + 2p – f + 1)) 왜 padding이 필요한가? 1. 이미지 데이터의 축소를 막기 위해. convolution operation에서 input data인 (n x n)pixel image가.. 2020. 3. 16. 이전 1 ··· 12 13 14 15 16 17 18 다음