A python library for link prediction in social networks
Project description
Complex Network Link Prediction
Complex Network Link Prediction is a python library that implements some of the main techniques and algorithms to perform link predictions.
This library, implemented in python, allows you to use some of the main algorithms and methods to perform link predictions. It was designed to carry out these tasks in Complex Networks and, specifically, in Social Networks. Each method has its own specific documentation available on the official documentation page, where it is possible to see the required parameters and the output of the method itself.
The methods are distinguished by belonging to categories and subcategories, below is an example image with all the categories.
The speed of computation differs both from the type of method and from the input graph. However, for convention and efficiency, we have chosen to use the csr_matrix
sparse matrix structure from the scipy library in each algorithm.
Install
pip install complex-network-link-prediction
How to use
import networkx as nx
import matplotlib.pyplot as plt
from cnlp.similarity_methods.local_similarity import common_neighbors
from cnlp.utils import nodes_to_indexes, get_top_predicted_link
G = nx.karate_club_graph()
name_index_map = list(nodes_to_indexes(G).items())
predicted_adj_matrix_common_neighbors = common_neighbors(G)
new_links = get_top_predicted_link(predicted_adj_matrix_common_neighbors, G.number_of_nodes(), pct_new_link=5, name_index_map=name_index_map, verbose=True)
You can also check this project to see a real case study for Social Network Analysis and link prediction, with the use of our Python Library.
Contribute 💥
As there are still many methods to implement and, at the same time, maintaining a library takes up a lot of time, we are always happy to accept new willing and able people to contribute and support our project.
If you want to contribute or you've found a bug, you can open a Pull Request.
Check this tutorial if you want to use our preferred Workflow 🦍 for developing.
Otherwise you can open a normal Pull Request using git
and help us to make this project even better!
Help ❓
If you encounter any bug or you have some problem with this package you can open an issue to report it, we will resolve that asap.
Building From Source
Download the repository and run:
pip install -e .
Dependencies
If your system does not have some or all of this requirements they will be installed during the istallation of the library
- networkx
- scipy
- numpy
References
- Ajay Kumar, Shashank Sheshar Singh, Kuldeep Singh, Bhaskar Biswas. 2020. Link prediction techniques, applications, and performance: A survey Physica A: Statistical Mechanics and its Applications, ISSN 0378-4371, https://doi.org/10.1016/j.physa.2020.124289.
- David Liben-Nowell and Jon Kleinberg. 2003. The link prediction problem for social networks In Proceedings of the twelfth international conference on Information and knowledge management (CIKM '03). Association for Computing Machinery, New York, NY, USA, 556–559, https://doi.org/10.1145/956863.956972.
- Víctor Martínez, Fernando Berzal, and Juan-Carlos Cubero. 2016. A Survey of Link Prediction in Complex Networks ACM Comput. Surv. 49, 4, Article 69 (December 2017), 33 pages. https://doi.org/10.1145/3012704
Authors
Cristian Cosci 🐔 | Nicolò Vescera 🦧 | Fabrizio Fagiolo 🐛 | Tommaso Romani 🦍 | Nicolò Posta 🐒 |
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file complex-network-link-prediction-1.3.tar.gz
.
File metadata
- Download URL: complex-network-link-prediction-1.3.tar.gz
- Upload date:
- Size: 22.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19e7be07ffd38788ac622c3fa3b6192fd2c5cb0e1bbba7973b1d98e1915ed419 |
|
MD5 | 8d4dbf8dbaf94d9792c1b837af3e7143 |
|
BLAKE2b-256 | 3c47d15fe7b26101046db803c31b72613e11288cc90767a9cc5f63b8d67c10b4 |