Algorithm to define similarity rating between objects
Project description
FindSimilar
User-friendly library to find similar objects
To Get Acquainted
- To be familiar with FindSimilar, try our Demo Project
- Or if you like swagger try Demo Project API directly
- You can also visit our Official website
Mission Statement
The mission of the "Find Similar" 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.
Key Objectives
- Extensibility: We strive to build a flexible framework that goes beyond textual comparisons, with plans to expand compatibility to various data formats, including images, audio, and more.
- Ease of Integration: Our library will offer an intuitive interface that integrates seamlessly into existing applications and workflows, making it accessible to developers regardless of their experience level.
- Scalability: Our focus is on creating efficient algorithms and data structures that can handle datasets of varying sizes, ensuring performance and accuracy as the project scales.
- Community Collaboration: By embracing the principles of open source development, we invite a diverse community of contributors to collaborate, improve, and innovate upon the project, fostering a culture of shared knowledge and expertise.
- Documentation and Education: We are committed to providing comprehensive documentation, tutorials, and resources to help users and contributors understand the library's capabilities and use them effectively.
- Privacy and Ethics: As we expand into various data types, we are dedicated to upholding privacy and ethical considerations, ensuring that our library is built and used responsibly.
Join Us
We invite developers, data scientists, and enthusiasts from all backgrounds to join our mission. Together, we can shape the future of "Find Similar," creating a powerful tool that enhances decision-making, discovery, and innovation across diverse fields.
Open Source Collaboration
"FindSimilar" is an open source project, fostering collaboration and innovation. We welcome contributors from all backgrounds to join us in shaping the future of similarity comparisons across various data types.
To Get Involved
Get start with:
Installation:
From PyPi
pip install find-similar
You install core package from pypi. If you want to use tests and laboratory you can install find-similar from python package
From python package
git clone https://github.com/findsimilar/find-similar
pip3 install wheel
python find-similar/setup.py bdist_wheel
pip3 install find-similar/dist/*
Usage example:
Simple usage
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)
expected result:
one two
0.5
three four
0.5
two three
0.0
Development
- find_similar - this is the main package to install and use
- analytics - help functions to improve the main algorithm
- lab - python scripts to research
Lab
You can run any useful script from lab package
cd lab
- Use load_data_from_file.py to load test data
python load_data_from_file.py /my/path/to/file.xlsx
- Use check_total_rating.py to analyze algorithm accuracy
python check_total_rating.py
Example result:
Поиск выполнен для 529 позиций:
топ 1 -- 353 (66.73 %)
топ 5 -- 442 (83.55 %)
топ 10 -- 468 (88.47 %)
топ 25 -- 501 (94.71 %)
топ 50 -- 515 (97.35 %)
топ 100 -- 519 (98.11 %)
топ 500 -- 523 (98.87 %)
топ 1000 -- 529 (100.0 %)
топ 2000 -- 529 (100.0 %)
- Use check_time_one_item to check how long time algorithm works for one item
python check_time_one_item.py
Example result:
Load base items...
1999 items loaded
RESULT TIME FOR ONE ITEM (REPEAT 1 times) = 0.03772415800085582
- Use compare_two to compare two different texts. You can change texts in compare_two.txt file
python compare_two.py
- Use tokenize_one to check how one text will be tokenized. You can set the text in tokenize_one.txt file
python tokenize_one.py
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file find-similar-1.2.1.tar.gz
.
File metadata
- Download URL: find-similar-1.2.1.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b165b3188a53afaff87c58a6fa23f6c070bb0f920270c80b4a9a15a914cb3a7 |
|
MD5 | 0b7b5e174c8fe08dbf227b7d1829231e |
|
BLAKE2b-256 | 9a5d4520c617fce0d9baeeefff7182fcebad576686d5a63d11368381eb5cdf79 |
Provenance
File details
Details for the file find_similar-1.2.1-py3-none-any.whl
.
File metadata
- Download URL: find_similar-1.2.1-py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5b800fe7c5439ff2fe7aaaebb4024f13c9bcdb8cc27e2b50d338bca8cfe99c6 |
|
MD5 | 00d0c14472efce9853d5d17a1b638410 |
|
BLAKE2b-256 | 914d28b149ba87afdad1aa7910fbb3af5eb4b8fdfce41d374f8bd38036e84281 |