Skip to content

Commit

Permalink
Release 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
zsdonghao committed Jun 30, 2017
1 parent 46fedb9 commit 3df125c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ TensorLayer is a deep learning and reinforcement learning library based on [Goog
# What's New
* Release [Flickr dataset loader](http://press.liacs.nl/mirflickr/mirdownload.html), see [load_flickr25k](http://tensorlayer.readthedocs.io/en/latest/modules/files.html#flickr25k) and [load_flickr1M](http://tensorlayer.readthedocs.io/en/latest/modules/files.html#flickr1m).
* Release [SpatialTransformer2dAffineLayer](http://tensorlayer.readthedocs.io/en/latest/modules/layers.html#spatial-transformer) for [Spatial Transformer Networks](https://github.com/zsdonghao/Spatial-Transformer-Nets) see [example code](https://github.com/zsdonghao/Spatial-Transformer-Nets).
* Release [Sub-pixel Convolution](http://tensorlayer.readthedocs.io/en/latest/modules/layers.html#super-resolution-layer) for Super-resolution see [SRGAN code](https://github.com/zsdonghao/SRGAN)
* Release [Sub-pixel Convolution](http://tensorlayer.readthedocs.io/en/latest/modules/layers.html#super-resolution-layer) for Super-resolution see [SRGAN code](https://github.com/zsdonghao/SRGAN).
* Join [Slack](https://join.slack.com/tensorlayer/shared_invite/MTk1MjM0NDk5MDg5LTE0OTcwOTQyNTEtODFjY2QzYjdmZQ) Now.
* [Attention Seq2seq](https://github.com/zsdonghao/tensorlayer/issues/164) help wanted.
* You can now use TensorLayer with [TF-Slim](http://tensorlayer.readthedocs.io/en/latest/modules/layers.html#connect-tf-slim) and [Keras](http://tensorlayer.readthedocs.io/en/latest/modules/layers.html#connect-keras) together!
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@
# built documents.
#
# The short X.Y version.
version = '1.5.2'
version = '1.5.3'
# The full version, including alpha/beta/rc tags.
release = '1.5.2'
release = '1.5.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -143,7 +143,7 @@
# The name for this set of Sphinx documents.
# "<project> v<release> documentation" by default.
#
# html_title = 'TensorLayer v1.5.2'
# html_title = 'TensorLayer v1.5.3'

# A shorter title for the navigation bar. Default is the same as html_title.
#
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name = "tensorlayer",
version = "1.5.2",
version = "1.5.3",
include_package_data=True,
author='TensorLayer Contributors',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion tensorlayer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
act = activation
vis = visualize

__version__ = "1.5.2"
__version__ = "1.5.3"

global_flag = {}
global_dict = {}
4 changes: 1 addition & 3 deletions tensorlayer/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,8 +536,6 @@ def load_flickr25k_dataset(tag='sky', path="data/flickr25k", n_threads=50, print
images = visualize.read_images(images_list, folder_imgs, n_threads=n_threads, printable=printable)
return images



def load_flickr1M_dataset(tag='sky', size=10, path="data/flickr1M", n_threads=50, printable=False):
"""Returns a list of images by a given tag from Flickr1M dataset,
it will download Flickr1M from `the official website <http://press.liacs.nl/mirflickr/mirdownload.html>`_
Expand All @@ -559,7 +557,7 @@ def load_flickr1M_dataset(tag='sky', size=10, path="data/flickr1M", n_threads=50
----------
- Use 200k images
>>> images = tl.files.load_flickr1M_dataset(tag='zebra', size=2)
- Use 1 Million images
>>> images = tl.files.load_flickr1M_dataset(tag='zebra')
"""
Expand Down

0 comments on commit 3df125c

Please sign in to comment.