-
Notifications
You must be signed in to change notification settings - Fork 391
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The raw() of DenseSearchResult and PRFDenseSearchResult #2057
Comments
Hi @Xnhyacinth thanks for opening this issue. However, the actual answer to your question is that only |
Hi, @lintool thanks for your answer. Another issue is the retrieval time. I found that it takes a large amount of time to retrieve using faiss searcher: processing 750k data requires more than 200 hours. Is this normal or do I need to optimize it somehow. |
What does "750k data" mean? What does this translate into in terms of queries per second? |
“750k data” represents 750k queries. I found that For |
I see. We haven't profiled the performance of |
hello. I wonder if this only applies to prebuilt indexes? I encounter an error
AttributeError: 'FaissSearcher' object has no attribute 'ssearcher'. Did you mean: 'search'?
when using the following code:I cannot get the raw content through
doc(doc_id)
, but executingsearcher.num_docs
is ok.I notice that
usage_fetch.md
can only provide raw content by LuceneSearcher. So do I need to index the corpus twice and load two searchers?The text was updated successfully, but these errors were encountered: