Skip to content

Commit 4a444ce

Browse files
authored
release 1.8.3rc0 (#429)
* release 1.8.3rc0 * update links for examples
1 parent da15d54 commit 4a444ce

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Examples can be found [in this folder](https://github.com/zsdonghao/tensorlayer/
8585
- VGG 19 (ImageNet). Classification task, see [tutorial_vgg19.py](https://github.com/zsdonghao/tensorlayer/blob/master/example/tutorial_vgg19.py).
8686
- InceptionV3 (ImageNet). Classification task, see [tutorial\_inceptionV3_tfslim.py](https://github.com/zsdonghao/tensorlayer/blob/master/example/tutorial_inceptionV3_tfslim.py).
8787
- SqueezeNet (ImageNet). Classification task, see [tutorial_squeezenet.py](https://github.com/zsdonghao/tensorlayer/blob/master/example/tutorial_squeezenet.py)
88-
- BinaryNet (MNIST). Classification task, see [tutorial_squeezenet.py](https://github.com/tensorlayer/tensorlayer/blob/master/example/tutorial_binarynet_mnist_cnn.py)
88+
- BinaryNet (MNIST). Classification task, see [tutorial_binarynet_mnist_cnn.py](https://github.com/tensorlayer/tensorlayer/blob/master/example/tutorial_binarynet_mnist_cnn.py)
8989
- Wide ResNet (CIFAR) by [ritchieng](https://github.com/ritchieng/wideresnet-tensorlayer).
9090
- More CNN implementations of [TF-Slim](https://github.com/tensorflow/models/tree/master/research/slim) can be connected to TensorLayer via SlimNetsLayer.
9191
- [Spatial Transformer Networks](https://arxiv.org/abs/1506.02025) by [zsdonghao](https://github.com/zsdonghao/Spatial-Transformer-Nets).

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@
6767
# built documents.
6868
#
6969
# The short X.Y version.
70-
version = '1.8.2'
70+
version = '1.8.3rc0'
7171
# The full version, including alpha/beta/rc tags.
72-
release = '1.8.2'
72+
release = '1.8.3rc0'
7373

7474
# The language for content autogenerated by Sphinx. Refer to documentation
7575
# for a list of supported languages.
@@ -143,7 +143,7 @@
143143
# The name for this set of Sphinx documents.
144144
# "<project> v<release> documentation" by default.
145145
#
146-
# html_title = 'TensorLayer v1.8.2'
146+
# html_title = 'TensorLayer v1.8.3rc0'
147147

148148
# A shorter title for the navigation bar. Default is the same as html_title.
149149
#

docs/user/example.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Computer Vision
2222
- VGG 19 (ImageNet). Classification task, see `tutorial_vgg19.py <https://github.com/zsdonghao/tensorlayer/blob/master/example/tutorial_vgg19.py>`_.
2323
- InceptionV3 (ImageNet). Classification task, see `tutorial_inceptionV3_tfslim.py <https://github.com/zsdonghao/tensorlayer/blob/master/example/tutorial_inceptionV3_tfslim.py>`_.
2424
- SqueezeNet (ImageNet). Classification task, see `tutorial_squeezenet.py <https://github.com/zsdonghao/tensorlayer/blob/master/example/tutorial_squeezenet.py>`_.
25-
- BinaryNet (MNIST). Classification task, see `tutorial_squeezenet.py <https://github.com/tensorlayer/tensorlayer/blob/master/example/tutorial_binarynet_mnist_cnn.py>`_.
25+
- BinaryNet (MNIST). Classification task, see `tutorial_binarynet_mnist_cnn.py <https://github.com/tensorlayer/tensorlayer/blob/master/example/tutorial_binarynet_mnist_cnn.py>`_.
2626
- Wide ResNet (CIFAR) by `ritchieng <https://github.com/ritchieng/wideresnet-tensorlayer>`_.
2727
- More CNN implementations of `TF-Slim <https://github.com/tensorflow/models/tree/master/research/slim>`_ can be connected to TensorLayer via SlimNetsLayer.
2828
- `Spatial Transformer Networks <https://arxiv.org/abs/1506.02025>`_ by `zsdonghao <https://github.com/zsdonghao/Spatial-Transformer-Nets>`__.

example/tutorial_inceptionV3_tfslim.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ def print_prob(prob):
132132
img1 = load_image("data/puzzle.jpeg") # test data in github: https://github.com/zsdonghao/tensorlayer/tree/master/example/data
133133
img1 = img1.reshape((1, 299, 299, 3))
134134

135+
prob = sess.run(probs, feed_dict={x: img1}) # the 1st time need time to compile
135136
start_time = time.time()
136137
prob = sess.run(probs, feed_dict={x: img1})
137138
print("End time : %.5ss" % (time.time() - start_time))

example/tutorial_squeezenet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def squeezenet(x, is_train=True, reuse=False):
113113

114114
img = tl.vis.read_image('data/tiger.jpeg', '')
115115
img = tl.prepro.imresize(img, (224, 224))
116-
prob = sess.run(softmax, feed_dict={x: [img]})[0]
116+
prob = sess.run(softmax, feed_dict={x: [img]})[0] # the 1st time need time to compile
117117
start_time = time.time()
118118
prob = sess.run(softmax, feed_dict={x: [img]})[0]
119119
print(" End time : %.5ss" % (time.time() - start_time))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="tensorlayer",
13-
version="1.8.2",
13+
version="1.8.3rc0",
1414
include_package_data=True,
1515
author='TensorLayer Contributors',
1616
author_email='[email protected]',

tensorlayer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
act = activation
2424
vis = visualize
2525

26-
__version__ = "1.8.2"
26+
__version__ = "1.8.3rc0"
2727

2828
global_flag = {}
2929
global_dict = {}

0 commit comments

Comments
 (0)