PRISM · Machine Learning PlaygroundPRISM · 머신러닝 놀이터
A convolution slides one small kernel across the whole image, computing a weighted sum at every position. Because the same weights are reused everywhere (weight sharing), the layer detects a feature — an edge, a blob — wherever it appears, with very few parameters. Stack layers and each unit's receptive field grows, so deep units see whole objects. Pick a kernel and watch the feature map form.합성곱은 하나의 작은 커널을 이미지 전체에 미끄러뜨리며 모든 위치에서 가중합을 계산한다. 같은 가중치를 어디서나 재사용하므로(가중치 공유), 이 층은 아주 적은 매개변수로 특징 — 에지, 덩어리 — 을 위치에 상관없이 검출한다. 층을 쌓으면 각 유닛의 수용 영역이 커져 깊은 유닛은 사물 전체를 본다. 커널을 고르고 특징 맵이 형성되는 것을 보라.
Kernel커널
Input pattern입력 패턴
A dense layer would learn a separate weight for every pixel pair. A convolution reuses one small kernel at every location, so it needs far fewer parameters and is translation-equivariant — a feature detected in one corner is detected in all of them.밀집 층은 모든 픽셀 쌍마다 별도의 가중치를 배운다. 합성곱은 하나의 작은 커널을 모든 위치에서 재사용하므로 훨씬 적은 매개변수로 충분하고 이동 등변이다 — 한 구석에서 검출된 특징은 모든 구석에서 검출된다.
One 3×3 layer sees a 3×3 patch. Stack L of them and a unit sees a (2L+1)×(2L+1) region of the input. Depth turns local edge detectors into detectors of textures, parts, and finally whole objects.3×3 층 하나는 3×3 패치를 본다. L개를 쌓으면 한 유닛이 입력의 (2L+1)×(2L+1) 영역을 본다. 깊이는 국소 에지 검출기를 질감·부분, 마침내 사물 전체의 검출기로 바꾼다.
Convolutions are the backbone of medical-image models — tumor segmentation on MRI/CT, cell detection in pathology, lesion classification — precisely because a diagnostic feature can appear anywhere in the scan and weight sharing finds it everywhere.합성곱은 의료 영상 모델의 근간이다 — MRI/CT 종양 분할, 병리 세포 검출, 병변 분류 — 진단 특징이 스캔의 어디에나 나타날 수 있고 가중치 공유가 그것을 어디서나 찾아내기 때문이다.