forked from PINTO0309/DeepLearningMugenKnock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rnn_pytorch.py
172 lines (133 loc) · 4.38 KB
/
rnn_pytorch.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
import torch
import torch.nn.functional as F
import argparse
import cv2
import numpy as np
from glob import glob
import os
GPU = False
torch.manual_seed(0)
n_gram = 10
_chars = "あいうおえかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわをんがぎぐげござじずぜぞだぢづでどばびぶべぼぱぴぷぺぽぁぃぅぇぉゃゅょっー1234567890!?、。@#"
chars = [c for c in _chars]
num_classes = len(chars)
class Mynet(torch.nn.Module):
def __init__(self):
super(Mynet, self).__init__()
base = 128
self.h1 = torch.nn.RNN(num_classes, base, batch_first=True)
self.fc_out = torch.nn.Linear(base, num_classes)
def forward(self, x):
x, hn = self.h1(x)
x = x[:, -1]
x = self.fc_out(x)
return x
def data_load():
fname = 'sandwitchman.txt'
xs = []
ts = []
txt = ''
for _ in range(n_gram):
txt += '@'
onehots = []
with open(fname, 'r') as f:
for l in f.readlines():
txt += l.strip() + '#'
txt = txt[:-1] + '@'
for c in txt:
onehot = [0 for _ in range(num_classes)]
onehot[chars.index(c)] = 1
onehots.append(onehot)
for i in range(len(txt) - n_gram - 1):
xs.append(onehots[i:i+n_gram])
ts.append(chars.index(txt[i+n_gram]))
xs = np.array(xs)
ts = np.array(ts)
return xs, ts
# train
def train():
# GPU
device = torch.device("cuda" if GPU else "cpu")
# model
model = Mynet().to(device)
opt = torch.optim.Adam(model.parameters(), lr=0.01)
model.train()
xs, ts = data_load()
print(xs.shape)
# training
mb = 128
mbi = 0
train_ind = np.arange(len(xs))
np.random.seed(0)
np.random.shuffle(train_ind)
for i in range(500):
if mbi + mb > len(xs):
mb_ind = train_ind[mbi:]
np.random.shuffle(train_ind)
mb_ind = np.hstack((mb_ind, train_ind[:(mb-(len(xs)-mbi))]))
else:
mb_ind = train_ind[mbi: mbi+mb]
mbi += mb
x = torch.tensor(xs[mb_ind], dtype=torch.float).to(device)
t = torch.tensor(ts[mb_ind], dtype=torch.long).to(device)
opt.zero_grad()
y = model(x)
y = F.log_softmax(y, dim=1)
loss = torch.nn.CrossEntropyLoss()(y, t)
loss.backward()
opt.step()
pred = y.argmax(dim=1, keepdim=True)
acc = pred.eq(t.view_as(pred)).sum().item() / mb
print("iter >>", i+1, ',loss >>', loss.item(), ',accuracy >>', acc)
torch.save(model.state_dict(), 'cnn.pt')
# test
def test():
device = torch.device("cuda" if GPU else "cpu")
model = Mynet().to(device)
model.eval()
model.load_state_dict(torch.load('cnn.pt'))
def decode(x):
return chars[x.argmax()]
gens = ''
for _ in range(n_gram):
gens += '@'
pred = 0
count = 0
while pred != '@' and count < 1000:
in_txt = gens[-n_gram:]
x = []
for _in in in_txt:
_x = [0 for _ in range(num_classes)]
_x[chars.index(_in)] = 1
x.append(_x)
x = np.expand_dims(np.array(x), axis=0)
x = torch.tensor(x, dtype=torch.float).to(device)
pred = model(x)
pred = F.softmax(pred, dim=1).detach().cpu().numpy()[0]
# sample random from probability distribution
ind = np.random.choice(num_classes, 1, p=pred)
pred = chars[ind[0]]
gens += pred
count += 1
# pose process
gens = gens.replace('#', os.linesep).replace('@', '')
print('--\ngenerated')
print(gens)
def arg_parse():
parser = argparse.ArgumentParser(description='CNN implemented with Keras')
parser.add_argument('--train', dest='train', action='store_true')
parser.add_argument('--test', dest='test', action='store_true')
args = parser.parse_args()
return args
# main
if __name__ == '__main__':
args = arg_parse()
if args.train:
train()
if args.test:
test()
if not (args.train or args.test):
print("please select train or test flag")
print("train: python main.py --train")
print("test: python main.py --test")
print("both: python main.py --train --test")