语音转译审核
taskId
5caee6b2a76925c55a09a6d2
任务 id 的数据结构
参数名 | 类型 | 是否必有 | 说明 |
---|---|---|---|
violations | Array | 是 | 详见以下 violations 数据结构 |
text | String | 是 | 整个语音的译文 |
action | String | 是 | 是否违规,block:违规,pass:通过,review:复审 |
label | String | 是 | 违规标签 |
review | Bool | 是 | 是否复审,true:是 false:否 |
rate | Float | 是 | 吻合分数 |
violations 数据结构
注:只包含 action 为违规和复审的信息
参数名 | 类型 | 是否必有 | 说明 |
---|---|---|---|
startTime | Number | 是 | 开始时间 |
endTime | Number | 是 | 结束时间 |
content | String | 是 | 文本内容,可能为空 |
action | String | 是 | 是否违规,block:违规,pass:通过,review:复审 |
label | String | 是 | 违规标签, 具体参考识别分类值 |
review | Bool | 是 | 是否复审,true:是 false:否 |
rate | Float | 是 | 吻合分数 |
details | Array | 是 | 命中的关键词详细信息,如果 actions 为 pass,则 details 为空数组(nlp 判为违规,但未命中某个关键词也为空数组),详见以下 details 数据结构 |
speechUrl | String | 否 | 语音片段地址。默认不返还,需要返回请联系我们 |
details 数据结构
参数名 | 类型 | 是否必有 | 说明 |
---|---|---|---|
keyword | String | 否 | 命中的关键词。 1. 若命中算法模型,值为空字符串; 2. 若命中单个关键词,值为关键词字符串,例如: 习近平 ;2. 若同时命中多个关键词(组合规则),值为通过 + 拼接,且被括号包裹的字符串,例如:(加+微信) ;(A+B) 表示关键词 A 与 B 之间无顺序要求,{A+B} 表示关键词 A 与 B 之间按照出现顺序匹配 |
hint | String | 否 | 检测文本中的违规内容片段,例如原文为 那我先加您微信,发您一下 ,值为:加您微信 |
mainLabel | String | 是 | 命中的风险主标签, 具体参考识别分类值 |
subLabel | String | 否 | 关键词的次标签 |
回调数据的 json 字段示例(语音转译与文本审核):
{
"code": 0,
"message": "success",
"nonce": "0.01627771095362096",
"timestamp": 1552391372490,
"requestId": "tupu_request_id",
"roomId": "your_room_id",
"userId": "your_user_id",
"forumId": "your_forum_id",
"customInfo": {
"hello": true,
"other": "your customInfo"
},
"5caee6b2a76925c55a09a6d2": {
"label": "Politics",
"review": false,
"rate": 0.896484,
"action": "block",
"text": "毛泽东,你好",
"violations": [
{
"startTime": 12,
"endTime": 15,
"content": "毛泽东",
"action": "block",
"label": "Politics",
"review": false,
"rate": 0.896484,
"speechUrl": "http:://123.mp3",
"details": [
{
"keyword": "毛泽东",
"hint": "毛泽东",
"mainLabel": "Politics",
"subLabel": "National_Leader"
}
]
}
]
}
}