"...resnet50_tensorflow.git" did not exist on "3af667fda64b277bdfcf68b026373a0e307ba302"
Commit ce840bf0 authored by David Sussillo's avatar David Sussillo Committed by GitHub
Browse files

Merge pull request #1937 from jazcollins/master

removing memory intensive session.graph from FileWriter call
parents b879a927 8adbb64c
...@@ -952,7 +952,7 @@ class LFADS(object): ...@@ -952,7 +952,7 @@ class LFADS(object):
session = tf.get_default_session() session = tf.get_default_session()
self.logfile = os.path.join(hps.lfads_save_dir, "lfads_log") self.logfile = os.path.join(hps.lfads_save_dir, "lfads_log")
self.writer = tf.summary.FileWriter(self.logfile, session.graph) self.writer = tf.summary.FileWriter(self.logfile)
def build_feed_dict(self, train_name, data_bxtxd, ext_input_bxtxi=None, def build_feed_dict(self, train_name, data_bxtxd, ext_input_bxtxi=None,
keep_prob=None): keep_prob=None):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment