-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalphabet.py
217 lines (179 loc) · 8.29 KB
/
alphabet.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import pickle
import numpy as np
from PIL import Image
import os
from StringIO import StringIO
import math
import pylab
import chainer
from chainer import computational_graph
from chainer import cuda
from chainer import optimizers
from chainer import serializers
from chainer import Variable
from chainer.utils import type_check
from chainer import function
import chainer.functions as F
import chainer.links as L
import numpy
from lib import *
using_gpu = False
xp = np
try:
cuda.check_cuda_available()
xp = cuda.cupy
cuda.get_device(0).use()
using_gpu = True
except:
print "I'm sorry. Using CPU."
image_dir = './images48'
out_image_dir = './alphabet_output'
out_model_dir = './alphabet_model'
nz = 100 # # of dim for Z
z_sample_size = 100
t_sample_size = 52
n_epoch = 200
output_interval = 20
fs = os.listdir(image_dir)
print len(fs)
dataset = []
for fn in fs:
f = open('%s/%s' % (image_dir, fn), 'rb')
img_bin = f.read()
dataset.append(img_bin)
f.close()
print len(dataset)
# sizeは、1次元なら数字、多次元ならタプル
def generate_rand(low, hight, size, dtype=np.float32):
global using_gpu
if using_gpu:
# この書き方だと、xp = cuda.cupy なら良いが、xp = np の場合にエラーになる
generated = xp.random.uniform(low, hight, size, dtype=dtype)
else:
generated = xp.random.uniform(low, hight, size).astype(dtype)
return generated
def clip_img(x):
return np.float32(-1 if x < -1 else (1 if x > 1 else x))
def binarize(ndArr, th=50):
(rowCnt, colCnt) = ndArr.shape
for i in range(rowCnt):
for j in range(colCnt):
ndArr[i][j] = -1 if ndArr[i][j] > th else 1 # 白(背景)を-1に、黒を1にしている
return ndArr
def train_dcgan_labeled(gen, dis, o_gen, o_dis, epoch0=0):
# o_gen.setup(gen)
# o_dis.setup(dis)
# o_gen.add_hook(chainer.optimizer.WeightDecay(0.00001))
# o_dis.add_hook(chainer.optimizer.WeightDecay(0.00001))
zvis = (generate_rand(-1, 1, (100, nz), dtype=np.float32))
# サンプル52にしたことだし、もう固定で作ってしまう
# ----------------------------------------------------------------------------------
x2 = np.zeros((52, 1, 48, 48), dtype=np.float32)
for j in range(52):
res = np.asarray(Image.open(StringIO(dataset[j])).convert('L')).astype(np.float32)
res.flags.writeable = True
x2[j, :, :, :] = binarize(res, 50)
# x2 = Variable(cuda.to_gpu(x2) if using_gpu else x2)
# ----------------------------------------------------------------------------------
turn_flg = True
for epoch in xrange(epoch0, n_epoch):
sum_l_dis = np.float32(0)
sum_l_gen = np.float32(0)
for j in range(50):
sample = np.zeros((t_sample_size, 1, 48, 48), dtype=np.float32)
perm = np.random.permutation(52)
sample = x2[perm[:t_sample_size]] # サンプルからランダムにt_sample_size個取り出す
# for k in range(t_sample_size):
# sample[k, :, :, :] = x2[k % 52]
sample = Variable(cuda.to_gpu(sample) if using_gpu else sample)
# sample = x2
# train generator
# gen画像をdisに入力したときにdis出力=0になるように学習させる
z = Variable(generate_rand(-1, 1, (z_sample_size, nz), dtype=np.float32))
x = gen(z)
yl = dis(x)
# L_gen = F.softmax_cross_entropy(yl, Variable(xp.zeros(z_sample_size, dtype=np.int32)))
# L_dis = F.softmax_cross_entropy(yl, Variable(xp.ones(z_sample_size, dtype=np.int32)))
# train discriminator
# サンプル画像を入力したときはdis出力=0、gen画像を入力したときはdis出力=1になるように学習させる
# x2 = Variable(cuda.to_gpu(x2) if using_gpu else x2)
# yl2 = dis(sample) # サンプル画像を入力したときのdis出力
# L_dis += F.softmax_cross_entropy(yl2, Variable(xp.zeros(t_sample_size, dtype=np.int32)))
# L_disには2種類の誤差が合計されるので、
# - サンプル画像を入力した出力は0に近くなるように、
# - gen画像を入力した出力は1に近くなるように、
# 学習されるはず。
if turn_flg == True:
L_gen = F.softmax_cross_entropy(yl, Variable(xp.zeros(z_sample_size, dtype=np.int32)))
o_gen.zero_grads()
L_gen.backward()
o_gen.update()
sum_l_gen += L_gen.data.get() # gen-dis出力の誤差(交差エントロピー)を加算
turn_flg = False
else:
L_dis = F.softmax_cross_entropy(yl, Variable(xp.ones(z_sample_size, dtype=np.int32)))
L_dis += F.softmax_cross_entropy(dis(sample), Variable(xp.zeros(t_sample_size, dtype=np.int32)))
o_dis.zero_grads()
L_dis.backward()
o_dis.update()
sum_l_dis += L_dis.data.get() # dis出力の誤差(交差エントロピー)を加算
L_gen = F.softmax_cross_entropy(yl, Variable(xp.zeros(z_sample_size, dtype=np.int32)))
o_gen.zero_grads()
L_gen.backward()
o_gen.update()
sum_l_gen += L_gen.data.get() # gen-dis出力の誤差(交差エントロピー)を加算
turn_flg = True
# sum_l_gen += L_gen.data.get() # gen-dis出力の誤差(交差エントロピー)を加算
# sum_l_dis += L_dis.data.get() # dis出力の誤差(交差エントロピー)を加算
if epoch % output_interval == 0:
pylab.rcParams['figure.figsize'] = (16.0, 16.0)
pylab.clf()
z = zvis
z[50:, :] = (xp.random.uniform(-1, 1, (50, nz), dtype=np.float32))
z = Variable(z)
x = gen(z, test=True)
x = x.data.get()
for i_ in range(100):
# tmp = ((np.vectorize(clip_img)(x[i_, :, :, :]) + 1) / 2).transpose(1, 2, 0)
tmp = np.vectorize(clip_img)(x[i_, 0, :, :])
pylab.subplot(10, 10, i_ + 1)
pylab.gray()
pylab.imshow(tmp)
pylab.axis('off')
pylab.savefig('%s/vis_%d_%d.png' % (out_image_dir, epoch, 0))
serializers.save_hdf5("%s/dcgan_model_dis.h5" % out_model_dir, dis)
serializers.save_hdf5("%s/dcgan_model_gen.h5" % out_model_dir, gen)
serializers.save_hdf5("%s/dcgan_state_dis.h5" % out_model_dir, o_dis)
serializers.save_hdf5("%s/dcgan_state_gen.h5" % out_model_dir, o_gen)
# gen-disの交差エントロピーの和(=最終出力がどれだけ0に近いか)、disの交差エントロピーの和
# 実験して観察すると、「sum_l_genがどんどん増大、sum_l_disがどんどん減少」というのが一定時間続いてから、
# 「sum_l_genが突然がくんと減少、sum_l_disががくんと増大」というリバウンドが起こる、というパターンを繰り返す
# その波というか両者の差がどんどん激しくなり、崩壊に向かっているような気がする
print 'epoch end', epoch, sum_l_gen, sum_l_dis
gen = Generator(nz=nz)
dis = Discriminator()
# このパラメータ設定を発見したというのが、元論文のキモらしい?
o_gen = optimizers.Adam(alpha=0.0002, beta1=0.5)
o_dis = optimizers.Adam(alpha=0.0002, beta1=0.5)
o_gen.setup(gen)
o_dis.setup(dis)
o_gen.add_hook(chainer.optimizer.WeightDecay(0.00001))
o_dis.add_hook(chainer.optimizer.WeightDecay(0.00001))
if using_gpu:
gen.to_gpu()
dis.to_gpu()
if os.path.exists("%s/dcgan_model_dis.h5" % out_model_dir):
print "Model files found!"
serializers.load_hdf5("%s/dcgan_model_dis.h5" % out_model_dir, dis)
serializers.load_hdf5("%s/dcgan_model_gen.h5" % out_model_dir, gen)
serializers.load_hdf5("%s/dcgan_state_dis.h5" % out_model_dir, o_dis)
serializers.load_hdf5("%s/dcgan_state_gen.h5" % out_model_dir, o_gen)
else:
try:
os.mkdir(out_image_dir)
os.mkdir(out_model_dir)
except:
pass
train_dcgan_labeled(gen, dis, o_gen, o_dis)