(self, sess, path, iter, hist)
| 330 | saver.save(sess, save_path=path) |
| 331 | |
| 332 | def summary(self, sess, path, iter, hist): |
| 333 | writer = tf.summary.FileWriter(path, sess.graph) |
| 334 | writer.add_summary(hist, iter) |
| 335 | |
| 336 | def save_freq(self): |
| 337 | list_uid = self.uid_dict.items() |