Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/geyang/visdom_helper
- Owner: geyang
- Created: 2017-04-06T03:23:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-04-08T04:55:56.000Z (over 7 years ago)
- Last Synced: 2024-04-13T21:27:20.361Z (9 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 Dashboardvis = 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)
```