I'm trying to capture the things that are printed to STDERR when I run commands in jupyter notebook. In particular, I'm using TensorFlow, which does fprintf
from the C parts, which is normally printed on console, but I want to save into Python variable.
I've been using FDRedirector from IPython codebase which sets up os.pipe
to capture output into Python string.
However, the problem with this code is that it hangs the kernel for large enough output. I'm suspecting it will hang for output over 65k since that's pipe buffer size on Linux and gdb
shows the hang is happening in write
. Does anyone have a solution that would work with larger outputs?
As an example of what I'm doing right now, using FDRedirector
STDERR = 2
redirect = FDRedirector(STDERR)
import tensorflow as tf
sess = tf.Session("")
node = tf.Print(tf.constant(1), [tf.constant(1)], "longstringlongstring")
def print_to_stderr():
sess.run(node) # this prints to stderr
redirect.start();
print_to_stderr()
captured_stderr = redirect.stop()
At the end, "captured_stderr" contains all the things printed to stderr, including longstringlongstring
. If you make longstring
part much longer (>100k), this will freeze.
You can try piping your output to a temp file - so no buffer limits:
Please let me know if this works for your purpose. Unfortunately I don't have TF installed.
Jupyter itself survived outputting 1Mb to a cell :)