You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

package_info.py 1.0 kB

4 years ago
123456789101112131415161718192021222324
  1. #! /usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. """Deep learning and Reinforcement learning library for Researchers and Engineers."""
  4. MAJOR = 2
  5. MINOR = 2
  6. PATCH = 0
  7. PRE_RELEASE = ''
  8. # Use the following formatting: (major, minor, patch, prerelease)
  9. VERSION = (MAJOR, MINOR, PATCH, PRE_RELEASE)
  10. __shortversion__ = '.'.join(map(str, VERSION[:3]))
  11. __version__ = '.'.join(map(str, VERSION[:3])) + ''.join(VERSION[3:])
  12. __package_name__ = 'tensorlayer'
  13. __contact_names__ = 'TensorLayer Contributors'
  14. __contact_emails__ = 'tensorlayer@gmail.com'
  15. __homepage__ = 'http://tensorlayer.readthedocs.io/en/latest/'
  16. __repository_url__ = 'https://github.com/tensorlayer/tensorlayer'
  17. __download_url__ = 'https://github.com/tensorlayer/tensorlayer'
  18. __description__ = 'High Level Tensorflow Deep Learning Library for Researcher and Engineer.'
  19. __license__ = 'apache'
  20. __keywords__ = 'deep learning, machine learning, computer vision, nlp, '
  21. __keywords__ += 'supervised learning, unsupervised learning, reinforcement learning, tensorflow'

TensorLayer3.0 是一款兼容多种深度学习框架为计算后端的深度学习库。计划兼容TensorFlow, Pytorch, MindSpore, Paddle.