Hacker News new | past | comments | ask | show | jobs | submit login
Everything You Can Do with 5M Vectors (myscale.com)
2 points by Bella-Xiang 79 days ago | hide | past | favorite | 3 comments



Curious about the MSTG algorithm. How does it boost accuracy and speed in vector searches?


MSTG combines the best parts of both hierarchical graph and tree structures in its design.

A graph algorithm excels at initial convergence, and is usually faster at unfiltered search. However, its efficiency is severely hampered in filtered search. On the other hand, tree algorithms are slower and have lower accuracy for unfiltered search, but tree traversal is unaffected by filtered elements and retains performance for filtered search, as illustrated in the figure below. Therefore, combining these two algorithms in MSTG yields high performance and high accuracy for both cases and achieves fast index build time.

You can learn more from this blog: https://myscale.com/blog/optimizing-filtered-vector-search/


Interesting

what if I am not familiar with SQL but would like to leverage this tool more smoothly?




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: