-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathupdate-plugin.sh
executable file
·27 lines (27 loc) · 1.07 KB
/
update-plugin.sh
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
#!/bin/bash
curl -X POST -H 'Content-type:application/json' http://localhost:8983/solr/qaindex/config -d '{
"add-requesthandler": {
"name": "/anserini",
"class": "com.elsevier.asp.AnseriniRequestHandler",
"defaults": {
"sim" : "bm",
"qtype" : "bow",
"rtype" : "rm3",
"rerankCutoff" : "50",
"sdm.termWeight" : "0.85",
"sdm.orderedWindowWeight" : "0.1",
"sdm.unorderedWindowWeight" : "0.05",
"rm3.fbTerms" : "10",
"rm3.fbDocs" : "10",
"rm3.originalQueryWeight" : "0.5",
"ax.R" : "20",
"ax.N" : "20",
"ax.K" : "1000",
"ax.M" : "30",
"ax.beta" : "0.4",
"start" : "0",
"rows" : "10",
"fl" : "pii,isbns_f,book_title,chapter_title,para_id,para_text"
}
}
}'