最近更新时间:2021-03-12
命名实体识别又称作“专名识别”,是指识别文本中具有特定意义的实体,主要包括人名、地名、机构名、时间、数词等。
调用地址:https://apim.unicloud.com/api/nlp/namedentity/1.0.0/
请求方式:POST
返回类型:JSON
Header如下:
参数 | 值 | 说明 |
---|---|---|
Content-Type | application/json | -- |
Authorization | Bearer | 参考Token获取 |
Body如下:
参数 | 是否必选 | 类型 | 可选值范围 | 说明 |
---|---|---|---|---|
text | true | string | - | 待分析文本,长度建议不超过1000个汉字,超过上限则报错 |
注:Body是raw-json格式
curl -H "Authorization:Bearer 2735fbc9-b797-31ad-812c-d8e9e903f6e3" \ -H "Content-Type:application/json" \ -d '{"text": "交大学生明天去上海看周杰伦的演唱会"}' \ https://apim.unicloud.com/api/nlp/namedentity/1.0.0/
curl -H "Authorization:Bearer 2735fbc9-b797-31ad-812c-d8e9e903f6e3" \ -H "Content-Type:application/json" \ -d '{"text": "交大学生明天去上海看周杰伦的演唱会"}' \ https://apim.unicloud.com/api/nlp/namedentity/1.0.0/
curl -H "Authorization:Bearer 2735fbc9-b797-31ad-812c-d8e9e903f6e3" -H "Content-Type:application/json" -d '{"text": "交大学生明天去上海看周杰伦的演唱会"}' https://apim.unicloud.com/api/nlp/namedentity/1.0.0/
字段 | 类型 | 说明 |
---|---|---|
data | dict | 返回结果数据 |
+text | string | 待分析文本 |
+namedentity | array of objects | 命名实体识别结果数组 |
++ne | string | 实体 |
++offset | int | 实体起始位置 |
++length | int | 实体长度 |
++type | string | 实体类型。包括ORG(机构名),PER(人名),LOC(地点),TIM(时间点)。 |
++subtype | string | 实体子类型 |
code | int | 返回码: 0表示成功 1001表示错误的命令请求格式:如JSON格式错误 2000 表示请求的操作超时终止:如模块处理超时 2001 表示未执行请求的操作:如文本超过指定长度 |
message | string | 返回信息 |
{ "data": { "text": "交大学生明天去上海看周杰伦的演唱会", "namedentity": [ { "ne": "上海", "offset": 7, "length": 2, "type": "LOC", "subType": "CITY" }, { "ne": "交大", "offset": 0, "length": 2, "type": "ORG", "subType": "SCHOOL" }, { "ne": "明天", "offset": 4, "length": 2, "type": "TIM", "subType": "TIM" }, { "ne": "周杰伦", "offset": 10, "length": 3, "type": "PER", "subType": "PER" } ] }, "code": 0, "message": "success" }
{
"data": {
"text": "交大学生明天去上海看周杰伦的演唱会",
"namedentity": [
{
"ne": "上海",
"offset": 7,
"length": 2,
"type": "LOC",
"subType": "CITY"
},
{
"ne": "交大",
"offset": 0,
"length": 2,
"type": "ORG",
"subType": "SCHOOL"
},
{
"ne": "明天",
"offset": 4,
"length": 2,
"type": "TIM",
"subType": "TIM"
},
{
"ne": "周杰伦",
"offset": 10,
"length": 3,
"type": "PER",
"subType": "PER"
}
]
},
"code": 0,
"message": "success"
}
{ "data": { "text": "交大学生明天去上海看周杰伦的演唱会", "namedentity": [
{ "ne": "上海", "offset": 7, "length": 2, "type": "LOC", "subType": "CITY"
},
{ "ne": "交大", "offset": 0, "length": 2, "type": "ORG", "subType": "SCHOOL"
},
{ "ne": "明天", "offset": 4, "length": 2, "type": "TIM", "subType": "TIM"
},
{ "ne": "周杰伦", "offset": 10, "length": 3, "type": "PER", "subType": "PER"
}
]
}, "code": 0, "message": "success"}
标签 | 释义 | 举例说明 |
---|---|---|
PER | 人名 | 王蒙、刘教授 |
LOC | 地点 | 天安门、南京 |
TIM | 时间点 | 昨天、两点半 |
ORG | 机构名 | 北京大学、华为 |