Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/geyang/visdom_helper

helpers for pyTorch and visdom to better impedance match.
https://github.com/geyang/visdom_helper

Last synced: about 2 months ago
JSON representation

helpers for pyTorch and visdom to better impedance match.

Awesome Lists containing this project

README

        

# Visdom-Helper [![](https://img.shields.io/badge/link_on-GitHub-brightgreen.svg?style=flat-square)](https://github.com/episodeyang/visdom_helper)

This is a simple helper class that makes the awesome `visdom` library easier to use.

### Todo
- [ ] add `pip` build chain

## Download
[ ] todo item

## Usage

First try to setup a dashboard.
```python
from visdom-helper import Dashboard

vis = Dashboard('title-of-this-dashboard')
# Now you can add plots to it.

```

Existing plots are automatically updated, indexed by name/title.
```python
vis.plot('title-of-plot/name-of-plot', 'type-of-plog', *arg, **args)
```

To update plot by appending new data
```python
vis.append('title-of-plot/name-of-plot', 'type-of-plog', *arg, **args)
```