선형변환 -> bias에 의한 translation -> 비선형 함수에 의한 변형
bias term
을 포함한다.affine transformation
이 이루어진다.Wx + b = h
W는 이미 학습에 의해 최적화된 가중치 행렬이다.
x는 입력받은 이미지 벡터이다.
bias term
을 affine layer
라고 한다.affin layer
에 의해 선형변환이 아니라 affine transformation
이 된다.Affine transformation은 column combination에 의해 선형변환으로 표현할 수 있다.
즉 bias term
은 input의 첫 dimension이나 마지막 dimension에 1을 추가하고, bias term
을 가중치 행렬에 추가함으로써 선형변환 문제로 해결할 수 있다.