1 / 19

Top-k Query Evaluation with Probabilistic Guarantees

This paper delves into the evaluation of top-k queries with probabilistic guarantees. It examines past algorithms, introduces new approaches, and discusses results and conclusions. The focus is on precision and relevance in top-k query search. The study evaluates various algorithms, including Fagin’s TA algorithm, TA-Random, TA-Sorted, and probabilistic threshold testing. Different progressive and smart algorithms are explored for efficient top-k query computation. The conclusion emphasizes the benefits of probabilistic score predictions for enhancing execution time without compromising result quality.

adamslois
Download Presentation

Top-k Query Evaluation with Probabilistic Guarantees

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Top-k Query Evaluation with Probabilistic Guarantees By Martin Theobald, Gerald Weikum, Ralf Schenkel

  2. Content • Problem • Past algorithms • Contribution in this paper • Approach • Differences • Results, Observation and Conclusion

  3. Relevance Searching • Interested in only one or few relevant and novel data items/links • User may not care if some the links are not that useful • Precision, the fraction of the top-k which is actually in the true topk

  4. Content • Problem • Past algorithms • Contribution in this paper • Approach • Differences • Results, Observation and Conclusion

  5. Algorithms we have learned … • Fagin’s TA algorithm • TA-Random • Problem with TA-Random, random accesses are expensive • TA-Sorted • Problem with TA-sorted, sorted indices may not be always available

  6. Content • Problem • Past algorithms • Contribution in this paper • Approach • Differences • Results, Observation and Conclusion

  7. Contribution • Probabilistic threshold testp(d) • Looking at the current seen part of the score, “What is the probability that the tuple can be in final top-k?”

  8. Content • Problem • Past algorithms • Contribution in this paper • Approach • Differences • Results, Observation and Conclusion

  9. Approach • Probabilistic score prediction • Uniform distribution • Histograms • Poisson Distributions • Approximation technique which is computationally cheaper than histograms

  10. Histogram Probability ∑ Probability = 1 0 150 Buckets and Value Ranges

  11. Algorithms • Conservative Algorithm • Aggressive Algorithm • Progressive Algorithm • Smart Algorithm

  12. Conservative Algorithm • Simply predict the scores of each candidate object in every step • Maintains priority queue for each group of unseen part • Incur very high overload for probabilistic threshold test

  13. Aggressive Algorithm • If the score of object falls below the threshold min-k the algorithm stops immediately • Minimal overhead but result precision is low

  14. Progressive Algorithm • Between conservative and aggressive • Tracks the best score changes after uniform interval • Maintains a single priority Queue

  15. Smart Algorithm • Rebuilding the entire queue is also a costly operation when the queue is large in case of big datasets • Maintains only bounded priority Queue, whenever its rebuilt only best b elements are kept

  16. Content • Problem • Past algorithms • Contribution in this paper • Approach • Differences • Results, Observation and Conclusion

  17. Experiment

  18. Conclusion • Probabilistic score predictions can be very beneficial in terms of execution time for trading for some amount of top-k result quality

More Related