I am on CENTOS 7 machine.   I run this:
     THEANO_FLAGS=''; python -c "import theano; theano.test()"
It runs for a long time and sends out its msg to stdout? or stderr?

I notice that on __init__.py for the package theano, it initializes a 
theano_logger
with these commands:
     theano_logger = logging.getLogger("theano")
     logging_default_handler = logging.StreamHandler()
     logging_default_formatter = logging.Formatter(
     fmt='%(levelname)s (%(name)s): %(message)s')
     logging_default_handler.setFormatter(logging_default_formatter)
     theano_logger.addHandler(logging_default_handler)
     theano_logger.setLevel(logging.WARNING)

What I am wondering is.  Where do the logs go, besides the screen?
I have been doing a lot of searching at the documentation, and havent
figured it out.   I would think it would be faster to send it to a file, 
than
the screen.

Will the test run a lot faster with a GPU?

-Marcelo Siero.

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"theano-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to