姓名抽取
從自然文本中抽取姓名片段。
測試
您可以在地址標(biāo)準(zhǔn)化產(chǎn)品控制臺進行API測試。
請求參數(shù)
名稱 | 類型 | 是否必選 | 示例值 | 描述 |
Action | String | 是 | ExtractName | 系統(tǒng)規(guī)定參數(shù)。取值:ExtractName。 |
AppKey | String | 是 | Axqwerasdf1a | 項目AppKey |
ServiceCode | String | 是 | addrp | 固定值:addrp |
Text | String | 是 | 文一西路969號張小明 | 包含一個或多個姓名的一段自然文本 |
DefaultProvince | String | 否 | 浙江省 | 默認省份 |
DefaultCity | String | 否 | 杭州市 | 默認城市 |
DefaultDistrict | String | 否 | 余杭區(qū) | 默認行政區(qū) |
返回數(shù)據(jù)
名稱 | 類型 | 示例值 | 描述 |
Data | String | {"person_extract":[{"start":8,"end":11,"type":"PER","word":"張小明"}],"time_used":{"rt":{"person_extract":"0.013421058654785156"},"start":"1589799959.7144244"},"status":"OK"} | start:原文中字段起始位置 end:原文中字段結(jié)束位置 type:字段類型,PER是指person,姓名 word:識別出的實體字段 time_used:算法處理耗時 status:狀態(tài) |
RequestId | String | 3A9AB010-AC38-4E53-9D25-6B97238C2897 | RequestId |
示例
請求示例
http(s)://[Endpoint]/?Action=ExtractName
&AppKey=Axqwerasdf1a
&ServiceCode=addrp
&Text=文一西路969號張小明
&<公共請求參數(shù)>
正常返回示例
XML
格式
<RequestId>3A9AB010-AC38-4E53-9D25-6B97238C2897</RequestId>
<Data>
<person_extract>
<start>8</start>
<end>11</end>
<type>PER</type>
<word>張小明</word>
</person_extract>
<time_used>
<rt>
<person_extract>0.013421058654785156</person_extract>
</rt>
<start>1589799959.7144244</start>
</time_used>
<status>OK</status>
</Data>
JSON
格式
{
"RequestId": "3A9AB010-AC38-4E53-9D25-6B97238C2897",
"Data": {
"person_extract": [
{
"start": 8,
"end": 11,
"type": "PER",
"word": "張小明"
}
],
"time_used": {
"rt": {
"person_extract": "0.013421058654785156"
},
"start": "1589799959.7144244"
},
"status": "OK"
}
}
錯誤碼
HttpCode | 錯誤碼 | 錯誤信息 | 描述 |
403 | Forbidden.NoAuth | Failed to perform user authentication. | 用戶鑒權(quán)失敗 |
500 | InternalError | A service error occurred. | 服務(wù)內(nèi)部異常 |
400 | InvalidParameter | The parameter is invalid. | 參數(shù)無效 |
404 | ResourceDoesNotExist | The resource does not exist. | 資源不存在 |
429 | Throttling.User | Flow control has been triggered. | 觸發(fā)流控 |
400 | UserStatusInvalid | The user status is invalid. | 用戶狀態(tài)無效 |
訪問錯誤中心查看更多錯誤碼。