Giter Site home page Giter Site logo

sconce's Introduction

sconce

Sconce is a dashboard for monitoring and comparing data in real time. It was built to be an easy way to visualize the training progress of different machine learning models.

Usage

To start, create a sconce Job with a name and (optionally) parameters. Jobs with the same name will be displayed together, so you can see how different parameters affect results.

import sconce

# Create a sconce job with a name and parameters
job = sconce.Job('my-neural-network', {
    'n_layers': 6,
    'hidden_size': 250,
    'learning_rate': 0.001
})

To plot data, call job.record(x, y). Instead of posting every data point, Sconce will average the values and plot them every plot_every calls.

# Record x, y values
for x in range(1000):
    y = train()
    job.record(x, y)

Then visit http://sconce.prontotype.us/jobs/my-neural-network to view your results in real time.

Configuration

If you want more or less granularity, change job.plot_every and job.print_every:

job.plot_every = 10
job.print_every = 100

Private jobs

TODO: Register for an account and API key at http://sconce.prontotype.us/ to create private boards.

sconce.login('spro', 'asdf1234uiop5768')

sconce's People

Contributors

spro avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.