Closed johndpope closed 7 years ago
@johndpope Hi John,
auto generated java files for tensorflow serving. Add runme.sh to auto scaffold classes.
I did autogenerate necessary java files. This client uses only one API for image classificaition and hence only one file InceptionInference.java is generated from .proto files.
Was there a reason why you couldn't leverage the java grpc classes? I suspect if you subclassed the inference class - then it would simplify your implementation.
Checkout the InceptionBlockingStub.java
there I have class InceptionBlockingStub extends AbstractStub<InceptionBlockingStub>
then it would simplify your implementation
I am not sure about that but interested to check it out. I appreciate if you could send a new PR that shows simplification by deleting the existing code rather than adding new 402 files!
auto generated java files for tensorflow serving. Add runme.sh to auto scaffold classes.
Was there a reason why you couldn't leverage the java grpc classes?
I suspect if you subclassed the inference class - then it would simplify your implementation.