gitextract_2ogob1oo/ ├── .bumpversion.cfg ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── bug_report.md │ └── workflows/ │ └── build_wheels.yml ├── .gitignore ├── CITATION.cff ├── CLAUDE.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── README_dev.md ├── docs/ │ ├── .buildinfo │ ├── .doctrees/ │ │ ├── environment.pickle │ │ ├── index.doctree │ │ └── modules.doctree │ ├── .nojekyll │ ├── _modules/ │ │ ├── index.html │ │ ├── k_means_constrained/ │ │ │ ├── k_means_constrained_.html │ │ │ ├── sklearn_cluster/ │ │ │ │ └── k_means_.html │ │ │ └── sklearn_import/ │ │ │ ├── base.html │ │ │ └── cluster/ │ │ │ └── k_means_.html │ │ └── sklearn/ │ │ └── base.html │ ├── _sources/ │ │ ├── index.rst.txt │ │ └── modules.rst.txt │ ├── _static/ │ │ ├── alabaster.css │ │ ├── basic.css │ │ ├── css/ │ │ │ ├── badge_only.css │ │ │ └── theme.css │ │ ├── custom.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── fonts/ │ │ │ └── FontAwesome.otf │ │ ├── jquery-3.4.1.js │ │ ├── jquery-3.5.1.js │ │ ├── jquery.js │ │ ├── js/ │ │ │ ├── badge_only.js │ │ │ └── theme.js │ │ ├── language_data.js │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.12.0.js │ │ ├── underscore-1.3.1.js │ │ └── underscore.js │ ├── genindex.html │ ├── index.html │ ├── modules.html │ ├── objects.inv │ ├── py-modindex.html │ ├── search.html │ └── searchindex.js ├── docs_source/ │ ├── Makefile │ ├── README.md │ ├── conf.py │ ├── index.rst │ └── make.bat ├── etc/ │ ├── benchmark.ipynb │ ├── benchmark_k_means.py │ ├── benchmark_k_means_constrained.py │ └── cython_benchmark.ipynb ├── k_means_constrained/ │ ├── __init__.py │ ├── k_means_constrained_.py │ └── sklearn_import/ │ ├── README │ ├── __init__.py │ ├── base.py │ ├── cluster/ │ │ ├── __init__.py │ │ ├── _k_means.pyx │ │ └── k_means_.py │ ├── exceptions.py │ ├── externals/ │ │ ├── __init__.py │ │ └── funcsigs.py │ ├── fixes.py │ ├── funcsigs.py │ ├── metrics/ │ │ ├── __init__.py │ │ ├── pairwise.py │ │ └── pairwise_fast.pyx │ ├── preprocessing/ │ │ ├── __init__.py │ │ └── data.py │ └── utils/ │ ├── __init__.py │ ├── extmath.py │ ├── fixes.py │ ├── sparsefuncs.py │ ├── sparsefuncs_fast.pyx │ └── validation.py ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests/ │ ├── test_k_means_constrained_.py │ └── test_kmeans_constrained_from_sklearn.py └── tox.ini