blotch

Publication Quality Plotting Utilities for Machine Learning


Keywords
blotch, visualization, publication, plot
Install
pip install blotch==0.0.0

Documentation

Alice, real-time piping console outputs to the web

Examples

python train_lstm.py | alice --path $USER/$JOB_ID

now on https://alice.io/username/job_id, you will be able to see the console at real time.

Installation

I am currently waiting for theĀ pypiĀ package nameĀ alice.

pip install alice

before then, you can install directly from this git repo

pip install git+https://github.com/geyang/alice.git

Configurations

There are a few ways to configureĀ alice. Through command line:

usage: alice [-h] [--path PATH] [-q] [-i IP] [--port PORT] [-d DELAY]
             [-u USERNAME] [--token TOKEN]

optional arguments:
  -h, --help            show this help message and exit
  --path                specify the path to log to on the server
  -q, --quiet           disable stdin pass-through
  -i, --ip              host
  --port                server port
  -d, --delay           delay before starting to send data
  -u, --username        username for the server
  --token               access_token

Through environment variables, you can add the following to your ~/.profile.

export ALICE_USERNAME=""
export ALICE_TOKEN=""
export ALICE_HOST=localhost
export ALICE_PORT=l337