Skip to content

Commit

Permalink
updates pip version and fixed #25
Browse files Browse the repository at this point in the history
  • Loading branch information
lanpa committed Sep 25, 2017
1 parent 65dff02 commit 5d78cf3
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ install:
script:
- pytest
# Your test script goes here
# - pip uninstall -y tensorboardX
# - pip install tensorboardX
# - pytest
- pip uninstall -y tensorboardX
- pip install tensorboardX
- pytest
10 changes: 10 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
History
=======
0.8 (2017-09-25)
-----------------
* Package name renamed to tensorboardX to fix namespace confliction with tensorflow's tensorboard
* Supports multi-scalars and JSON export
* Multiple Embeddings in One Experiment
* Supports Chainer and mxnet

* fixed incorrect image<->label pairing in embedding function (#12)
* unifies API call and adds docstring. Documentation is available at: http://tensorboard-pytorch.readthedocs.io/

0.7 (2017-08-22)
-----------------
* remove tensorflow dependency for embedding function
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Build Status](https://travis-ci.org/lanpa/tensorboard-pytorch.svg?branch=master)](https://travis-ci.org/lanpa/tensorboard-pytorch)
[![PyPI version](https://badge.fury.io/py/tensorboard-pytorch.svg)](https://badge.fury.io/py/tensorboard-pytorch)
[![PyPI version](https://badge.fury.io/py/tensorboardX.svg)](https://badge.fury.io/py/tensorboardX)
[![Downloads](https://img.shields.io/badge/pip--downloads-5K+-brightgreen.svg)](https://bigquery.cloud.google.com/savedquery/966219917372:edb59a0d70c54eb687ab2a9417a778ee)
# tensorboard-pytorch

Expand All @@ -13,7 +13,7 @@ see [demo](http:35.197.26.245:6006) (result of `demo.py` and some images generat

`#tested on anaconda2/anaconda3, pytorch 0.2, torchvision 0.1.9`

`pip install tensorboard-pytorch`
`pip install tensorboardX`
`pip install tensorflow-tensorboard` (for tensorboard web server)

or build from source:
Expand All @@ -29,9 +29,7 @@ import torchvision.utils as vutils
import numpy as np
import torchvision.models as models
from torchvision import datasets
from tensorboard import SummaryWriter
# if error, uninstall tensorboard-pytorch and install tensorboardX
# then use: from tensorboardX import SummaryWriter see:#20
from tensorboardX import SummaryWriter

resnet18 = models.resnet18(False)
writer = SummaryWriter()
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup(
name='tensorboardX',
version='0.7.5',
version='0.8',
description='TensorBoardX lets you watch Tensors Flow without Tensorflow',
long_description= history,
author='Tzu-Wei Huang',
Expand Down

0 comments on commit 5d78cf3

Please sign in to comment.