Skip to main content

TensorFlow logging made easy

Project description

Easy TensorFlow Logging

Are you prototyping something and want to be able to magically graph some value without going through all the usual steps to set up TensorFlow logging properly?

easy-tf-log is a simple module to do just that.

from easy_tf_log import tflog

then you can do

for i in range(10):
    tflog('really_interesting_variable_name', i)

and you'll find a directory logs that you can point TensorBoard to

$ tensorboard --logdir logs

to get

Based on logging code from OpenAI's baselines.

Installation

pip install easy-tf-log

Note that TensorFlow must be installed separately.

Usage

By default, easy-tf-log saves event files to a directory logs. To change the directory, call easy_tf_log.set_dir(log_dir).

easy-tf-log also supports writing using an existing EventFileWriter created by e.g. an instance of tf.summary.FileWriter: call easy_tf_log.set_writer(file_writer.event_writer).

To log a value, use tflog(key, value).

See demo.py for a full demo.

Tests

CircleCI

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

easy_tf_log-1.4.tar.gz (2.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page