-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #164 from sknetwork-team/develop
Develop
- Loading branch information
Showing
70 changed files
with
10,388 additions
and
7,756 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
html { | ||
background-color: #e6e6e6; | ||
} | ||
|
||
body.wy-body-for-nav { | ||
line-height: 1.5em; | ||
color: #333; | ||
} | ||
|
||
div.wy-nav-side { | ||
background-color: #333; | ||
} | ||
|
||
div.wy-side-nav-search { | ||
background-color: #777777; | ||
} | ||
|
||
|
||
div.wy-menu.wy-menu-vertical>p { | ||
color: #ffffff /* section titles */ | ||
} | ||
|
||
.wy-nav-top { | ||
background-color: #777777; | ||
} | ||
|
||
.wy-side-nav-search>a:hover, .wy-side-nav-search .wy-dropdown>a:hover { | ||
background: None; /*background for logo when hovered*/ | ||
} | ||
|
||
.wy-side-nav-search>div.version { | ||
color: white; | ||
} | ||
|
||
.wy-side-nav-search input[type=text] { | ||
border-color: #d9d9d9; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Index | ||
===== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,31 @@ | ||
.. figure:: ../images/logo_sknetwork.png | ||
:align: right | ||
:width: 200px | ||
:alt: logo sknetwork | ||
|
||
Welcome to scikit-network's documentation! | ||
========================================== | ||
|
||
.. include:: readme.rst | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Contents: | ||
:caption: Installation & Reference | ||
|
||
readme | ||
installation | ||
reference/index | ||
tutorials/index | ||
|
||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
:caption: Tutorials | ||
|
||
tutorials/clustering_Louvain | ||
tutorials/hierarchical_clustering | ||
tutorials/pagerank | ||
|
||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: About | ||
|
||
contributing | ||
authors | ||
history | ||
genindex | ||
|
||
Indices and tables | ||
================== | ||
* :ref:`genindex` | ||
* :ref:`modindex` | ||
* :ref:`search` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ Reference | |
clustering | ||
hierarchy | ||
ranking | ||
linalg | ||
loader | ||
toy_graphs | ||
utils |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
.. _linalg: | ||
|
||
Linear algebra | ||
************** | ||
|
||
.. currentmodule:: sknetwork | ||
|
||
Submodule for linear Algebra. | ||
|
||
Sparse + Low Rank structure | ||
--------------------------- | ||
|
||
.. autoclass:: sknetwork.linalg.SparseLR | ||
:members: | ||
|
||
Solvers | ||
------- | ||
|
||
.. autoclass:: sknetwork.linalg.LanczosEig | ||
:members: | ||
|
||
.. autoclass:: sknetwork.linalg.HalkoEig | ||
:members: | ||
|
||
.. autoclass:: sknetwork.linalg.LanczosSVD | ||
:members: | ||
|
||
.. autoclass:: sknetwork.linalg.HalkoSVD | ||
:members: | ||
|
||
Randomized methods | ||
------------------ | ||
|
||
.. autofunction:: sknetwork.linalg.randomized_matrix_factorization.randomized_range_finder | ||
|
||
.. autofunction:: sknetwork.linalg.randomized_svd | ||
|
||
.. autofunction:: sknetwork.linalg.randomized_eig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.