ROLO icon indicating copy to clipboard operation
ROLO copied to clipboard

output/trainging-20-log.txt

Open wei-1234567 opened this issue 6 years ago • 1 comments

when I ran ROLO_step6_train_20_exp1.py, I met this question ,No such file or directory: 'output/trainging-20-log.txt'

wei-1234567 avatar May 16 '18 12:05 wei-1234567

@wei-1234567 You have to set restore_weights=False. Then in the following "if" phrase: (line ~167) if (self.restore_weights == True): sess.run(init) self.saver.restore(sess, self.rolo_weights_file) print "Loading complete!" + '\n' else: sess.run(init) The code will just run the session, will not try to restore (load) the model.

Besides, you have to change self.rolo_weights_file to your own path.

chenharel1 avatar Apr 17 '19 09:04 chenharel1