Questions tagged [protobuf-python]

64 questions
0
votes
1 answer

How to fix Import object_detection/protos/image_resizer.proto but not used

I have an issue when I try to compile Protobuf to use TensorFlow Object Detection API. I'm following this tutorial: https://github.com/Khaivdo/How-to-train-an-Object-Detector-using-Tensorflow-API-on-Ubuntu-16.04-GPU In the command line I tried to…
0
votes
1 answer

Changing protobuf field type from double to float

I have a proto message I'm using in a service to store data in various places My message is like this: message Matrix { double width = 1; double height = 2; repeated double entries = 3; } My team has decided that the Matrix message is too…
viswavi
  • 3
  • 1
  • 3
0
votes
1 answer

URL decode and deserialization fails

Using Protocol Buffer I serialize data and transfer it by adding it as a parameter to HTTP GET requests being sent to Flask. The deserialization of the data sometimes fails depending on the content of the parameters (e.g. if the url parameter…
TrackerSB
  • 317
  • 6
  • 19
0
votes
1 answer

python: problem importing protobuf generated files

I'm testing files generated by protobuf for use with python. The problem that I'm hitting is that protobuf is separating the generated python files in directories and then I have problems with the imports with python2. Say, I have directories common…
eftshift0
  • 26,375
  • 3
  • 36
  • 60
1 2 3 4
5