summaryrefslogtreecommitdiff
path: root/report.txt
blob: ef6775f5d06085a021a7c48b382c49f91548c4aa (plain)
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
================================================================================
Input tree: 'Code'
================================================================================
--------------------------------------------------------------------------------
Processing file 'Code/tfutils_test.py'
 outputting to 'Code2/tfutils_test.py'
--------------------------------------------------------------------------------


--------------------------------------------------------------------------------
Processing file 'Code/d_scale_model.py'
 outputting to 'Code2/d_scale_model.py'
--------------------------------------------------------------------------------


--------------------------------------------------------------------------------
Processing file 'Code/constants.py'
 outputting to 'Code2/constants.py'
--------------------------------------------------------------------------------


--------------------------------------------------------------------------------
Processing file 'Code/loss_functions.py'
 outputting to 'Code2/loss_functions.py'
--------------------------------------------------------------------------------

'Code/loss_functions.py' Line 64
--------------------------------------------------------------------------------

Renamed function 'tf.pack' to 'tf.stack'

    Old:     return tf.reduce_mean(tf.pack(scale_losses))
                                   ~~~~~~~                
    New:     return tf.reduce_mean(tf.stack(scale_losses))
                                   ~~~~~~~~                

'Code/loss_functions.py' Line 99
--------------------------------------------------------------------------------

Renamed function 'tf.pack' to 'tf.stack'

    Old:     return tf.reduce_mean(tf.pack(scale_losses))
                                   ~~~~~~~                
    New:     return tf.reduce_mean(tf.stack(scale_losses))
                                   ~~~~~~~~                

'Code/loss_functions.py' Line 83
--------------------------------------------------------------------------------

Renamed function 'tf.pack' to 'tf.stack'

    Old:         filter_x = tf.expand_dims(tf.pack([neg, pos]), 0)  # [-1, 1]
                                           ~~~~~~~                            
    New:         filter_x = tf.expand_dims(tf.stack([neg, pos]), 0)  # [-1, 1]
                                           ~~~~~~~~                            

'Code/loss_functions.py' Line 84
--------------------------------------------------------------------------------

Renamed function 'tf.pack' to 'tf.stack'

    Old:         filter_y = tf.pack([tf.expand_dims(pos, 0), tf.expand_dims(neg, 0)])  # [[1],[-1]]
                            ~~~~~~~                                                                 
    New:         filter_y = tf.stack([tf.expand_dims(pos, 0), tf.expand_dims(neg, 0)])  # [[1],[-1]]
                            ~~~~~~~~                                                                 

'Code/loss_functions.py' Line 118
--------------------------------------------------------------------------------

Renamed function 'tf.pack' to 'tf.stack'

    Old:     return tf.reduce_mean(tf.pack(scale_losses))
                                   ~~~~~~~                
    New:     return tf.reduce_mean(tf.stack(scale_losses))
                                   ~~~~~~~~                


--------------------------------------------------------------------------------
Processing file 'Code/avg_runner.py'
 outputting to 'Code2/avg_runner.py'
--------------------------------------------------------------------------------


--------------------------------------------------------------------------------
Processing file 'Code/process_data.py'
 outputting to 'Code2/process_data.py'
--------------------------------------------------------------------------------


--------------------------------------------------------------------------------
Processing file 'Code/tfutils.py'
 outputting to 'Code2/tfutils.py'
--------------------------------------------------------------------------------

'Code/tfutils.py' Line 96
--------------------------------------------------------------------------------

Added keyword 'concat_dim' to reordered function 'tf.concat'
Added keyword 'values' to reordered function 'tf.concat'

    Old:     elif num_tpad > 0: padded = tf.concat(1, [tpad, padded])
                                                                      
    New:     elif num_tpad > 0: padded = tf.concat(axis=1, values=[tpad, padded])
                                                   ~~~~~   ~~~~~~~                

'Code/tfutils.py' Line 97
--------------------------------------------------------------------------------

