Skip to content

Commit 1907e9a

Browse files
author
Sekhar Roy
committed
intermediate bug fixed
1 parent 1ae8a93 commit 1907e9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

melNET_train_src.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def main(train_dir, weight_dir, learning_rate, batch_size, iteration):
271271
intermediate_frequency = INTERMEDIATE_STORE_FREQUENCY
272272

273273
if (intermediate_frequency > 0 and (i % intermediate_frequency == 0) and i > 0):
274-
intermediate_file_name = (INTERMEDIATE_OUTPUT_GRAPHS_DIR + 'intermediate_' + str(i) + '.pb')
274+
intermediate_file_name = (INTERMEDIATE_OUTPUT_GRAPHS_DIR + '/intermediate_' + str(i) + '.pb')
275275
tf.logging.info('Save intermediate result to : ' + intermediate_file_name)
276276
save_graph_to_file(sess, graph, intermediate_file_name)
277277
# end if

0 commit comments

Comments
 (0)