├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── dev-requirements.txt ├── example-requirements.txt ├── examples ├── document_clustering.py ├── make_sphere_graphic.py ├── small_mix.py └── small_mix_3d.py ├── images ├── document_clustering.png ├── small_mix_2d.png ├── small_mix_3d.png └── sphere_w_clusters.png ├── requirements.txt ├── setup.cfg ├── setup.py └── spherecluster ├── __init__.py ├── spherical_kmeans.py ├── tests ├── test_common.py └── test_von_mises_fisher_mixture.py ├── util.py └── von_mises_fisher_mixture.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/README.md -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | black==18.6b4 -------------------------------------------------------------------------------- /example-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/example-requirements.txt -------------------------------------------------------------------------------- /examples/document_clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/examples/document_clustering.py -------------------------------------------------------------------------------- /examples/make_sphere_graphic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/examples/make_sphere_graphic.py -------------------------------------------------------------------------------- /examples/small_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/examples/small_mix.py -------------------------------------------------------------------------------- /examples/small_mix_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/examples/small_mix_3d.py -------------------------------------------------------------------------------- /images/document_clustering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/images/document_clustering.png -------------------------------------------------------------------------------- /images/small_mix_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/images/small_mix_2d.png -------------------------------------------------------------------------------- /images/small_mix_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/images/small_mix_3d.png -------------------------------------------------------------------------------- /images/sphere_w_clusters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/images/sphere_w_clusters.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/setup.py -------------------------------------------------------------------------------- /spherecluster/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/spherecluster/__init__.py -------------------------------------------------------------------------------- /spherecluster/spherical_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/spherecluster/spherical_kmeans.py -------------------------------------------------------------------------------- /spherecluster/tests/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/spherecluster/tests/test_common.py -------------------------------------------------------------------------------- /spherecluster/tests/test_von_mises_fisher_mixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/spherecluster/tests/test_von_mises_fisher_mixture.py -------------------------------------------------------------------------------- /spherecluster/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/spherecluster/util.py -------------------------------------------------------------------------------- /spherecluster/von_mises_fisher_mixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonlaska/spherecluster/HEAD/spherecluster/von_mises_fisher_mixture.py --------------------------------------------------------------------------------