Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/illagrenan/tensorflow-serving-api-python3
**UNOFFICIAL and redistributed** TensorFlow Serving API libraries for Python3. See DEPRECATION WARNING in README.
https://github.com/illagrenan/tensorflow-serving-api-python3
python3 tensorflow tensorflow-serving tensorflow-serving-api
Last synced: about 1 month ago
JSON representation
**UNOFFICIAL and redistributed** TensorFlow Serving API libraries for Python3. See DEPRECATION WARNING in README.
- Host: GitHub
- URL: https://github.com/illagrenan/tensorflow-serving-api-python3
- Owner: illagrenan
- Created: 2018-02-06T09:25:53.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-16T11:30:21.000Z (over 6 years ago)
- Last Synced: 2024-12-14T20:22:43.355Z (about 2 months ago)
- Topics: python3, tensorflow, tensorflow-serving, tensorflow-serving-api
- Language: Python
- Homepage:
- Size: 38.1 KB
- Stars: 28
- Watchers: 5
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
------------
🚧🚨 **THIS PACKAGE HAS BEEN DEPRECATED** 🚨🚧
``tensorflow-seving-api==1.9.0`` (https://pypi.org/project/tensorflow-serving-api/1.9.0/#files) is now correctly distributed with Python3 classifiers on PyPI. **Use official package** for ``tensorflow>=1.9.0`` and this package for ``tensorflow>=1.4.0,<=1.8.0``.
More useful info can be found here: https://github.com/illagrenan/tensorflow-serving-api-python3/issues/6
------------
=========================================================
*UNOFFICIAL* TensorFlow Serving API libraries for Python3
=========================================================+----------------+-----------------------------------------------------------------------------------------------------------------------------------+
| Latest release | .. image:: https://img.shields.io/pypi/v/tensorflow-serving-api-python3.svg?style=flat-square |
| | :target: https://pypi.python.org/pypi/tensorflow-serving-api-python3 |
| | :alt: PyPi |
| | |
| | .. image:: https://img.shields.io/pypi/implementation/tensorflow-serving-api-python3.svg?style=flat-square |
| | :target: https://pypi.python.org/pypi/tensorflow-serving-api-python3/ |
| | :alt: Supported Python implementations |
| | |
| | .. image:: https://img.shields.io/pypi/pyversions/tensorflow-serving-api-python3.svg?style=flat-square |
| | :target: https://pypi.python.org/pypi/tensorflow-serving-api-python3/ |
| | :alt: Supported Python versions |
+----------------+-----------------------------------------------------------------------------------------------------------------------------------+
| CI | .. image:: https://img.shields.io/travis/illagrenan/tensorflow-serving-api-python3.svg?logo=travis&style=flat-square |
| | :target: https://travis-ci.org/illagrenan/tensorflow-serving-api-python3 |
| | :alt: TravisCI |
+----------------+-----------------------------------------------------------------------------------------------------------------------------------+Installation
------------Supported Python versions are: ``3.5`` and ``3.6``.
.. code:: shell
pip install --upgrade tensorflow-serving-api-python3
Supported versions of Tensorflow
--------------------------------+-----------------------+---------------------------------------------------------+----------------------------------------------------------------------------------------+
| Tensorflow version | Serving API version | Link to original serving package |
+-----------------------+---------------------------------------------------------+----------------------------------------------------------------------------------------+
| ``tensorflow~=1.4.0`` | ``pip install 'tensorflow-serving-api-python3~=1.4.0'`` | `https://pypi.org/.../1.4.0 `_ |
+-----------------------+---------------------------------------------------------+----------------------------------------------------------------------------------------+
| ``tensorflow~=1.5.0`` | ``pip install 'tensorflow-serving-api-python3~=1.5.0'`` | `https://pypi.org/.../1.5.0 `_ |
+-----------------------+---------------------------------------------------------+----------------------------------------------------------------------------------------+
| ``tensorflow~=1.6.0`` | ``pip install 'tensorflow-serving-api-python3~=1.6.0'`` | `https://pypi.org/.../1.6.0 `_ |
+-----------------------+---------------------------------------------------------+----------------------------------------------------------------------------------------+
| ``tensorflow~=1.7.0`` | ``pip install 'tensorflow-serving-api-python3~=1.7.0'`` | `https://pypi.org/.../1.7.0 `_ |
+-----------------------+---------------------------------------------------------+----------------------------------------------------------------------------------------+
| ``tensorflow~=1.8.0`` | ``pip install 'tensorflow-serving-api-python3~=1.8.0'`` | `https://pypi.org/.../1.8.0 `_ |
+-----------------------+---------------------------------------------------------+----------------------------------------------------------------------------------------+Why?
----Official Serving package (https://pypi.python.org/pypi/tensorflow-serving-api) is marked as Python2-only although it **supports** Python3 (therefore you cannot ``pip3 install tensorflow-serving-api``). This has been discussed in this thread: https://github.com/tensorflow/serving/issues/700 (unfortunately, the proposal for publishing the Python3 package was rejected).
This package **is only redistribution**: I only downloaded Python2 ``.whl`` from the PyPI, extracted it and added my ``setup.py`` with Python3 support.