Complex Network Link Prediction Save

A python library for link prediction in social networks

Project README

Complex Network Link Prediction

License: MIT PyPi Documentation Downloads Wiki GitHubIssues GitTutorial

logo

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.

methods list

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


Authors

cosci vescera fagiolo romani posta
Cristian Cosci 🐔 Nicolò Vescera 🦧 Fabrizio Fagiolo 🐛 Tommaso Romani 🦍 Nicolò Posta 🐒
Open Source Agenda is not affiliated with "Complex Network Link Prediction" Project. README Source: Typing-Monkeys/complex-network-link-prediction

Open Source Agenda Badge

Open Source Agenda Rating