-
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 #97 from sknetwork-team/develop
release 0.2.0
- Loading branch information
Showing
42 changed files
with
1,991 additions
and
1,025 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,3 +115,5 @@ data/ | |
|
||
\.DS_Store | ||
|
||
|
||
*.ipynb |
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,33 @@ | ||
#Taken from https://pyup.io/docs/bot/config/ | ||
|
||
# configure updates globally | ||
# default: all | ||
# allowed: all, insecure, False | ||
update: all | ||
|
||
# configure dependency pinning globally | ||
# default: True | ||
# allowed: True, False | ||
pin: True | ||
|
||
# set the default branch | ||
# default: empty, the default branch on GitHub | ||
branch: develop | ||
|
||
# update schedule | ||
# default: empty | ||
# allowed: "every day", "every week", .. | ||
schedule: "every day" | ||
|
||
# search for requirement files | ||
# default: True | ||
# allowed: True, False | ||
search: True | ||
|
||
# configure the branch prefix the bot is using | ||
# default: pyup- | ||
branch_prefix: pyup/ | ||
|
||
# allow to close stale PRs | ||
# default: True | ||
close_prs: True |
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 |
---|---|---|
|
@@ -9,8 +9,3 @@ Development Lead | |
* Bertrand Charpentier <[email protected]> | ||
* Nathan De Lara <[email protected]> | ||
* Quentin Lutz <[email protected]> | ||
|
||
Contributors | ||
------------ | ||
|
||
* Alexandre Hollocou <[email protected]> |
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
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 was deleted.
Oops, something went wrong.
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,22 @@ | ||
.. _hierarchical_clustering: | ||
|
||
Hierarchical clustering | ||
*********************** | ||
|
||
.. currentmodule:: sknetwork | ||
|
||
Paris | ||
----- | ||
.. automodule:: sknetwork.hierarchy | ||
.. autosummary:: | ||
:toctree: generated/ | ||
|
||
.. autoclass:: sknetwork.hierarchy.paris.Paris | ||
:members: | ||
|
||
|
||
Metrics | ||
------- | ||
.. autofunction:: sknetwork.hierarchy.metrics.dasgupta_cost | ||
|
||
.. autofunction:: sknetwork.hierarchy.metrics.tree_sampling_divergence |
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 |
---|---|---|
|
@@ -6,5 +6,7 @@ Reference | |
.. toctree:: | ||
|
||
embedding | ||
flat_clustering | ||
hierarchical_clustering | ||
clustering | ||
hierarchy | ||
loader | ||
toy_graphs |
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,9 @@ | ||
.. _loader: | ||
|
||
Loader | ||
****** | ||
|
||
.. currentmodule:: sknetwork | ||
|
||
.. autoclass:: sknetwork.loader.Parser | ||
:members: |
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,12 @@ | ||
.. _toy_graphs: | ||
|
||
Toy graphs | ||
********** | ||
|
||
.. currentmodule:: sknetwork | ||
|
||
.. autofunction:: sknetwork.toy_graphs.house_graph | ||
|
||
.. autofunction:: sknetwork.toy_graphs.karate_club_graph | ||
|
||
.. autofunction:: sknetwork.toy_graphs.star_wars_villains_graph |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,35 @@ | ||
@ECHO OFF | ||
|
||
pushd %~dp0 | ||
|
||
REM Command file for Sphinx documentation | ||
|
||
if "%SPHINXBUILD%" == "" ( | ||
set SPHINXBUILD=sphinx-build | ||
) | ||
set SOURCEDIR=source | ||
set BUILDDIR=build | ||
|
||
if "%1" == "" goto help | ||
|
||
%SPHINXBUILD% >NUL 2>NUL | ||
if errorlevel 9009 ( | ||
echo. | ||
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx | ||
echo.installed, then set the SPHINXBUILD environment variable to point | ||
echo.to the full path of the 'sphinx-build' executable. Alternatively you | ||
echo.may add the Sphinx directory to PATH. | ||
echo. | ||
echo.If you don't have Sphinx installed, grab it from | ||
echo.http://sphinx-doc.org/ | ||
exit /b 1 | ||
) | ||
|
||
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% | ||
goto end | ||
|
||
:help | ||
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% | ||
|
||
:end | ||
popd |
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,7 +1,14 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
"""Top-level package for scikit-network""" | ||
|
||
"""Top-level package for scikit-network.""" | ||
|
||
__author__ = """Bertrand Charpentier""" | ||
__email__ = '[email protected]' | ||
__author__ = """scikit-network team""" | ||
__email__ = "[email protected]" | ||
__version__ = '0.2.0' | ||
|
||
from scipy.sparse.csgraph import * | ||
from sknetwork.toy_graphs import * | ||
from sknetwork.loader import * | ||
from sknetwork.clustering import * | ||
from sknetwork.hierarchy import * | ||
from sknetwork.embedding import * |
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,3 @@ | ||
from sknetwork.clustering.louvain import * | ||
from sknetwork.clustering.bilouvain import * | ||
from sknetwork.clustering.metrics import * |
Oops, something went wrong.