We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
embeddings = inference(model, val, batch_size=4, num_workers=0) rr = RetrievalResults.from_embeddings(embeddings, val, n_items=3) embeddings_upd = PCA()(embeddings) rr_upd = RetrievalResults.from_embeddings(embeddings_upd, val, n_items=3) # after that we compare results visually and/or by metrics
Check if it boosts metrics on one of our benchmarks. Check how much the retrieval time is improved.
Write a shor report below the example on the same Doc's page.
PS. OML already has a PCA implementation, so, no need to bring an extra requirement.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Check if it boosts metrics on one of our benchmarks. Check how much the retrieval time is improved.
Write a shor report below the example on the same Doc's page.
PS. OML already has a PCA implementation, so, no need to bring an extra requirement.
The text was updated successfully, but these errors were encountered: