Re: [protobuf] Protobuf Binary Size

2018-12-03 Thread Roy Barda
Thank you Adam for the detailed suggestion. 1. Can you please let me know what was the addition in KB/MB of protobuf usage when you linked it statically to your Android code? 2. Using libprotobuf-lite blocks me from using the "stream" modifier (streaming feature) in gRPC, anyway to work around

Re: [protobuf] tensorflow native data

2018-12-03 Thread Philipp Kraus
Hello, there, I already asked this question in the Tensorflow group and there I was referred to Protocol Buffer. But my question is still unanswered there. Tensorflow itself already generates the appropriate data for me, I just have to be able to read it out manually. See the discussion at

Re: [protobuf] Protobuf Binary Size

2018-12-03 Thread 'Adam Cozzette' via Protocol Buffers
Do you plan to link statically or dynamically against the protobuf library? If you can link against it statically, I think you may find that the linker is able to remove a lot of unused code. For Android (which is an environment where we care a lot about code size), what we generally do is: - Use

Re: [protobuf] tensorflow native data

2018-12-03 Thread 'Adam Cozzette' via Protocol Buffers
You might want to reach out to the TensorFlow folks with your question. I haven't really worked with TensorFlow much myself but it sounds to me like what you're asking is more about TensorFlow than protobuf. On Mon, Dec 3, 2018 at 2:54 PM Philipp Kraus < philipp.kraus.flashp...@gmail.com> wrote:

Re: [protobuf] Create proto file in Java

2018-12-03 Thread Derek Perez
Yes: https://github.com/perezd/protopoet On Mon, Dec 3, 2018 at 1:07 PM X X wrote: > Hi, > > It is possible to create new proto file using java language? for example, > he wants to create such a file: > > message example { > string name > uint32 number > int16

[protobuf] tensorflow native data

2018-12-03 Thread Philipp Kraus
Hello, there, I am currently working with Tensorflow for the first time and as far as I know Tensorflow uses Protocol Buffers to store the data. I work on IoT devices in a protected network and I have to deliver the data of a Tensorflow DNNClassifier to external systems. These may be

Re: [protobuf] wrong spelling on Python API reference

2018-12-03 Thread 'Nathaniel Manista' via Protocol Buffers
It looks like that problem has been fixed , but the fix just hasn't yet been published. I think issue 4498 tracks that the currently-published

Re: [protobuf] how to decode "any" field in ruby

2018-12-03 Thread 'Bo Yang' via Protocol Buffers
Do you mean json format or binary format? On Mon, Dec 3, 2018 at 4:02 AM Olindo Pindaro wrote: > Hi to all, i am updating a protobuffer deconde/encode plugin for logstash > to support decoding of com.google.Any fields. > > I search docs but i found very few support to do it. Could someone help

[protobuf] Create proto file in Java

2018-12-03 Thread X X
Hi, It is possible to create new proto file using java language? for example, he wants to create such a file: message example { string name uint32 number int16 secondNumber } it would be best to imagine an object framework. -- You received this message because

[protobuf] how to decode "any" field in ruby

2018-12-03 Thread Olindo Pindaro
Hi to all, i am updating a protobuffer deconde/encode plugin for logstash to support decoding of com.google.Any fields. I search docs but i found very few support to do it. Could someone help me with docs or code fragment to clone. Thanks to All /Olindo -- You received this message because