3
3
// This makes the output more predictable which is helpful here.
4
4
5
5
6
- reranker using a single field
6
+ reranker using a single field, overwrite existing _score column
7
7
required_capability: rerank
8
8
required_capability: match_operator_colon
9
9
10
10
FROM books METADATA _score
11
11
| WHERE title:"war and peace" AND author:"Tolstoy"
12
- | RERANK "war and peace" ON title WITH test_reranker
13
- | KEEP book_no, title, author
12
+ | SORT _score DESC, book_no ASC
13
+ | RERANK "war and peace" ON title WITH inferenceId=test_reranker
14
+ | EVAL _score=ROUND(_score, 2)
15
+ | KEEP book_no, title, author, _score
14
16
;
15
17
16
- book_no:keyword | title:text | author:text
17
- 5327 | War and Peace | Leo Tolstoy
18
- 4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy]
19
- 9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo
20
- 2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy
18
+ book_no:keyword | title:text | author:text | _score:double
19
+ 5327 | War and Peace | Leo Tolstoy | 0.08
20
+ 4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.03
21
+ 9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.03
22
+ 2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.02
23
+ ;
24
+
25
+ reranker using a single field, create a mew column
26
+ required_capability: rerank
27
+ required_capability: match_operator_colon
28
+
29
+ FROM books METADATA _score
30
+ | WHERE title:"war and peace" AND author:"Tolstoy"
31
+ | SORT _score DESC, book_no ASC
32
+ | RERANK "war and peace" ON title WITH inferenceId=test_reranker, scoreColumn=rerank_score
33
+ | EVAL _score=ROUND(_score, 2), rerank_score=ROUND(rerank_score, 2)
34
+ | KEEP book_no, title, author, rerank_score
35
+ ;
36
+
37
+ book_no:keyword | title:text | author:text | rerank_score:double
38
+ 5327 | War and Peace | Leo Tolstoy | 0.08
39
+ 4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.03
40
+ 9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.03
41
+ 2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.02
42
+ ;
43
+
44
+ reranker using a single field, create a mew column, sort by rerank_score
45
+ required_capability: rerank
46
+ required_capability: match_operator_colon
47
+
48
+ FROM books METADATA _score
49
+ | WHERE title:"war and peace" AND author:"Tolstoy"
50
+ | SORT _score DESC
51
+ | RERANK "war and peace" ON title WITH inferenceId=test_reranker, scoreColumn=rerank_score
52
+ | EVAL _score=ROUND(_score, 2), rerank_score=ROUND(rerank_score, 2)
53
+ | SORT rerank_score, _score ASC, book_no ASC
54
+ | KEEP book_no, title, author, rerank_score
55
+ ;
56
+
57
+ book_no:keyword | title:text | author:text | rerank_score:double
58
+ 2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.02
59
+ 9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.03
60
+ 4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.03
61
+ 5327 | War and Peace | Leo Tolstoy | 0.08
21
62
;
22
63
23
64
@@ -27,15 +68,17 @@ required_capability: match_operator_colon
27
68
28
69
FROM books METADATA _score
29
70
| WHERE title:"war and peace" AND author:"Tolstoy"
30
- | RERANK "war and peace" ON title, author WITH test_reranker
31
- | KEEP book_no, title, author
71
+ | RERANK "war and peace" ON title, author WITH inferenceId=test_reranker
72
+ | EVAL _score=ROUND(_score, 2)
73
+ | SORT _score DESC, book_no ASC
74
+ | KEEP book_no, title, author, _score
32
75
;
33
76
34
- book_no:keyword | title:text | author:text
35
- 5327 | War and Peace | Leo Tolstoy
36
- 9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo
37
- 2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy
38
- 4536 | War and Peace (Signet Classics ) | [John Hockenberry, Leo Tolstoy, Pat Conroy]
77
+ book_no:keyword | title:text | author:text | _score:double
78
+ 5327 | War and Peace | Leo Tolstoy | 0.02
79
+ 2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.01
80
+ 4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.01
81
+ 9032 | War and Peace: A Novel (6 Volumes ) | Tolstoy Leo | 0.01
39
82
;
40
83
41
84
@@ -45,16 +88,18 @@ required_capability: match_operator_colon
45
88
46
89
FROM books METADATA _score
47
90
| WHERE title:"war and peace" AND author:"Tolstoy"
48
- | SORT _score DESC
91
+ | SORT _score DESC, book_no ASC
49
92
| LIMIT 3
50
- | RERANK "war and peace" ON title WITH test_reranker
51
- | KEEP book_no, title, author
93
+ | RERANK "war and peace" ON title WITH inferenceId=test_reranker
94
+ | EVAL _score=ROUND(_score, 2)
95
+ | SORT _score DESC, book_no ASC
96
+ | KEEP book_no, title, author, _score
52
97
;
53
98
54
- book_no:keyword | title:text | author:text
55
- 5327 | War and Peace | Leo Tolstoy
56
- 4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy]
57
- 9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo
99
+ book_no:keyword | title:text | author:text | _score:double
100
+ 5327 | War and Peace | Leo Tolstoy | 0.08
101
+ 4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.03
102
+ 9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.03
58
103
;
59
104
60
105
@@ -64,15 +109,17 @@ required_capability: match_operator_colon
64
109
65
110
FROM books METADATA _score
66
111
| WHERE title:"war and peace" AND author:"Tolstoy"
67
- | RERANK "war and peace" ON title WITH test_reranker
68
- | KEEP book_no, title, author
112
+ | RERANK "war and peace" ON title WITH inferenceId=test_reranker
113
+ | EVAL _score=ROUND(_score, 2)
114
+ | SORT _score DESC, book_no ASC
115
+ | KEEP book_no, title, author, _score
69
116
| LIMIT 3
70
117
;
71
118
72
- book_no:keyword | title:text | author:text
73
- 5327 | War and Peace | Leo Tolstoy
74
- 4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy]
75
- 9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo
119
+ book_no:keyword | title:text | author:text | _score:double
120
+ 5327 | War and Peace | Leo Tolstoy | 0.08
121
+ 4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.03
122
+ 9032 | War and Peace: A Novel (6 Volumes) | Tolstoy Leo | 0.03
76
123
;
77
124
78
125
@@ -82,16 +129,17 @@ required_capability: match_operator_colon
82
129
83
130
FROM books
84
131
| WHERE title:"war and peace" AND author:"Tolstoy"
85
- | RERANK "war and peace" ON title WITH test_reranker
86
- | KEEP book_no, title, author
132
+ | RERANK "war and peace" ON title WITH inferenceId=test_reranker
133
+ | EVAL _score=ROUND(_score, 2)
134
+ | KEEP book_no, title, author, _score
87
135
| SORT author, title
88
136
| LIMIT 3
89
137
;
90
138
91
- book_no:keyword | title:text | author:text
92
- 4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy]
93
- 2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy
94
- 5327 | War and Peace | Leo Tolstoy
139
+ book_no:keyword | title:text | author:text | _score:double
140
+ 4536 | War and Peace (Signet Classics) | [John Hockenberry, Leo Tolstoy, Pat Conroy] | 0.03
141
+ 2776 | The Devil and Other Stories (Oxford World's Classics) | Leo Tolstoy | 0.02
142
+ 5327 | War and Peace | Leo Tolstoy | 0.08
95
143
;
96
144
97
145
@@ -105,12 +153,14 @@ FROM books METADATA _id, _index, _score
105
153
| FORK ( WHERE title:"Tolkien" | SORT _score, _id DESC | LIMIT 3 )
106
154
( WHERE author:"Tolkien" | SORT _score, _id DESC | LIMIT 3 )
107
155
| RRF
108
- | RERANK "Tolkien" ON title WITH test_reranker
156
+ | RERANK "Tolkien" ON title WITH inferenceId=test_reranker
157
+ | EVAL _score=ROUND(_score, 2)
158
+ | SORT _score DESC, book_no ASC
109
159
| LIMIT 2
110
- | KEEP book_no, title, author
160
+ | KEEP book_no, title, author, _score
111
161
;
112
162
113
- book_no:keyword | title:keyword | author:keyword
114
- 5335 | Letters of J R R Tolkien | J.R.R. Tolkien
115
- 2130 | The J. R. R. Tolkien Audio Collection | [Christopher Tolkien, John Ronald Reuel Tolkien]
163
+ book_no:keyword | title:keyword | author:keyword | _score:double
164
+ 5335 | Letters of J R R Tolkien | J.R.R. Tolkien | 0.04
165
+ 2130 | The J. R. R. Tolkien Audio Collection | [Christopher Tolkien, John Ronald Reuel Tolkien] | 0.03
116
166
;
0 commit comments