Skip to content

Commit

Permalink
closes #80
Browse files Browse the repository at this point in the history
  • Loading branch information
lanpa committed Feb 21, 2018
1 parent 3da4e2f commit 45a0626
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
History
=======
1.1 (2018-02-21)
-----------------
* Supports pytorch 0.3.1 (hacky)

1.0 (2018-01-18)
-----------------
* Supports graph (the pretty one)

0.9 (2017-11-11)
Expand Down
4 changes: 2 additions & 2 deletions demo_embedding.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def forward(self, i):
i = F.max_pool2d(i, 2)
i = i.view(len(i), -1)
i = self.fc1(i)
i = F.log_softmax(i)
i = F.log_softmax(i, dim=1)
return i

#get some random data around value
Expand Down Expand Up @@ -80,4 +80,4 @@ def get_data(value, shape):

# tensorboard --logdir runs
# you should now see a dropdown list with all the timestep,
# last timestep should have a visible separation between the two classes
# last timestep should have a visible separation between the two classes
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup(
name='tensorboardX',
version='1.0',
version='1.1',
description='TensorBoardX lets you watch Tensors Flow without Tensorflow',
long_description= history,
author='Tzu-Wei Huang',
Expand All @@ -46,5 +46,5 @@
tests_require=test_requirements
)

# python setup.py sdist bdist_wheel --universal upload
# python setup.py sdist bdist_wheel --universal
# twine upload dist/*

0 comments on commit 45a0626

Please sign in to comment.