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.

__init__.py 855 B

5 years ago
12345678910111213141516171819202122232425262728
  1. #! /usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. """
  4. TensorLayer provides rich layer implementations trailed for
  5. various benchmarks and domain-specific problems. In addition, we also
  6. support transparent access to native TensorFlow parameters.
  7. For example, we provide not only layers for local response normalization, but also
  8. layers that allow user to apply ``tf.ops.lrn`` on ``network.outputs``.
  9. More functions can be found in `TensorFlow API <https://www.tensorflow.org/versions/master/api_docs/index.html>`__.
  10. """
  11. from .base_dense import *
  12. from .binary_dense import *
  13. from .dorefa_dense import *
  14. from .dropconnect import *
  15. from .quan_dense import *
  16. from .quan_dense_bn import *
  17. from .ternary_dense import *
  18. __all__ = [
  19. 'BinaryDense',
  20. 'Dense',
  21. 'DorefaDense',
  22. 'DropconnectDense',
  23. 'TernaryDense',
  24. 'QuanDense',
  25. 'QuanDenseWithBN',
  26. ]

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