Skip to main content

A little api library for a TensorObserver server

Project description

tensor-observer

Simple PHP Server to keep track of current machine learning trainings.

  1. Install a little api library
    pip install tensor-observer
  1. push the following files to your server and maintain the folder structure
  • index.php
  • php/*
  • assets/*
  • and create a "data" folder
  1. create an object of the API
from tensor-observer import TensorObserver

to_api = TensorObserver('http://localhost:8080')
  1. push your scalars during training by
to_api.scalar(self, scalar, run, tag, step, wall_time=None)

This method performs a http post request to save a scalar value from the training process.

Args:

  • scalar: number that should be saved
  • run: run identifier
  • tag: tag of the scalar
  • step: step id
  • wall_time: if not specified, current time is taken
  1. wrap your script in a try catch block to push exceptions
to_api.exception(self, e, run, wall_time=None)

This method performs a http post request to notify that an exception happend.

Args:

  • e: Exception object
  • run: run identifier
  • wall_time: if not specified, current time is taken
  1. send a end signal at the end to mark a run as terminated
to_api.end_signal(self, run, wall_time=None)

This method performs a http post request to notify that the run terminated

Args:

  • run: run identifier
  • wall_time: if not specified, current time is taken
  1. have fun!

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

tensor_observer-0.0.4.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

tensor_observer-0.0.4-py3-none-any.whl (15.6 kB view hashes)

Uploaded Python 3

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