Added keyword 'concat_dim' to reordered function 'tf.concat'
Added keyword 'values' to reordered function 'tf.concat'

    Old:     elif num_bpad > 0: padded = tf.concat(1, [padded, bpad])
                                                                      
    New:     elif num_bpad > 0: padded = tf.concat(axis=1, values=[padded, bpad])
                                                   ~~~~~   ~~~~~~~                

'Code/tfutils.py' Line 98
--------------------------------------------------------------------------------

Added keyword 'concat_dim' to reordered function 'tf.concat'
Added keyword 'values' to reordered function 'tf.concat'

    Old:     if num_lpad > 0 and num_rpad > 0: padded = tf.concat(2, [lpad, padded, rpad])
                                                                                           
    New:     if num_lpad > 0 and num_rpad > 0: padded = tf.concat(axis=2, values=[lpad, padded, rpad])
                                                                  ~~~~~   ~~~~~~~                      

'Code/tfutils.py' Line 99
--------------------------------------------------------------------------------

Added keyword 'concat_dim' to reordered function 'tf.concat'
Added keyword 'values' to reordered function 'tf.concat'

    Old:     elif num_lpad > 0: padded = tf.concat(2, [lpad, padded])
                                                                      
    New:     elif num_lpad > 0: padded = tf.concat(axis=2, values=[lpad, padded])
                                                   ~~~~~   ~~~~~~~                

'Code/tfutils.py' Line 100
--------------------------------------------------------------------------------

Added keyword 'concat_dim' to reordered function 'tf.concat'
Added keyword 'values' to reordered function 'tf.concat'

    Old:     elif num_rpad > 0: padded = tf.concat(2, [padded, rpad])
                                                                      
    New:     elif num_rpad > 0: padded = tf.concat(axis=2, values=[padded, rpad])
                                                   ~~~~~   ~~~~~~~                

'Code/tfutils.py' Line 95
--------------------------------------------------------------------------------

Added keyword 'concat_dim' to reordered function 'tf.concat'
Added keyword 'values' to reordered function 'tf.concat'

    Old:     if num_tpad > 0 and num_bpad > 0: padded = tf.concat(1, [tpad, padded, bpad])
                                                                                           
    New:     if num_tpad > 0 and num_bpad > 0: padded = tf.concat(axis=1, values=[tpad, padded, bpad])
                                                                  ~~~~~   ~~~~~~~                      


--------------------------------------------------------------------------------
Processing file 'Code/loss_functions_test.py'
 outputting to 'Code2/loss_functions_test.py'
--------------------------------------------------------------------------------


--------------------------------------------------------------------------------
Processing file 'Code/g_model.py'
 outputting to 'Code2/g_model.py'
--------------------------------------------------------------------------------

'Code/g_model.py' Line 225
--------------------------------------------------------------------------------

