January 2018
Intermediate to advanced
310 pages
7h 48m
English
Install the Protocol Buffers (protobuf) compiler with the following commands. Create a directory for protobuf and download the library directly:
mkdir protoc_3.3cd protoc_3.3wget https://github.com/google/protobuf/releases/download/v3.3.0/protoc-3.3.0-linux-x86_64.zip
Change the permission of the folder and extract the contents, as shown here:
chmod 775 protoc-3.3.0-linux-x86_64.zipunzip protoc-3.3.0-linux-x86_64.zip
Protocol Buffers (protobuf) is Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data. It serves the use of XML but is much simpler and faster. The models are usually exported to this format in TensorFlow. One can define the data structure once but can be read ...
Read now
Unlock full access