Skip to content
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:

Getting Started

A toy package by François Durand

Authorized external dependencies:

Coding style:

  • 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

Clone this wiki locally