From a1a5a4824e6e4633627f086e4673fbd6fbe69c94 Mon Sep 17 00:00:00 2001 From: Ryuheeeei <38094415+Ryuheeeei@users.noreply.github.com> Date: Fri, 3 Jan 2025 08:43:18 +0900 Subject: [PATCH] docs(api_rest.md): json key of regress/classify response is results --- tensorflow_serving/g3doc/api_rest.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow_serving/g3doc/api_rest.md b/tensorflow_serving/g3doc/api_rest.md index 8edd1d3acbc..9cbc403d54f 100644 --- a/tensorflow_serving/g3doc/api_rest.md +++ b/tensorflow_serving/g3doc/api_rest.md @@ -127,7 +127,7 @@ follows: ```javascript { - "result": [ + "results": [ // List of class label/score pairs for first Example (in request) [ [, ], [, ], ... ], @@ -148,7 +148,7 @@ follows: ```javascript { // One regression value for each example in the request in the same order. - "result": [ , , , ...] + "results": [ , , , ...] } ```