未验证 提交 462d6b5b 编写于 作者: Z zl1271 提交者: GitHub

Update serving.md

参数名应为“text”而非“texts”,否则 api 会报错

{
    "msg": "cut() got an unexpected keyword argument 'texts'",
    "results": "",
    "status": "101"
}
上级 7cac5ece
......@@ -167,7 +167,7 @@ if __name__ == "__main__":
text = ["今天是个好日子", "天气预报说今天要下雨"]
# 以key的方式指定text传入预测方法的时的参数,此例中为"data"
# 对应本地部署,则为lac.analysis_lexical(data=text, batch_size=1)
data = {"texts": text, "batch_size": 1}
data = {"text": text, "batch_size": 1}
# 指定预测方法为lac并发送post请求,content-type类型应指定json方式
url = "http://127.0.0.1:8866/predict/lac"
# 指定post请求的headers为application/json方式
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册