これは私が、私はこのチュートリアルを使用して設定tensorflowサーバーを照会するために作成されたC#クライアントのスニップです:https://tensorflow.github.io/serving/serving_inception.htmlC#でTensorProtoを作成するには?
var channel = new Channel("TFServer:9000", ChannelCredentials.Insecure);
var request = new PredictRequest();
request.ModelSpec = new ModelSpec();
request.ModelSpec.Name = "inception";
var imgBuffer = File.ReadAllBytes(@"sample.jpg");
ByteString jpeg = ByteString.CopyFrom(imgBuffer, 0, imgBuffer.Length);
var jpgeproto = new TensorProto();
jpgeproto.StringVal.Add(jpeg);
jpgeproto.Dtype = DataType.DtStringRef;
request.Inputs.Add("images", jpgeproto); // new TensorProto{TensorContent = jpeg});
PredictionClient client = new PredictionClient(channel);
私はほとんどのクラスは、protoc
を使用してプロトファイルから生成するために必要なことが判明私が見つけることができないのは、TensorProtoを構築する方法だけです。追加情報:Status(StatusCode = InvalidArgument、Detail = "テンソル解析エラー:画像")
サンプルクライアント(https://github.com/tensorflow/serving/blob/master/tensorflow_serving/example/inception_client.py)があります。私のPythonのスキルは最後のビットを理解するのに十分ではありません。
私はあなたと同じ問題をJavaで持っています。解決策が見つかると更新されます。 – Kellen