Skip to main content

Protobuf files from TensorFlow and TensorFlow-Serving

Project description

TensorFlow Protobuf

Imagine you want to talk to your model deployed with TF-Serving using gPRC and protobuf.

To convert your NumPy array, you'd need to use make_tensor_proto function:

import tensorflow as tf

def np_to_protobuf(data):
    return tf.make_tensor_proto(data, shape=data.shape)

Boom - you have a 2 GB dependency to deal with!

This project takes only the part you actually need for that: the protobuf files (compiled).

With it, your code will look like that:

from tensorflow.core.framework import tensor_pb2, tensor_shape_pb2, types_pb2


def dtypes_as_dtype(dtype):
    if dtype == "float32":
        return types_pb2.DT_FLOAT
    raise Exception("dtype %s is not supported" % dtype)


def make_tensor_proto(data):
    shape = data.shape
    dims = [tensor_shape_pb2.TensorShapeProto.Dim(size=i) for i in shape]
    proto_shape = tensor_shape_pb2.TensorShapeProto(dim=dims)

    proto_dtype = dtypes_as_dtype(data.dtype)

    tensor_proto = tensor_pb2.TensorProto(dtype=proto_dtype, tensor_shape=proto_shape)
    tensor_proto.tensor_content = data.tostring()

    return tensor_proto


def np_to_protobuf(data):
    if data.dtype != "float32":
        data = data.astype("float32")
    return make_tensor_proto(data)

A bit more verbose, but without the 2GB baggage.

See a full example here: example.py

Have fun!

Building and compiling it

To see how we extract and compile the protobuf files, check tf-serving-proto.sh.

To use it:

TF_VERSION="2.3.0" ./tf-serving-proto.sh

PyPI

The package is available on PyPI

pip install tensorflow-protobuf==2.3.0

Publishing on PyPI

export TF_VERSION=2.3.0
echo ${TF_VERSION} > .version

python -m venv env
source env/bin/activate

./tf-serving-proto.sh

pip install wheel twine



rm -rf tensorflow_protobuf.egg-info/
build/ dist/ __pycache__/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tensorflow-protobuf-2.3.0.tar.gz (121.7 kB view details)

Uploaded Source

Built Distribution

tensorflow_protobuf-2.3.0-py3-none-any.whl (204.3 kB view details)

Uploaded Python 3

File details

Details for the file tensorflow-protobuf-2.3.0.tar.gz.

File metadata

  • Download URL: tensorflow-protobuf-2.3.0.tar.gz
  • Upload date:
  • Size: 121.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for tensorflow-protobuf-2.3.0.tar.gz
Algorithm Hash digest
SHA256 8d5e50870468d60e964736804d95f8a2d8813b6213cd6070733f2d6fdd6d4cd1
MD5 a7f6624fde4b02283191aba6fabf0970
BLAKE2b-256 4788450f0156b04aa99b238e73e191827fc1d2fb24e4042b6d58c5d7bb18e799

See more details on using hashes here.

File details

Details for the file tensorflow_protobuf-2.3.0-py3-none-any.whl.

File metadata

  • Download URL: tensorflow_protobuf-2.3.0-py3-none-any.whl
  • Upload date:
  • Size: 204.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for tensorflow_protobuf-2.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 73feedd6d6427854a02bce269e6cfb19e93b08e978e445c056bbded7b66ad56a
MD5 1ef6c0c892777da2ee8d46f054ba85a0
BLAKE2b-256 40f83794ddd73fa87c508ce49f8e8aa378d0cf06edd7cd300bfc2ddf79a33a15

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page