-
Notifications
You must be signed in to change notification settings - Fork 65
Home
QLutz edited this page Nov 21, 2018
·
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:
A toy package by François Durand
- 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 as an IDE)
- Explicit variable names: graph, node, edge, adjacency_matrix or adj_matrix, source, target, edge_weights...
TO BE CONTINUED