Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
This repository was archived by the owner on May 1, 2019. It is now read-only.
/crayonPublic archive

A language-agnostic interface to TensorBoard

License

NotificationsYou must be signed in to change notification settings

torrvision/crayon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Crayon is a framework that gives you access to the visualisation powerofTensorBoard withany language. Currently it provides a Python and a Lua interface, howeveryou can easily implement a wrapper around theprovidedRESTful API.


This system is composed of two parts:

  • A server running on a given machine that will be used to display tensorboardand store all the data.
  • A client embedded inside your code that will send the datas to the server.

Note that the server and the clientdo not have to be on the same machine.

Install

Server machine

The machine that will host the server needs tohavedocker installed. The server is completelypackaged inside a docker container. To get it, run:

$ docker pull alband/crayon

Client machine

The client machine only need to install the client for the required language.Detailed instructions can be read by nagivating totheirrespective directories.

TL;DR:

  • Lua / Torch -$ luarocks install crayon
  • Python 2 -$ pip install pycrayon
  • Python 3 -$ pip3 install pycrayon

Usage

Server machine

To start the server, run the following:

$ docker run -d -p 8888:8888 -p 8889:8889 --name crayon alband/crayon

Tensorboard is now accessible on a browser atserver_machine_address:8888. Theclient should send the data atserver_machine_address:8889.

Client

See the documentation for the required language:


[8]ページ先頭

©2009-2025 Movatter.jp