Skip to content

Commit

Permalink
commented on changing mkdir command
Browse files Browse the repository at this point in the history
  • Loading branch information
orlitany committed Jan 14, 2018
1 parent 1629334 commit e18e5ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions train_FMnet.py
Expand Up @@ -145,7 +145,7 @@ def run_training():

print('log_dir=%s' % FLAGS.log_dir)
if not os.path.isdir(FLAGS.log_dir):
os.makedirs(FLAGS.log_dir)
os.makedirs(FLAGS.log_dir) # changed from mkdir
print('num_evecs=%d' % FLAGS.num_evecs)

print('building graph...')
Expand Down Expand Up @@ -236,4 +236,4 @@ def main(_):


if __name__ == '__main__':
tf.app.run()
tf.app.run()

0 comments on commit e18e5ec

Please sign in to comment.