-
Notifications
You must be signed in to change notification settings - Fork 65
Home
Thomas Bonald edited this page Apr 12, 2020
·
35 revisions
Scikit-Network is an open-source python package created at LINCS.
You are very welcome to participate and add your own graph algorithms.
We just ask you to follow some guidelines:
- Object oriented programming with Scikit-learn style: an algorithm is a class with a fit method.
- PEP8 coding style (it is recommended to use Pycharm Community as an IDE)
- Explicit variables (e.g., adjacency, biadjacency, labels) except number of nodes (n) and node indices (i,j)
labels: np.ndarray
- The description of each function or class should begin with a verb (imperative form) or a noun.
Cluster nodes of the graph.
- The description of each function or class should include an example, in the following form:
imports
algo
data
output
- Reference style: APA
Blondel, V. D., Guillaume, J. L., Lambiotte, R., & Lefebvre, E. (2008). Fast unfolding of communities in large networks. Journal of statistical mechanics: theory and experiment.
- Each function or class must be tested.
- The main modules should be illustrated by a Jupyter notebook.