From 8bd9a894b3f01693e72085650af9fc3dcd8cf19f Mon Sep 17 00:00:00 2001 From: FlyingQianMM <245467267@qq.com> Date: Thu, 13 Aug 2020 16:54:04 +0800 Subject: [PATCH] fix error in docs --- docs/deploy/server/python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deploy/server/python.md b/docs/deploy/server/python.md index 36e8d46..08571b2 100644 --- a/docs/deploy/server/python.md +++ b/docs/deploy/server/python.md @@ -27,7 +27,7 @@ import paddlex as pdx predictor = pdx.deploy.Predictor('./inference_model') image_list = ['xiaoduxiong_test_image/JPEGImages/WeChatIMG110.jpeg', 'xiaoduxiong_test_image/JPEGImages/WeChatIMG111.jpeg'] -result = predictor.predict(image_list=image_list) +result = predictor.batch_predict(image_list=image_list) ``` * 视频流预测 -- GitLab