Kaixhin / torch-pastalog

A Torch interface for pastalog - simple, realtime visualization of neural network training performance

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

torch-pastalog

A Torch interface for pastalog - simple, realtime visualization of neural network training performance. Requires a running pastalog server.

Installation

luarocks install https://raw.githubusercontent.com/Kaixhin/torch-pastalog/master/rocks/pastalog-scm-1.rockspec

Usage

See the pastalog installation instructions for details on how to set up and start the pastalog Node.js server. Once running:

local pastalog = require 'pastalog'

--[[
      Machine learning code
--]]

-- API is pastalog(modelName, seriesName, value, step, [url])
pastalog('model1', 'validLoss', 2.5, 1)
pastalog('model1', 'validLoss', 2.5, 1, 'http://localhost:8120/data')

About

A Torch interface for pastalog - simple, realtime visualization of neural network training performance

License:MIT License


Languages

Language:Lua 100.0%