├── .gitignore ├── LICENSE ├── README.md ├── images ├── random_graph.png ├── training_a.png └── training_b.png ├── sgcrf.py └── tests ├── __init__.py └── test_fit.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswah/sgcrfpy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswah/sgcrfpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswah/sgcrfpy/HEAD/README.md -------------------------------------------------------------------------------- /images/random_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswah/sgcrfpy/HEAD/images/random_graph.png -------------------------------------------------------------------------------- /images/training_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswah/sgcrfpy/HEAD/images/training_a.png -------------------------------------------------------------------------------- /images/training_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswah/sgcrfpy/HEAD/images/training_b.png -------------------------------------------------------------------------------- /sgcrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswah/sgcrfpy/HEAD/sgcrf.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dswah/sgcrfpy/HEAD/tests/test_fit.py --------------------------------------------------------------------------------