tensorlayerx


Nametensorlayerx JSON
Version 0.5.8 PyPI version JSON
download
home_pagehttps://github.com/tensorlayer/TensorLayerX
SummaryHigh Level Tensorflow Deep Learning Library for Researcher and Engineer.
upload_time2023-02-03 07:53:22
maintainerNone
docs_urlNone
authorTensorLayer Contributors
requires_pythonNone
licenseapache
keywords deep learning
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            |TENSORLAYER-LOGO|

TensorLayerX is a deep learning library designed for researchers and engineers that is compatible with multiple deep learning frameworks such as TensorFlow,
MindSpore and PaddlePaddle, allowing users to run the code on different hardware like Nvidia-GPU and Huawei-Ascend.
It provides popular DL and RL modules that can be easily customized and assembled for tackling real-world machine learning problems.
More details can be found here. TensorLayerX will support TensorFlow, MindSpore, PaddlePaddle, and PyTorch backends in the future.

Install
=======

TensorLayerX has some prerequisites that need to be installed first, including TensorFlow ,
MindSpore, PaddlePaddle,numpy and matplotlib.For GPU support CUDA and cuDNN are required.

.. code:: bash

    # for last stable version
    pip install --upgrade tensorlayerX

    # for latest release candidate
    pip install --upgrade --pre tensorlayerX

    # if you want to install the additional dependencies, you can also run
    pip install --upgrade tensorlayerX[all]              # all additional dependencies
    pip install --upgrade tensorlayerX[extra]            # only the `extra` dependencies
    pip install --upgrade tensorlayerX[contrib_loggers]  # only the `contrib_loggers` dependencies

Alternatively, you can install the latest or development version by directly pulling from OpenI:

.. code:: bash

    pip3 install git+https://github.com/tensorlayer/TensorLayerX.git

Containers with CPU support
~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. code:: bash

    # for CPU version and Python 2
    docker pull tensorlayer/tensorlayer:latest
    docker run -it --rm -p 8888:8888 -p 6006:6006 -e PASSWORD=JUPYTER_NB_PASSWORD tensorlayer/tensorlayer:latest

    # for CPU version and Python 3
    docker pull tensorlayer/tensorlayer:latest-py3
    docker run -it --rm -p 8888:8888 -p 6006:6006 -e PASSWORD=JUPYTER_NB_PASSWORD tensorlayer/tensorlayer:latest-py3

Containers with GPU support
~~~~~~~~~~~~~~~~~~~~~~~~~~~

NVIDIA-Docker is required for these containers to work: `Project
Link <https://github.com/NVIDIA/nvidia-docker>`__

.. code:: bash

    # for GPU version and Python 2
    docker pull tensorlayer/tensorlayer:latest-gpu
    nvidia-docker run -it --rm -p 8888:88888 -p 6006:6006 -e PASSWORD=JUPYTER_NB_PASSWORD tensorlayer/tensorlayer:latest-gpu

    # for GPU version and Python 3
    docker pull tensorlayer/tensorlayer:latest-gpu-py3
    nvidia-docker run -it --rm -p 8888:8888 -p 6006:6006 -e PASSWORD=JUPYTER_NB_PASSWORD tensorlayer/tensorlayer:latest-gpu-py3


Cite
====

If you find this project useful, we would be grateful if you cite the
TensorLayer papers.

