find-similar Code
User-friendly library to find similar objects
Status: Beta
Brought to you by:
quillcraftsman
User-friendly library to find similar objects
You can find Full Project Documentation here
First you can try our DEMO WEBAPP for a quick introduction to the find-similar
The mission of the FindSimilar project is to provide a powerful and versatile open source library that empowers
developers to efficiently find similar objects and perform comparisons across a variety of data types.
Whether dealing with texts, images, audio, or more,
our project aims to simplify the process of identifying similarities and enhancing decision-making.
This is the open source project with MIT license.
Be free to use, fork, clone and contribute.
Find similar texts
pip install find-similar
See more in Full Documentation
from find_similar import find_similar
texts = ['one two', 'two three', 'three four']
text_to_compare = 'one four'
result = find_similar(text_to_compare, texts, count=10)
for item in result:
print(item.text)
print(item.cos)
You are welcome! To easy start please check: