-
Notifications
You must be signed in to change notification settings - Fork 1
/
report.txt
66 lines (46 loc) · 2.89 KB
/
report.txt
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
--------------------------------------------------------------------------------
Processing file './core/solver.py'
outputting to './core/solver.py'
--------------------------------------------------------------------------------
'./core/solver.py' Line 106
--------------------------------------------------------------------------------
Renamed function 'tf.initialize_all_variables' to 'tf.global_variables_initializer'
Old: tf.initialize_all_variables().run()
~~~~~~~~~~~~~~~~~~~~~~~~~~~
New: tf.global_variables_initializer().run()
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
'./core/solver.py' Line 107
--------------------------------------------------------------------------------
Renamed function 'tf.train.SummaryWriter' to 'tf.summary.FileWriter'
Old: summary_writer = tf.train.SummaryWriter(self.log_path, graph=tf.get_default_graph())
~~~~~~~~~~~~~~~~~~~~~~
New: summary_writer = tf.summary.FileWriter(self.log_path, graph=tf.get_default_graph())
~~~~~~~~~~~~~~~~~~~~~
'./core/solver.py' Line 89
--------------------------------------------------------------------------------
Renamed function 'tf.scalar_summary' to 'tf.summary.scalar'
Old: tf.scalar_summary('batch_loss', loss)
~~~~~~~~~~~~~~~~~
New: tf.summary.scalar('batch_loss', loss)
~~~~~~~~~~~~~~~~~
'./core/solver.py' Line 91
--------------------------------------------------------------------------------
Renamed function 'tf.histogram_summary' to 'tf.summary.histogram'
Old: tf.histogram_summary(var.op.name, var)
~~~~~~~~~~~~~~~~~~~~
New: tf.summary.histogram(var.op.name, var)
~~~~~~~~~~~~~~~~~~~~
'./core/solver.py' Line 93
--------------------------------------------------------------------------------
Renamed function 'tf.histogram_summary' to 'tf.summary.histogram'
Old: tf.histogram_summary(var.op.name+'/gradient', grad)
~~~~~~~~~~~~~~~~~~~~
New: tf.summary.histogram(var.op.name+'/gradient', grad)
~~~~~~~~~~~~~~~~~~~~
'./core/solver.py' Line 95
--------------------------------------------------------------------------------
Renamed function 'tf.merge_all_summaries' to 'tf.summary.merge_all'
Old: summary_op = tf.merge_all_summaries()
~~~~~~~~~~~~~~~~~~~~~~
New: summary_op = tf.summary.merge_all()
~~~~~~~~~~~~~~~~~~~~