일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Kafka
- sort
- Python
- 파이썬
- springboot
- API
- token filter test
- analyzer test
- ELASTIC
- zip 암호화
- license delete
- MySQL
- matplotlib
- 900gle
- Test
- licence delete curl
- aggs
- 차트
- Mac
- License
- Java
- aggregation
- TensorFlow
- plugin
- flask
- zip 파일 암호화
- high level client
- docker
- query
- Elasticsearch
Archives
- Today
- Total
개발잡부
[es8] similarity modules 본문
반응형
#DFR
PUT /index
{
"settings": {
"index": {
"similarity": {
"my_similarity": {
"type": "DFR",
"basic_model": "g",
"after_effect": "l",
"normalization": "h2",
"normalization.h2.c": "3.0"
}
}
}
}
}
#BM25
PUT /index
{
"settings": {
"index": {
"similarity": {
"bm25_similarity": {
"type": "BM25",
"k1": "1",
"b": "1",
"discount_overlaps": "true"
}
}
}
}
}
#DFI
PUT /index
{
"settings": {
"index": {
"similarity": {
"bm25_similarity": {
"type": "DFI",
"independence_measure": "chisquared"
}
}
}
}
}
#IB
PUT /index
{
"settings": {
"index": {
"similarity": {
"bm25_similarity": {
"type": "IB",
"distribution": "spl",
"lambda": "df",
"normalization": "h2",
"normalization.h2.c": "3.0"
}
}
}
}
}
#LM Dirichlet
PUT /index
{
"settings": {
"index": {
"similarity": {
"bm25_similarity": {
"type": "LMDirichlet",
"mu": "2000"
}
}
}
}
}
PUT /index/_mapping
{
"properties" : {
"title" : { "type" : "text", "similarity" : "my_similarity" }
}
}
반응형
'ElasticStack8 > Elasticsearch' 카테고리의 다른 글
[es8] elasticsearch stable-esplugin (0) | 2023.05.21 |
---|---|
[es8] Elasticsearch Plugin 8.6.2 (0) | 2023.05.20 |
[es] _explain (0) | 2023.05.09 |
[es8] ignore_malformed (0) | 2023.01.23 |
[es8] index 와 shard 사이즈 (0) | 2022.10.06 |
Comments