Python package for link prediction
Project description
linkpred is a Python package for link prediction: given a network, linkpred provides a number of heuristics (known as predictors) that assess the likelihood of potential links in a future snapshot of the network.
While some predictors are fairly straightforward (e.g., if two people have a large number of mutual friends, it seems likely that eventually they will meet and become friends), others are more involved.
linkpred can both be used as a command-line tool and as a Python library in your own code.
Installation
linkpred works under Python 3.4, 3.5, and 3.6. It depends on:
matplotlib
networkx
numpy
pyyaml
scipy
smokesignal
Most of these are included in the Anaconda distribution. Assuming you have Anaconda installed, the package can be installed by pip install linkpred.
Example usage as command-line tool
A good starting point is linkpred --help, which lists all the available options. To save the predictions of the CommonNeighbours predictor, for instance, run:
$ linkpred examples/inf1990-2004.net -p CommonNeighbours --output cache-predictions
where examples/inf1990-2004.net is a network file in Pajek format. Other supported formats include GML and GraphML. The full output looks like this:
$ linkpred examples/inf1990-2004.net -p CommonNeighbours --output cache-predictions
16:43:13 - INFO - Reading file 'examples/inf1990-2004.net'...
16:43:13 - INFO - Successfully read file.
16:43:13 - INFO - Starting preprocessing...
16:43:13 - INFO - Removed 35 nodes (degree < 1)
16:43:13 - INFO - Finished preprocessing.
16:43:13 - INFO - Executing CommonNeighbours...
16:43:14 - INFO - Finished executing CommonNeighbours.
16:43:14 - INFO - Prediction run finished
$ head examples/inf1990-2004-CommonNeighbours-predictions_2016-04-22_16.43.txt
"Ikogami, K" "Ikegami, K" 5.0
"Durand, T" "Abd El Kader, M" 5.0
"Sharma, L" "Kumar, S" 4.0
"Paul, A" "Durand, T" 4.0
"Paul, A" "Dudognon, G" 4.0
"Paul, A" "Abd El Kader, M" 4.0
"Karisiddippa, CR" "Garg, KC" 4.0
"Wu, YS" "Kretschmer, H" 3.0
"Veugelers, R" "Deleus, F" 3.0
"Veugelers, R" "Andries, P" 3.0
Example usage within Python
>>> import linkpred
>>> G = linkpred.read_network("examples/training.net")
11:49:00 - INFO - Reading file 'examples/training.net'...
11:49:00 - INFO - Successfully read file.
>>> len(G) # number of nodes
632
>>> # We exclude edges already present, to predict only new links
>>> simrank = linkpred.predictors.SimRank(G, excluded=G.edges())
>>> simrank_results = simrank.predict(c=0.5)
>>> top = simrank_results.top(5)
>>> for authors, score in top.items():
... print(authors, score)
...
Tomizawa, H - Fujigaki, Y 0.188686630053
Shirabe, M - Hayashi, T 0.143866427916
Garfield, E - Fuseler, EA 0.148097050146
Persson, O - Larsen, IM 0.138516589957
Vanleeuwen, TN - Noyons, ECM 0.185040358711
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 linkpred-0.4.tar.gz
.
File metadata
- Download URL: linkpred-0.4.tar.gz
- Upload date:
- Size: 22.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.30.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f31aec6bf8b659cc5acd5a3f1577c0c884b7d9ba15bbaf75d01b451d9ab5a646 |
|
MD5 | 8464ccbc59176d5e968c454ceb5292c0 |
|
BLAKE2b-256 | 4cd19252ce8c0df7354e835aacf905e1f86a42c9ec6cfee3570e92cfd38a5484 |