I asked a question What is the ...?
using /fcselect
handler without ranker ID and got the following docs :
"docs": [
{"id": "100"}, // ranked first
{"id": "101"}, // ranked second
...
{"id": "198"}, // ranked second from last (99th)
{"id": "199"} // ranked last (100th)
]
Then, I created a ranker using the following ground truth:
What is the ...?,199,5,198,4
...
Then, I asked the *same question* using /fcselect
handler with the ranker and got the following docs:
"docs": [
{"id": "100"}, // ranked first
{"id": "101"}, // ranked second
...
{"id": "199"}, // ranked 30th
...
{"id": "198"} // ranked 35th
...
]
but I expect like the following order:
"docs": [
{"id": "199"}, // ranked first
{"id": "198"}, // ranked second
{"id": "100"}, // ranked third
{"id": "101"} // ranked 4th
...
]
Is the ranker properly trained?