forked from rakeshvar/rnn_ctc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrain.py
140 lines (112 loc) · 3.89 KB
/
train.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
import pickle
import sys
import numpy as np
import theano as th
from configurations import configs
from neuralnet import NeuralNet
from print_utils import slab_print, prediction_printer
# th.config.optimizer = 'fast_compile'
# th.config.exception_verbosity='high'
def show_all(shown_seq, shown_img,
seen_probabilities=None,
aux_img=None, aux_name=None):
"""
Utility function to show the input and output and debug
:param shown_seq: Labelings of the input
:param shown_img: Input Image
:param seen_probabilities: Seen Probabilities (Excitations of Softmax)
:param aux_img: Other image/matrix for debugging
:param aux_name: Name of aux
:return:
"""
print('Shown : ', end='')
labels_print(shown_seq)
if seen_probabilities is not None:
print('Seen : ', end='')
maxes = np.argmax(seen_probabilities, 0)
labels_print(maxes)
print('Image Shown:')
slab_print(shown_img)
if seen_probabilities is not None:
print('SoftMax Firings:')
slab_print(seen_probabilities)
if aux_img is not None:
print(aux_name)
slab_print(aux_img)
# ################################## Main Script ###########################
config_num = 0
log_space = True
if len(sys.argv) < 2:
print('Usage\n{} <data_file.pkl> [configuration#={}] [use_log={}]'
''.format(sys.argv[0], config_num, log_space))
sys.exit(1)
with open(sys.argv[1], "rb") as pkl_file:
data = pickle.load(pkl_file)
if len(sys.argv) > 2:
config_num = int(sys.argv[2])
if len(sys.argv) > 3:
log_space = sys.argv[3][0] in "TtYy1"
################################
# Network Parameters
midlayer, midlayerargs = configs[config_num]
chars = data['chars']
nClasses = len(chars)
nDims = len(data['x'][0])
nSamples = len(data['x'])
nTrainSamples = nSamples * .75
nEpochs = 100
labels_print, labels_len = prediction_printer(chars)
print("\nConfig: {}"
"\n Midlayer: {} {}"
"\nInput Dim: {}"
"\nNum Classes: {}"
"\nNum Samples: {}"
"\nFloatX: {}"
"\nUsing log space: {}"
"\n".format(config_num, midlayer, midlayerargs, nDims, nClasses,
nSamples, th.config.floatX, log_space))
################################
print("Preparing the Data")
try:
conv_sz = midlayerargs["conv_sz"]
except KeyError:
conv_sz = 1
data_x, data_y = [], []
bad_data = False
for x, y in zip(data['x'], data['y']):
# Insert blanks at alternate locations in the labelling (blank is nClasses)
y1 = [nClasses]
for char in y:
y1 += [char, nClasses]
data_y.append(np.asarray(y1, dtype=np.int32))
data_x.append(np.asarray(x, dtype=th.config.floatX))
if labels_len(y1) > (1 + len(x[0])) // conv_sz:
bad_data = True
show_all(y1, x, None, x[:, ::conv_sz], "Squissed")
################################
print("Building the Network")
ntwk = NeuralNet(nDims, nClasses, midlayer, midlayerargs, log_space)
print("Training the Network")
for epoch in range(nEpochs):
print('Epoch : ', epoch)
for samp in range(nSamples):
x = data_x[samp]
y = data_y[samp]
# if not samp % 500: print(samp)
if samp < nTrainSamples:
if log_space and len(y) < 2:
continue
cst, pred, aux = ntwk.trainer(x, y)
if (epoch % 10 == 0 and samp < 3) or np.isinf(cst):
print('\n## TRAIN cost: ', np.round(cst, 3))
show_all(y, x, pred, aux > 1e-20, 'Forward probabilities:')
if np.isinf(cst):
print('Exiting on account of Inf Cost...')
sys.exit()
elif (epoch % 10 == 0 and samp - nTrainSamples < 3) \
or epoch == nEpochs - 1:
# Print some test images
pred, aux = ntwk.tester(x)
aux = (aux + 1) / 2.0
print('\n## TEST')
show_all(y, x, pred, aux, 'Hidden Layer:')