I'm farmilliar with tf.train.Saver, which allows me to save variables to disk.
But is it possible to get them directly as a string? Or write them to an open stream? Something like:
binary_string_rep = saver.save(sess)
db.save(binary_string_rep)
Or do I have to write to disk, then read it back?