-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Image Shift
interpolation을 향상시키기위해서 source image와 target image를 같은 거리만큼 normal random으로 shift 시켜보았다.
이론적 효과
source / target image를 같이움직이며 학습시키면 ,
같은 글자 같은 위치임으로 같은 z벡터를 만들게 하는게 자연스럽고,
decoder에 들어갈 encoder의 output에 위치에 대한 내용도 간접적으로 들어갈 수 있다.
그럼으로 거리가 있는 폰트들에게 있어서 interpolation을 할 수 있는 잠재공간이 자연스럽게 형성되는 효과를 볼 수 있을것으로 기대된다.
Shift normal delta x,y
dx = int(np.random.normal(0,8))
dy = int(np.random.normal(0,8))
Parameter
l1 = 500
mse = 1000
epoch = 200
batchsize = 16
lr = 0.0001
font 2개, 영문 대소문자








