日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

QueryProcessor

描述

opensearch 應用版本的查詢意圖理解規則

示例

{
    "name": "qp_lsh_test_1",
    "domain": "GENERAL",
    "processors": [{
        "name": "stop_word",
        "use_system_dictionary": true,
        "intervention_dictionary": ""
    }],
    "indexes": [
        "default"
    ],
    "active": true
}

結構

字段

類型

描述

name

String

規則名稱(數字、小寫英文字母或下劃線組成,小寫字母開頭,長度不超過16位)

domain

String

行業類型- GENERAL 通用- ECOMMERCE 電商- IT_CONTENT IT內容

processors[]

Object

包含功能具體說明查看下文:Processor

indexes

Array

應用的索引范圍

active

Boolean

是否默認規則

Processor

示例:

{
        "name": "stop_word",
        "use_system_dictionary": true,
        "intervention_dictionary": ""
}

結構

字段

類型

描述

name

String

功能名稱- stop_word 停用詞- spell_check 拼寫檢查- term_weighting 詞權重- synonym 同義詞- category_prediction 類目預測- ner 實體識別

use_system_dictionary

Boolean

是否使用系統內置詞典

intervention_dictionary

String

干預詞典名稱

類目預測

示例:

{
        "name": "stop_word",
        "categoryPrediction": 12345,
        "projectId": 12346
}

結構

字段

類型

描述

name

String

功能名稱- category_prediction 類目預測

categoryPrediction

Integer

類目預測模型ID

projectId

Integer

算法工程ID

實體識別

示例:

{
    "name": "stop_word",
    "use_system_dictionary": true,
    "intervention_dictionary": "",
    "priorities": [{
        "priority": "HIGH",
        "tag": "test",
        "order": 1
    }]
}

結構

字段

類型

描述

name

String

功能名稱- ner 實體識別

use_system_dictionary

Boolean

是否使用系統內置詞典

intervention_dictionary

String

干預詞典名稱

priorities[]

Object

實體類型重要性設置

priorities[].priority

String

重要性- HIGH- MIDDLE- LOW

priorities[].tag

String

實體類型的內部英文表示

priorities[].order

Integer

在同一個priority下的排序順序優先順序按照數字從小到大,默認為0