Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

rnn.py 16 KB

You have to be logged in to leave a comment. Sign In
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
  1. from __future__ import unicode_literals, print_function, division
  2. from io import open
  3. import unicodedata
  4. import re
  5. import random
  6. import os
  7. import torch
  8. import torch.nn as nn
  9. from torch import optim
  10. import torch.nn.functional as F
  11. device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
  12. SOS_token = 0
  13. EOS_token = 1
  14. class Lang:
  15. def __init__(self,name):
  16. self.name = name
  17. # 形如 {"hello" : 3}
  18. self.word2index = {}
  19. # 统计每一个单词出现的次数
  20. self.word2count = {}
  21. self.index2word = {0:"SOS",1:"EOS"}
  22. # 统计训练集出现的单词数
  23. self.n_words = 2 # SOS 和 EOS已经存在了
  24. def addSentence(self,sentence):
  25. # 第一行为 Go. Va !
  26. # 前面是英语,后面是法语,中间用tab分隔
  27. for word in sentence.split(" "):
  28. self.addWord(word)
  29. def addWord(self,word):
  30. if word not in self.word2index:
  31. self.word2index[word] = self.n_words
  32. self.word2count[word] = 1
  33. # 用现有的总词数作为新的单词的索引
  34. self.index2word[self.n_words] = word
  35. self.n_words += 1
  36. else:
  37. self.word2count[word] += 1
  38. # 将Unicode字符串转换为纯ASCII, 感谢https://stackoverflow.com/a/518232/2809427
  39. def unicodeToAscii(s):
  40. return ''.join(
  41. c for c in unicodedata.normalize('NFD', s)
  42. if unicodedata.category(c) != 'Mn'
  43. )
  44. # 小写,修剪和删除非字母字符
  45. def normalizeString(s):
  46. # 转码之后变小写切除两边空白
  47. s = unicodeToAscii(s.lower().strip())
  48. # 匹配.!?,并在前面加空格
  49. s = re.sub(r"([.!?])",r" \1",s)
  50. # 将非字母和.!?的全部变为空白
  51. s = re.sub(r"[^a-zA-Z.!?]+",r" ",s)
  52. return s
  53. def readLangs(lang1,lang2,reverse=False):
  54. print("Reading lines...")
  55. # 读取文件并分为几行
  56. # 每一对句子最后会有个换行符\n
  57. # lines ==> ['Go.\tVa !', 'Run!\tCours\u202f!'...]
  58. lines = open("填自己的数据路径",encoding = "utf-8").read().strip().split("\n")
  59. # 将每一行拆分成对并进行标准化
  60. # pairs ==> [["go .","va !"],...]
  61. pairs = [[normalizeString(s) for s in l.split("\t")] for l in lines]
  62. # 反向对,实例Lang
  63. # 源文件是先英语后法语
  64. # 换完之后就是先法后英
  65. if reverse:
  66. pairs = [list(reversed(p)) for p in pairs]
  67. input_lang = Lang(lang2)
  68. output_lang = Lang(lang1)
  69. else:
  70. input_lang = Lang(lang1)
  71. output_lang = Lang(lang2)
  72. return input_lang,output_lang,pairs
  73. MAX_LENGTH = 10
  74. eng_prefixes = (
  75. "i am ", "i m ",
  76. "he is", "he s ",
  77. "she is", "she s ",
  78. "you are", "you re ",
  79. "we are", "we re ",
  80. "they are", "they re "
  81. )
  82. def filterPair(p):
  83. return len(p[0].split(' ')) < MAX_LENGTH and \
  84. len(p[1].split(' ')) < MAX_LENGTH and \
  85. p[1].startswith(eng_prefixes)
  86. # 留下符合条件的
  87. def filterPairs(pairs):
  88. return [pair for pair in pairs if filterPair(pair)]
  89. def prepareData(lang1, lang2, reverse=False):
  90. input_lang, output_lang, pairs = readLangs(lang1, lang2, reverse)
  91. print("Read %s sentence pairs" % len(pairs))
  92. pairs = filterPairs(pairs)
  93. print("Trimmed to %s sentence pairs" % len(pairs))
  94. print("Counting words...")
  95. for pair in pairs:
  96. input_lang.addSentence(pair[0])
  97. output_lang.addSentence(pair[1])
  98. print("Counted words:")
  99. print(input_lang.name, input_lang.n_words)
  100. print(output_lang.name, output_lang.n_words)
  101. return input_lang, output_lang, pairs
  102. input_lang, output_lang, pairs = prepareData('eng', 'fra', True)
  103. # 随机输出pair对
  104. print(random.choice(pairs))
  105. class EncoderRNN(nn.Module):
  106. def __init__(self, input_size, hidden_size):
  107. # 调用父类初始化方法
  108. super(EncoderRNN, self).__init__()
  109. # 初始化必须的变量
  110. self.hidden_size = hidden_size
  111. self.embedding = nn.Embedding(input_size, hidden_size)
  112. # gru的输入为三维,两个参数均指的是最后一维的大小
  113. # tensor([1,1,hidden_size])
  114. self.gru = nn.GRU(hidden_size, hidden_size)
  115. def forward(self, input, hidden):
  116. # embedded.size() ==> tensor([1,1,hidden_size])
  117. # -1的好处是机器会自动计算
  118. # 这里用view扩维的原因是gru必须接受三维的输入
  119. embedded = self.embedding(input).view(1, 1, -1)
  120. output = embedded
  121. output, hidden = self.gru(output, hidden)
  122. return output, hidden
  123. def initHidden(self):
  124. # 初始化隐层状态全为0
  125. # hidden ==> tensor([1,1,hidden_size])
  126. return torch.zeros(1, 1, self.hidden_size, device=device)
  127. class DecoderRNN(nn.Module):
  128. def __init__(self, hidden_size, output_size):
  129. super(DecoderRNN, self).__init__()
  130. self.hidden_size = hidden_size
  131. self.embedding = nn.Embedding(output_size, hidden_size)
  132. self.gru = nn.GRU(hidden_size, hidden_size)
  133. # input_features ==> hidden_size
  134. # output_features ==> output_size
  135. self.out = nn.Linear(hidden_size, output_size)
  136. # Log(Softmax(X))
  137. self.softmax = nn.LogSoftmax(dim=1)
  138. def forward(self, input, hidden):
  139. output = self.embedding(input).view(1, 1, -1)
  140. output = F.relu(output)
  141. output, hidden = self.gru(output, hidden)
  142. # output.size() ==> [1,1,hidden_size]
  143. # output的第一个1是我们用以适合gru输入扩充的
  144. # 所以用output[0]选取前面的
  145. output = self.softmax(self.out(output[0]))
  146. return output, hidden
  147. def initHidden(self):
  148. return torch.zeros(1, 1, self.hidden_size, device=device)
  149. class AttnDecoderRNN(nn.Module):
  150. def __init__(self, hidden_size, output_size, dropout_p=0.1, max_length=MAX_LENGTH):
  151. super(AttnDecoderRNN, self).__init__()
  152. self.hidden_size = hidden_size
  153. self.output_size = output_size
  154. self.dropout_p = dropout_p
  155. self.max_length = max_length
  156. self.embedding = nn.Embedding(self.output_size, self.hidden_size)
  157. # 因为会将prev_hidden和embedded在最后一个维度
  158. # 即hidden_size,进行拼接,所以要*2
  159. # max_length用以统一不同长度的句子分配的注意力
  160. # 最大长度句子使用所有注意力权重,较短只用前几个
  161. self.attn = nn.Linear(self.hidden_size*2,self.max_length)
  162. self.attn = nn.Linear(self.hidden_size * 2, self.max_length)
  163. self.attn_combine = nn.Linear(self.hidden_size * 2, self.hidden_size)
  164. self.dropout = nn.Dropout(self.dropout_p)
  165. self.gru = nn.GRU(self.hidden_size, self.hidden_size)
  166. self.out = nn.Linear(self.hidden_size, self.output_size)
  167. def forward(self, input, hidden, encoder_outputs):
  168. embedded = self.embedding(input).view(1, 1, -1)
  169. embedded = self.dropout(embedded)
  170. # 因为第一维只是适应模型输入扩充的
  171. # 所以拼接时,只需要取后面两个维度
  172. attn_weights = F.softmax(
  173. self.attn(torch.cat((embedded[0], hidden[0]), 1)), dim=1)
  174. # bmm ==> batch matrix multiplication
  175. # e.g. a.size() ==> tensor([1,2,3])
  176. # b.size() ==> tensor([1,3,4])
  177. # torch.bmm(a,b).size() ==> tensor([1,2,4])
  178. # 第一维度不变,其他两维就当作矩阵做乘法
  179. # unsqueeze(0)用以在在第一维扩充维度
  180. # attn_applied赋予encoder_outputs不同部分不同权重
  181. attn_applied = torch.bmm(attn_weights.unsqueeze(0),
  182. encoder_outputs.unsqueeze(0))
  183. output = torch.cat((embedded[0], attn_applied[0]), 1)
  184. output = self.attn_combine(output).unsqueeze(0)
  185. output = F.relu(output)
  186. output, hidden = self.gru(output, hidden)
  187. output = F.log_softmax(self.out(output[0]), dim=1)
  188. return output, hidden, attn_weights
  189. def initHidden(self):
  190. return torch.zeros(1, 1, self.hidden_size, device=device)
  191. def indexesFromSentence(lang, sentence):
  192. return [lang.word2index[word] for word in sentence.split(' ')]
  193. def tensorFromSentence(lang, sentence):
  194. indexes = indexesFromSentence(lang, sentence)
  195. indexes.append(EOS_token)
  196. return torch.tensor(indexes, dtype=torch.long, device=device).view(-1, 1)
  197. def tensorsFromPair(pair):
  198. input_tensor = tensorFromSentence(input_lang, pair[0])
  199. target_tensor = tensorFromSentence(output_lang, pair[1])
  200. return (input_tensor, target_tensor)
  201. teacher_forcing_ratio = 0.5
  202. def train(input_tensor,target_tensor,encoder,decoder,encoder_optimizer,decoder_optimizer,criterion,max_length=MAX_LENGTH):
  203. # 初始化隐藏状态
  204. encoder_hidden = encoder.initHidden()
  205. # 梯度清零
  206. encoder_optimizer.zero_grad()
  207. decoder_optimizer.zero_grad()
  208. input_length = input_tensor.size(0)
  209. target_length = target_tensor.size(0)
  210. # 初始化,等会替换
  211. encoder_outputs = torch.zeros(max_length,encoder.hidden_size,device=device)
  212. loss = 0
  213. for ei in range(input_length):
  214. encoder_output,encoder_hidden = encoder(
  215. input_tensor[ei],encoder_hidden)
  216. # encoder_output.size() ==> tensor([1,1,hidden_size])
  217. encoder_outputs[ei] = encoder_output[0,0]
  218. # 输入为<sos>,decoder初始隐藏状态为encoder的
  219. decoder_input = torch.tensor([[SOS_token]],device=device)
  220. decoder_hidden = encoder_hidden
  221. # 随机决定是否采用teacher_forcing
  222. use_teacher_forcing = True if random.random() < teacher_forcing_ratio else False
  223. if use_teacher_forcing:
  224. # 若采用,label作为下一个时间步输入
  225. for di in range(target_length):
  226. decoder_output,decoder_hidden,decoder_attention = decoder(
  227. decoder_input,decoder_hidden,encoder_outputs)
  228. loss += criterion(decoder_output,target_tensor[di])
  229. else:
  230. # 若不用,则用预测出的作为Decoder下一个输入
  231. for di in range(target_length):
  232. decoder_output,decoder_hidden,decoder_attention = decoder(
  233. decoder_input,decoder_hidden,encoder_outputs)
  234. # topk代表在所给维度上输出最大值
  235. # 参数代表输出前多少个最大值
  236. # 若为1,就是最大值
  237. # topv,topi 分别为前n个最大值和其对应的索引
  238. topv,topi = decoder_output.topk(1)
  239. # squeeze()进行降维
  240. # detach将与这个变量相关的从计算图中剥离
  241. # 从而减少内存的开销
  242. decoder_input = topi.squeeze().detach()
  243. loss += criterion(decoder_output,target_tensor[di])
  244. # 若某个时间步输入为<eos>,则停止
  245. if decoder_input.item() == EOS_token:
  246. break
  247. loss.backward()
  248. # 参数更新
  249. encoder_optimizer.step()
  250. decoder_optimizer.step()
  251. # 返回平均loss
  252. return loss.item() / target_length
  253. import time
  254. import math
  255. def asMinutes(s):
  256. m = math.floor(s / 60)
  257. s -= m * 60
  258. return '%dm %ds' % (m, s)
  259. def timeSince(since, percent):
  260. now = time.time()
  261. s = now - since
  262. es = s / (percent)
  263. rs = es - s
  264. return '%s (- %s)' % (asMinutes(s), asMinutes(rs))
  265. def trainIters(encoder,decoder,n_iters,print_every=1000,plot_every=100,learning_rate=0.01):
  266. start = time.time()
  267. plot_losses = []
  268. # 每一次重置
  269. print_loss_total = 0
  270. plot_loss_total = 0
  271. # 定义优化器
  272. encoder_optimizer = optim.SGD(encoder.parameters(),lr=learning_rate)
  273. decoder_optimizer = optim.SGD(decoder.parameters(),lr=learning_rate)
  274. # random.choice(pairs)随机选择
  275. training_pairs = [tensorsFromPair(random.choice(pairs)) for i in range(n_iters)]
  276. criterion = nn.NLLLoss()
  277. for iter in range(1,n_iters + 1):
  278. training_pair = training_pairs[iter-1]
  279. input_tensor = training_pair[0]
  280. target_tensor = training_pair[1]
  281. loss = train(input_tensor, target_tensor, encoder,
  282. decoder, encoder_optimizer, decoder_optimizer, criterion)
  283. print_loss_total += loss
  284. plot_loss_total += loss
  285. # 若能整除,就打印此时训练进度
  286. if iter % print_every == 0:
  287. print_loss_avg = print_loss_total / print_every
  288. print_loss_total = 0
  289. print('%s (%d %d%%) %.4f' % (timeSince(start, iter / n_iters),
  290. iter, iter / n_iters * 100, print_loss_avg))
  291. # 若能整除,则把平均损失加入plot_loss
  292. # 为后期画图做准备
  293. if iter % plot_every == 0:
  294. plot_loss_avg = plot_loss_total / plot_every
  295. plot_losses.append(plot_loss_avg)
  296. plot_loss_total = 0
  297. showPlot(plot_losses)
  298. import matplotlib.pyplot as plt
  299. import matplotlib.ticker as ticker
  300. import numpy as np
  301. def showPlot(points):
  302. plt.figure()
  303. fig, ax = plt.subplots()
  304. # this locator puts ticks at regular intervals
  305. loc = ticker.MultipleLocator(base=0.2)
  306. ax.yaxis.set_major_locator(loc)
  307. plt.plot(points)
  308. def evaluate(encoder, decoder, sentence, max_length=MAX_LENGTH):
  309. # 评估时停止梯度跟踪,减少内存
  310. with torch.no_grad():
  311. input_tensor = tensorFromSentence(input_lang, sentence)
  312. input_length = input_tensor.size()[0]
  313. encoder_hidden = encoder.initHidden()
  314. encoder_outputs = torch.zeros(max_length, encoder.hidden_size, device=device)
  315. for ei in range(input_length):
  316. encoder_output, encoder_hidden = encoder(input_tensor[ei],encoder_hidden)
  317. encoder_outputs[ei] += encoder_output[0, 0]
  318. decoder_input = torch.tensor([[SOS_token]], device=device) # SOS
  319. decoder_hidden = encoder_hidden
  320. decoded_words = []
  321. decoder_attentions = torch.zeros(max_length, max_length)
  322. for di in range(max_length):
  323. decoder_output, decoder_hidden, decoder_attention = decoder(
  324. decoder_input, decoder_hidden, encoder_outputs)
  325. decoder_attentions[di] = decoder_attention.data
  326. topv, topi = decoder_output.data.topk(1)
  327. if topi.item() == EOS_token:
  328. decoded_words.append('<EOS>')
  329. break
  330. else:
  331. decoded_words.append(output_lang.index2word[topi.item()])
  332. decoder_input = topi.squeeze().detach()
  333. return decoded_words, decoder_attentions[:di + 1]
  334. def evaluateRandomly(encoder, decoder, n=10):
  335. for i in range(n):
  336. pair = random.choice(pairs)
  337. print('>', pair[0])
  338. print('=', pair[1])
  339. output_words, attentions = evaluate(encoder, decoder, pair[0])
  340. output_sentence = ' '.join(output_words)
  341. print('<', output_sentence)
  342. print('')
  343. hidden_size = 256
  344. encoder1 = EncoderRNN(input_lang.n_words, hidden_size).to(device)
  345. attn_decoder1 = AttnDecoderRNN(hidden_size, output_lang.n_words, dropout_p=0.1).to(device)
  346. trainIters(encoder1, attn_decoder1, 75000, print_every=5000)
  347. #保留网络参数,注意是实例化之后的
  348. torch.save(encoder1.state_dict(),"encoder_parameters")
  349. torch.save(attn_decoder1.state_dict(),"decoder_parameters")
  350. # 注意力可视化
  351. def showAttention(input_sentence, output_words, attentions):
  352. # 用colorbar设置图
  353. fig = plt.figure()
  354. ax = fig.add_subplot(111)
  355. # attentions出来之后是tensor形式,需要转换为numpy
  356. cax = ax.matshow(attentions.numpy(), cmap='bone')
  357. fig.colorbar(cax)
  358. # 设置坐标
  359. ax.set_xticklabels([''] + input_sentence.split(' ') +
  360. ['<EOS>'], rotation=90)
  361. ax.set_yticklabels([''] + output_words)
  362. # 在每个刻度处显示标签,刻度为1的倍数
  363. ax.xaxis.set_major_locator(ticker.MultipleLocator(1))
  364. ax.yaxis.set_major_locator(ticker.MultipleLocator(1))
  365. plt.show()
  366. def evaluateAndShowAttention(input_sentence):
  367. output_words, attentions = evaluate(
  368. encoder1, attn_decoder1, input_sentence)
  369. print('input =', input_sentence)
  370. print('output =', ' '.join(output_words))
  371. showAttention(input_sentence, output_words, attentions)
  372. evaluateAndShowAttention("elle a cinq ans de moins que moi .")
  373. evaluateAndShowAttention("elle est trop petit .")
  374. evaluateAndShowAttention("je ne crains pas de mourir .")
  375. evaluateAndShowAttention("c est un jeune directeur plein de talent .")
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...