June 2021 Summaries
3 posts from deepset
Filter
Month:
Year:
Post Summaries
Back to Blog
Optimizing a parameter-rich system like a Haystack question answering pipeline can significantly impact its performance, particularly the length of documents and the top_k_retriever parameter. Adjusting these parameters can speed up the system without sacrificing quality, with document length being crucial to avoid losing syntactic context and the retriever's vector computations playing a key role in determining the reader's processing time. By optimizing these parameters, developers can improve their system's speed, especially when scaling the number of queries, making it possible to get faster answers by adjusting top_k_retriever and hitting the right document length.
Jun 28, 2021
1,552 words in the original blog post.
The Virtual NAACL 2021 Conference took place with over 2500 attendees and featured more than 500 papers on recent advances in computational linguistics and natural language processing. Researchers presented various topics such as reformulating tasks with masked language models, relevant, irrelevant, and misleading documents in ranking, registered reports for slow science in NLP, word embeddings for eCommerce, dense retrieval and question answering over tables, decontextualized sentences, fill-in-the-blank paradigms, explainability and interpretability of question answering models, and the future of virtual conferences. The conference also highlighted the importance of preregistration in research, with a paper winning the Best Thematic Paper Award.
Jun 14, 2021
1,417 words in the original blog post.
Haystack is an NLP framework for building open-domain question answering systems that harness the power of BERT and other Transformer-based language models with the speed of Elasticsearch distributed storage. It enables users to create end-to-end question answering pipelines with customizable modules, including DocumentStore, Retriever, and Reader. Haystack can be used to extend Elasticsearch capabilities by using its search functionality to process natural language queries. The system has been demonstrated using a GPU-enabled cloud compute instance and Docker, and it can return answers with high confidence levels when queried about relevant topics. However, it may struggle with questions that are outside of the training data or require more complex reasoning. Haystack is designed for speed and scalability, making it suitable for applications requiring fast search and retrieval capabilities.
Jun 03, 2021
2,607 words in the original blog post.