himanshu-03 / Python-Data-Structures

A compilation of Data Structures in Python. It is a collection of Python code examples and implementations of various data structures. This repository aims to provide a comprehensive resource for understanding and utilizing different data structures efficiently in Python.
MIT License
18 stars 27 forks source link

add: Affinity Propagation ALgorithm #88

Closed adi271001 closed 1 year ago

adi271001 commented 1 year ago

Describe the algorithm/code

This clustering algorithm is completely different from the others in the way that it clusters data. Each data point communicates with all of the other data points to let each other know how similar they are and that starts to reveal the clusters in the data. You don't have to tell this algorithm how many clusters to expect in the initialization parameters. Please assign me this issue with hacktoberfest tag

Do you want to work on this feature?

himanshu-03 commented 1 year ago

Hi @adi271001! 👋🏻 You can start working on this issue! Do let me know if you need any help. ✨

adi271001 commented 1 year ago

created pull request and added codes