::

    @article{tensorlayer2017,
        author  = {Dong, Hao and Supratak, Akara and Mai, Luo and Liu, Fangde and Oehmichen, Axel and Yu, Simiao and Guo, Yike},
        journal = {ACM Multimedia},
        title   = {{TensorLayer: A Versatile Library for Efficient Deep Learning Development}},
        url     = {http://tensorlayer.org},
        year    = {2017}
    }
    @inproceedings{tensorlayer2021,
        title={Tensorlayer 3.0: A Deep Learning Library Compatible With Multiple Backends},
        author={Lai, Cheng and Han, Jiarong and Dong, Hao},
        booktitle={2021 IEEE International Conference on Multimedia \& Expo Workshops (ICMEW)},
        pages={1--3},
        year={2021},
        organization={IEEE}
    }

License
=======

TensorLayerX is released under the Apache 2.0 license.

.. |TENSORLAYER-LOGO| image:: https://git.openi.org.cn/hanjr/tensorlayerx-image/raw/branch/master/tlx-LOGO--02.jpg
   :target: https://tensorlayerx.readthedocs.io/en/latest/
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/tensorlayer/TensorLayerX",
    "name": "tensorlayerx",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "deep learning",
    "author": "TensorLayer Contributors",
    "author_email": "tensorlayerx@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/48/71/e63c4064685b5635d71ad1cee5fe2795e61099bdf3a6f9ddc29430aa6d2e/tensorlayerx-0.5.8.tar.gz",
    "platform": null,
    "description": "|TENSORLAYER-LOGO|\r\n\r\nTensorLayerX is a deep learning library designed for researchers and engineers that is compatible with multiple deep learning frameworks such as TensorFlow,\r\nMindSpore and PaddlePaddle, allowing users to run the code on different hardware like Nvidia-GPU and Huawei-Ascend.\r\nIt provides popular DL and RL modules that can be easily customized and assembled for tackling real-world machine learning problems.\r\nMore details can be found here. TensorLayerX will support TensorFlow, MindSpore, PaddlePaddle, and PyTorch backends in the future.\r\n\r\nInstall\r\n=======\r\n\r\nTensorLayerX has some prerequisites that need to be installed first, including TensorFlow ,\r\nMindSpore, PaddlePaddle,numpy and matplotlib.For GPU support CUDA and cuDNN are required.\r\n\r\n.. code:: bash\r\n\r\n    # for last stable version\r\n    pip install --upgrade tensorlayerX\r\n\r\n    # for latest release candidate\r\n    pip install --upgrade --pre tensorlayerX\r\n\r\n    # if you want to install the additional dependencies, you can also run\r\n    pip install --upgrade tensorlayerX[all]              # all additional dependencies\r\n    pip install --upgrade tensorlayerX[extra]            # only the `extra` dependencies\r\n    pip install --upgrade tensorlayerX[contrib_loggers]  # only the `contrib_loggers` dependencies\r\n\r\nAlternatively, you can install the latest or development version by directly pulling from OpenI:\r\n\r\n.. code:: bash\r\n\r\n    pip3 install git+https://github.com/tensorlayer/TensorLayerX.git\r\n\r\nContainers with CPU support\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\n.. code:: bash\r\n\r\n    # for CPU version and Python 2\r\n    docker pull tensorlayer/tensorlayer:latest\r\n    docker run -it --rm -p 8888:8888 -p 6006:6006 -e PASSWORD=JUPYTER_NB_PASSWORD tensorlayer/tensorlayer:latest\r\n\r\n    # for CPU version and Python 3\r\n    docker pull tensorlayer/tensorlayer:latest-py3\r\n    docker run -it --rm -p 8888:8888 -p 6006:6006 -e PASSWORD=JUPYTER_NB_PASSWORD tensorlayer/tensorlayer:latest-py3\r\n\r\nContainers with GPU support\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\nNVIDIA-Docker is required for these containers to work: `Project\r\nLink <https://github.com/NVIDIA/nvidia-docker>`__\r\n\r\n.. code:: bash\r\n\r\n    # for GPU version and Python 2\r\n    docker pull tensorlayer/tensorlayer:latest-gpu\r\n    nvidia-docker run -it --rm -p 8888:88888 -p 6006:6006 -e PASSWORD=JUPYTER_NB_PASSWORD tensorlayer/tensorlayer:latest-gpu\r\n\r\n    # for GPU version and Python 3\r\n    docker pull tensorlayer/tensorlayer:latest-gpu-py3\r\n    nvidia-docker run -it --rm -p 8888:8888 -p 6006:6006 -e PASSWORD=JUPYTER_NB_PASSWORD tensorlayer/tensorlayer:latest-gpu-py3\r\n\r\n\r\nCite\r\n====\r\n\r\nIf you find this project useful, we would be grateful if you cite the\r\nTensorLayer papers.\r\n\r\n::\r\n\r\n    @article{tensorlayer2017,\r\n        author  = {Dong, Hao and Supratak, Akara and Mai, Luo and Liu, Fangde and Oehmichen, Axel and Yu, Simiao and Guo, Yike},\r\n        journal = {ACM Multimedia},\r\n        title   = {{TensorLayer: A Versatile Library for Efficient Deep Learning Development}},\r\n        url     = {http://tensorlayer.org},\r\n        year    = {2017}\r\n    }\r\n    @inproceedings{tensorlayer2021,\r\n        title={Tensorlayer 3.0: A Deep Learning Library Compatible With Multiple Backends},\r\n        author={Lai, Cheng and Han, Jiarong and Dong, Hao},\r\n        booktitle={2021 IEEE International Conference on Multimedia \\& Expo Workshops (ICMEW)},\r\n        pages={1--3},\r\n        year={2021},\r\n        organization={IEEE}\r\n    }\r\n\r\nLicense\r\n=======\r\n\r\nTensorLayerX is released under the Apache 2.0 license.\r\n\r\n.. |TENSORLAYER-LOGO| image:: https://git.openi.org.cn/hanjr/tensorlayerx-image/raw/branch/master/tlx-LOGO--02.jpg\r\n   :target: https://tensorlayerx.readthedocs.io/en/latest/",
    "bugtrack_url": null,
    "license": "apache",
    "summary": "High Level Tensorflow Deep Learning Library for Researcher and Engineer.",
    "version": "0.5.8",
    "split_keywords": [
        "deep",
        "learning"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c78d34b97e3f06a0277db9a2362a35ac7b932393b3d236f0c4d7469d884577f6",
                "md5": "041ba877e9544860fc9809b859f7609f",
                "sha256": "b9c82cdbdbad9d08f8ab2ec20c78b1954176a26422df3bb42c44102637e1b80c"
            },
            "downloads": -1,
            "filename": "tensorlayerx-0.5.8-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "041ba877e9544860fc9809b859f7609f",
            "packagetype": "bdist_wheel",
            "python_version": "3.6",
            "requires_python": null,
            "size": 532315,
            "upload_time": "2023-02-03T07:53:46",
            "upload_time_iso_8601": "2023-02-03T07:53:46.042415Z",
            "url": "https://files.pythonhosted.org/packages/c7/8d/34b97e3f06a0277db9a2362a35ac7b932393b3d236f0c4d7469d884577f6/tensorlayerx-0.5.8-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4871e63c4064685b5635d71ad1cee5fe2795e61099bdf3a6f9ddc29430aa6d2e",
                "md5": "9b0a80b62a0ac5fb1e5d91f2d82f4672",
                "sha256": "6f318fdd2ccc7aaf214d217e32ddf0fa08f7ee467830e44505677064b95d9056"
            },
            "downloads": -1,
            "filename": "tensorlayerx-0.5.8.tar.gz",
            "has_sig": false,
            "md5_digest": "9b0a80b62a0ac5fb1e5d91f2d82f4672",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 396581,
            "upload_time": "2023-02-03T07:53:22",
            "upload_time_iso_8601": "2023-02-03T07:53:22.193486Z",
            "url": "https://files.pythonhosted.org/packages/48/71/e63c4064685b5635d71ad1cee5fe2795e61099bdf3a6f9ddc29430aa6d2e/tensorlayerx-0.5.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-02-03 07:53:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "tensorlayer",
    "github_project": "TensorLayerX",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "tensorlayerx"
}
        
Elapsed time: 0.18600s