'settings':{
'analysis':{
'analyzer':{
'my_analyzer':{
"type": "custom",
'tokenizer':'nori_tokenizer',
'decompound_mode':'mixed',
'stopwords':'_korean_',
"filter": ["lowercase",
"my_shingle_f",
"nori_readingform"]
}
},
'filter':{
'my_shingle_f':{
"type":"shingle",
'min_shingle_size':2,
'max_shingle_size':3,
'output_unigrams':True
}
}
},
'similarity':{
'my_similarity':{
'type':'BM25',
}
}
},
'filter':{
'my_shingle_f':{
"type": "nGram"
}
}
query = {
'query':{
'bool':{
'must':[
{'match':{'text':test_dataset['question'][num]}}
],
'should':[
{'match':{'text':test_dataset['question'][num]}}
]
}
}
}
오늘보다 더 성장한 내일의 저를 기대하며, 내일 뵙도록 하겠습니다.
읽어주셔서 감사합니다!