Anthony Young

Results 4 comments of Anthony Young

There are some pretrained object detection models here: https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/detection_model_zoo.md I previously wrote some instructions on getting ssd_mobilenet to work here: https://github.com/oracle/graphpipe/issues/9 You may have to adjust input/output names for your...

which graphpipe server are you using?

You can do it with remote.execute_multi: ``` from graphpipe import remote import numpy as np x = np.array([0, 1]).astype(np.int32) y = np.array([0, 1]).astype(np.int32) result = remote.execute_multi("http://127.0.0.1:9000", [x, y], None, None)...

https://github.com/oracle/graphpipe-py/pull/5 < perhaps this is worth considering