├── .gitignore ├── LICENSE ├── README.md ├── requirements-to-freeze.txt ├── requirements.txt └── sbm ├── __init__.py ├── detect.py ├── generate.py ├── recover.py └── sbm.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcoyze/stochastic-blockmodel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcoyze/stochastic-blockmodel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcoyze/stochastic-blockmodel/HEAD/README.md -------------------------------------------------------------------------------- /requirements-to-freeze.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.11.1 2 | -------------------------------------------------------------------------------- /sbm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sbm/detect.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /sbm/generate.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sbm/recover.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /sbm/sbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tcoyze/stochastic-blockmodel/HEAD/sbm/sbm.py --------------------------------------------------------------------------------