Renamed function 'tf.scalar_summary' to 'tf.summary.scalar'

    Old:                 summary_psnr_test = tf.scalar_summary('test_PSNR',
                                             ~~~~~~~~~~~~~~~~~              
    New:                 summary_psnr_test = tf.summary.scalar('test_PSNR',
                                             ~~~~~~~~~~~~~~~~~              

'Code/g_model.py' Line 227
--------------------------------------------------------------------------------

Renamed function 'tf.scalar_summary' to 'tf.summary.scalar'

    Old:                 summary_sharpdiff_test = tf.scalar_summary('test_SharpDiff',
                                                  ~~~~~~~~~~~~~~~~~                   
    New:                 summary_sharpdiff_test = tf.summary.scalar('test_SharpDiff',
                                                  ~~~~~~~~~~~~~~~~~                   

'Code/g_model.py' Line 199
--------------------------------------------------------------------------------

Renamed function 'tf.scalar_summary' to 'tf.summary.scalar'

    Old:                 loss_summary = tf.scalar_summary('train_loss_G', self.global_loss)
                                        ~~~~~~~~~~~~~~~~~                                   
    New:                 loss_summary = tf.summary.scalar('train_loss_G', self.global_loss)
                                        ~~~~~~~~~~~~~~~~~                                   

'Code/g_model.py' Line 232
--------------------------------------------------------------------------------

Renamed function 'tf.merge_summary' to 'tf.summary.merge'

    Old:             self.summaries_train = tf.merge_summary(self.summaries_train)
                                            ~~~~~~~~~~~~~~~~                       
    New:             self.summaries_train = tf.summary.merge(self.summaries_train)
                                            ~~~~~~~~~~~~~~~~                       

'Code/g_model.py' Line 233
--------------------------------------------------------------------------------

Renamed function 'tf.merge_summary' to 'tf.summary.merge'

    Old:             self.summaries_test = tf.merge_summary(self.summaries_test)
                                           ~~~~~~~~~~~~~~~~                      
    New:             self.summaries_test = tf.summary.merge(self.summaries_test)
                                           ~~~~~~~~~~~~~~~~                      

'Code/g_model.py' Line 117
--------------------------------------------------------------------------------

Added keyword 'concat_dim' to reordered function 'tf.concat'
Added keyword 'values' to reordered function 'tf.concat'

    Old:                                 inputs = tf.concat(3, [inputs, last_gen_frames])
                                                                                          
    New:                                 inputs = tf.concat(axis=3, values=[inputs, last_gen_frames])
                                                            ~~~~~   ~~~~~~~                           

'Code/g_model.py' Line 218
--------------------------------------------------------------------------------

Renamed function 'tf.scalar_summary' to 'tf.summary.scalar'

    Old:                 summary_psnr_train = tf.scalar_summary('train_PSNR',
                                              ~~~~~~~~~~~~~~~~~               
    New:                 summary_psnr_train = tf.summary.scalar('train_PSNR',
                                              ~~~~~~~~~~~~~~~~~               

'Code/g_model.py' Line 220
--------------------------------------------------------------------------------

Renamed function 'tf.scalar_summary' to 'tf.summary.scalar'

    Old:                 summary_sharpdiff_train = tf.scalar_summary('train_SharpDiff',
                                                   ~~~~~~~~~~~~~~~~~                    
    New:                 summary_sharpdiff_train = tf.summary.scalar('train_SharpDiff',
                                                   ~~~~~~~~~~~~~~~~~                    


--------------------------------------------------------------------------------
Processing file 'Code/utils.py'
 outputting to 'Code2/utils.py'
--------------------------------------------------------------------------------

'Code/utils.py' Line 196
--------------------------------------------------------------------------------

Renamed function 'tf.pack' to 'tf.stack'

    Old:     filter_x = tf.expand_dims(tf.pack([neg, pos]), 0)  # [-1, 1]
                                       ~~~~~~~                            
    New:     filter_x = tf.expand_dims(tf.stack([neg, pos]), 0)  # [-1, 1]
                                       ~~~~~~~~                            

'Code/utils.py' Line 197
--------------------------------------------------------------------------------

Renamed function 'tf.pack' to 'tf.stack'

    Old:     filter_y = tf.pack([tf.expand_dims(pos, 0), tf.expand_dims(neg, 0)])  # [[1],[-1]]
                        ~~~~~~~                                                                 
    New:     filter_y = tf.stack([tf.expand_dims(pos, 0), tf.expand_dims(neg, 0)])  # [[1],[-1]]
                        ~~~~~~~~                                                                 


--------------------------------------------------------------------------------
Processing file 'Code/d_model.py'
 outputting to 'Code2/d_model.py'
--------------------------------------------------------------------------------

'Code/d_model.py' Line 92
--------------------------------------------------------------------------------

Renamed function 'tf.scalar_summary' to 'tf.summary.scalar'

    Old:                 loss_summary = tf.scalar_summary('loss_D', self.global_loss)
                                        ~~~~~~~~~~~~~~~~~                             
    New:                 loss_summary = tf.summary.scalar('loss_D', self.global_loss)
                                        ~~~~~~~~~~~~~~~~~                             

'Code/d_model.py' Line 93
--------------------------------------------------------------------------------

Renamed function 'tf.merge_summary' to 'tf.summary.merge'

    Old:                 self.summaries = tf.merge_summary([loss_summary])
                                          ~~~~~~~~~~~~~~~~                 
    New:                 self.summaries = tf.summary.merge([loss_summary])
                                          ~~~~~~~~~~~~~~~~