Dima
06/14/2023, 8:04 PMdrop_tokens_threshold>0
if it is only two words in the query. Usually two-words queries are meaningful only if both words are present in result. Right now we use something like query.split(' ').length < 2 ? drop_tokens_threshold = 0 : drop_tokens_threshold = 1
, but I’m unsure about our simple tokenizator. Maybe it’s a good parameter to add it into API directly?Jason Bosco
06/14/2023, 8:09 PMJason Bosco
06/14/2023, 8:09 PMDima
06/14/2023, 8:10 PMJason Bosco
06/14/2023, 8:12 PMDima
06/14/2023, 8:12 PM