Repository: joshlk/k-means-constrained Branch: master Commit: 5465da91605b Files: 91 Total size: 1.8 MB Directory structure: 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 ================================================ FILE CONTENTS ================================================ ================================================ FILE: .bumpversion.cfg ================================================ [bumpversion] current_version = 0.9.0 commit = True tag = True [bumpversion:file:setup.cfg] [bumpversion:file:k_means_constrained/__init__.py] ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.md ================================================ --- name: Bug report about: Create a report to help us improve title: "[BUG]" labels: '' assignees: '' --- **Describe the bug** A clear and concise description of what the bug is. **Minimum working example** Code and minimum data to reproduce the error. The example should be copy and pastable to reproduce the problem. **Versions:** - Python: - Operating system: [Windows/MacOS/Linux] - k-means-constrained: - numpy: - scipy: - ortools: - joblib: - cython (if installed): ================================================ FILE: .github/workflows/build_wheels.yml ================================================ name: Build & Test on: schedule: - cron: '0 1 * * 4' # Runs every Thursday at 1 AM (UTC) pull_request: push: branches: - master workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true jobs: build_wheels: name: ${{ matrix.os }}-${{ matrix.python }} runs-on: ${{ matrix.os }} strategy: matrix: # macos-15-intel is an intel runner, macos-latest is apple silicon # windows-11-arm is currently not supported by the dependencies os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-15-intel, macos-latest] python: [cp310, cp311, cp312, cp313, cp314] fail-fast: false steps: - uses: actions/checkout@v4 - name: Build and test wheels uses: pypa/cibuildwheel@v3.3.1 env: # Build # NOTE: build dependencies are defined in pyproject.toml (including numpy version) CIBW_BUILD_FRONTEND: "build" CIBW_ARCHS: native # Build only for the native architecture of the build machine CIBW_BUILD: "${{ matrix.python }}*" # Build only for the specified Python version CIBW_SKIP: "*musllinux* cp3*t-*" # Don't build musllinux (ortools) or free-threaded wheels # Test CIBW_BEFORE_TEST: "python -m pip install --upgrade pip && python -m pip install -r requirements-dev.txt && python -m pip list" CIBW_TEST_COMMAND: "pytest {project}/tests" - uses: actions/upload-artifact@v4 with: path: ./wheelhouse/*.whl name: ${{ matrix.os }}-${{ matrix.python }} merge: runs-on: ubuntu-latest needs: build_wheels steps: - uses: actions/upload-artifact/merge@v4 with: name: wheels delete-merged: true ================================================ FILE: .gitignore ================================================ # Created by .ignore support plugin (hsz.mobi) ### Python template # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover .hypothesis/ .pytest_cache/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation X_docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints # pyenv .python-version # celery beat schedule file celerybeat-schedule # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ ### JetBrains template # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 # User-specific stuff .idea/**/workspace.xml .idea/**/tasks.xml .idea/**/dictionaries .idea/**/shelf # Sensitive or high-churn files .idea/**/dataSources/ .idea/**/dataSources.ids .idea/**/dataSources.local.xml .idea/**/sqlDataSources.xml .idea/**/dynamic.xml .idea/**/uiDesigner.xml # Gradle .idea/**/gradle.xml .idea/**/libraries # CMake cmake-build-debug/ cmake-build-release/ # Mongo Explorer plugin .idea/**/mongoSettings.xml # File-based project format *.iws # IntelliJ out/ # mpeltonen/sbt-idea plugin .idea_modules/ # JIRA plugin atlassian-ide-plugin.xml # Cursive Clojure plugin .idea/replstate.xml # Crashlytics plugin (for Android Studio and IntelliJ) com_crashlytics_export_strings.xml crashlytics.properties crashlytics-build.properties fabric.properties # Editor-based Rest Client .idea/httpRequests ### Example user template template ### Example user template # IntelliJ project files .idea *.iml out gen /k_means_constrained/mincostflow_vectorized_.c /k_means_constrained/sklearn_import/cluster/_k_means.c /docs_source/_build/ k-means-env/* /k_means_constrained/sklearn_import/metrics/pairwise_fast.c /k_means_constrained/sklearn_import/utils/sparsefuncs_fast.c .DS_Store .DS_Store/* *.code-workspace artifact/* ================================================ FILE: CITATION.cff ================================================ cff-version: 1.2.0 message: "If you use this software, please cite it as below." authors: - family-names: "Levy-Kramer" given-names: "Josh" orcid: "https://orcid.org/0000-0002-4350-6197" title: "k-means-constrained" date-released: 2018-04-23 url: "https://github.com/joshlk/k-means-constrained" ================================================ FILE: CLAUDE.md ================================================ # CLAUDE.md This file provides guidance for AI assistants working with the k-means-constrained codebase. ## Project Overview **k-means-constrained** is a Python library implementing K-means clustering with minimum and/or maximum cluster size constraints. It extends scikit-learn's KMeans API by formulating the constrained assignment step (E-step) as a Minimum Cost Flow (MCF) network optimization problem, solved using Google OR-Tools' `SimpleMinCostFlow`. - **Author:** Josh Levy-Kramer - **License:** BSD 3-Clause - **Version:** 0.9.0 - **Python support:** 3.10, 3.11, 3.12, 3.13, 3.14 ## Repository Structure ``` k_means_constrained/ # Main package ├── __init__.py # Exports KMeansConstrained, defines __version__ ├── k_means_constrained_.py # Core algorithm implementation └── sklearn_import/ # Vendored scikit-learn code (modified) ├── base.py # BaseEstimator, ClusterMixin, TransformerMixin ├── exceptions.py ├── cluster/ │ ├── _k_means.pyx # Cython: M-step center computation │ └── k_means_.py # KMeans base class, k-means++ init ├── metrics/ │ ├── pairwise.py # Distance computations │ └── pairwise_fast.pyx # Cython: optimized pairwise distances ├── utils/ │ ├── extmath.py # row_norms, squared_norm │ ├── validation.py # Input validation (check_array, etc.) │ └── sparsefuncs_fast.pyx # Cython: sparse matrix operations └── preprocessing/ tests/ ├── test_k_means_constrained_.py # Core algorithm tests └── test_kmeans_constrained_from_sklearn.py # Sklearn-adapted tests etc/ # Benchmarks and notebooks docs_source/ # Sphinx documentation source docs/ # Built HTML documentation .github/workflows/build_wheels.yml # CI/CD pipeline ``` ## Build & Development Commands ### Prerequisites Requires Cython and numpy at build time. Install all dev dependencies: ```sh pip install -r requirements.txt pip install -r requirements-dev.txt ``` ### Key Commands | Command | Purpose | |---|---| | `make compile` | Build Cython extensions in-place (required before running tests locally) | | `pytest` | Run all tests | | `pytest tests/test_k_means_constrained_.py` | Run core tests only | | `make build` | Build the package | | `make dist` | Build wheel and sdist | | `make clean` | Remove build artifacts and caches | | `make docs` | Build Sphinx HTML documentation | ### Typical Development Workflow 1. `make compile` — build Cython extensions in-place 2. Edit Python or Cython source files 3. `make compile` again if `.pyx` files were changed 4. `pytest` — run tests ## Architecture & Key Concepts ### Algorithm Flow 1. **Initialization:** k-means++ or random center selection (in `sklearn_import/cluster/k_means_.py:_k_init`) 2. **E-step (constrained):** `_labels_constrained()` builds an MCF graph from distance matrix and solves it via `ortools.SimpleMinCostFlow` to assign points to clusters respecting size_min/size_max 3. **M-step (standard):** `_centers_dense()` / `_centers_sparse()` in `_k_means.pyx` recomputes cluster centers 4. **Iterate** until convergence or max iterations ### Key Functions in `k_means_constrained_.py` - `KMeansConstrained` — main API class, sklearn-compatible estimator - `k_means_constrained()` — top-level function handling multiple random inits - `kmeans_constrained_single()` — single run of the constrained E-M loop - `_labels_constrained()` — constrained E-step using min-cost flow - `minimum_cost_flow_problem_graph()` — builds MCF graph (nodes, arcs, costs, capacities) - `solve_min_cost_flow_graph()` — solves the MCF problem via OR-Tools ### Vendored sklearn Code The `sklearn_import/` directory contains code copied and adapted from scikit-learn. This is not a dependency on sklearn at runtime — it's vendored to avoid version coupling. Changes to these files should be minimal and well-documented. ## Cython Extensions Three Cython `.pyx` files compile to C extensions: | Extension | Source | Purpose | |---|---|---| | `cluster._k_means` | `_k_means.pyx` | Compute cluster centers (M-step) | | `metrics.pairwise_fast` | `pairwise_fast.pyx` | Optimized sparse distance computation | | `utils.sparsefuncs_fast` | `sparsefuncs_fast.pyx` | Sparse CSR row norms and stats | Compilation is controlled by the `CYTHONIZE` environment variable (defaults to `1`). Set `CYTHONIZE=0` to skip Cythonization and use pre-compiled `.c`/`.cpp` files. Cython compiler directives: `language_level=3`, `embedsignature=True`. Extensions use `boundscheck(False)`, `wraparound(False)`, `cdivision(True)` for performance. ## Testing - **Framework:** pytest - **Test files:** `tests/test_k_means_constrained_.py` (core algorithm), `tests/test_kmeans_constrained_from_sklearn.py` (sklearn compatibility) - **CI matrix:** Ubuntu (x64+ARM), Windows, macOS (Intel+Apple Silicon) x Python 3.10-3.14 - **CI tool:** `cibuildwheel` v3.0.0 — builds and tests wheels across platforms - **CI triggers:** push to master, PRs, weekly schedule (Thursday 1 AM UTC), manual dispatch - **Note:** musllinux is skipped (ortools compatibility) ## Dependencies ### Runtime (`requirements.txt`) - `ortools >= 9.15.6755` — Google OR-Tools for min-cost flow - `scipy >= 1.14.1` — sparse matrices, distance functions - `numpy >= 2.1.1` — array operations - `six` — Python 2/3 compatibility (legacy) - `joblib` — parallel execution of multiple inits ### Build (`pyproject.toml`) - `setuptools`, `wheel`, `cython >= 3.0.11`, `numpy >= 2.0, < 3` ### Dev (`requirements-dev.txt`) - `pytest`, `pandas`, `scikit-learn >= 1.5.2`, `sphinx`, `bump2version`, `twine` ## Versioning & Release ### Version locations The version string appears in three files that must stay in sync: | File | Format | |---|---| | `setup.cfg` | `version = X.Y.Z` | | `k_means_constrained/__init__.py` | `__version__ = 'X.Y.Z'` | | `.bumpversion.cfg` | `current_version = X.Y.Z` | ### Bumping the version Use `bump2version` (config in `.bumpversion.cfg`) which updates all three files and creates a git commit + tag automatically: ```sh bump2version patch # 0.9.0 → 0.9.1 bump2version minor # 0.9.0 → 0.10.0 bump2version major # 0.9.0 → 1.0.0 ``` If bumping manually (without `bump2version`), update all three files listed above. ### Changelog The changelog lives in `README.md` under the `# Change log` heading. When bumping the version, add a new entry at the top of the list following the existing format: ``` * vX.Y.Z (YYYY-MM-DD) Brief description of changes. ``` ### Release workflow (from `README_dev.md`) 1. Build and test locally (`make compile && pytest`) 2. Push to GitHub (triggers CI wheel builds) 3. Add changelog entry in `README.md`, bump version (`bump2version patch|minor|major`), push again 4. Download CI artifacts (`make download-dists ID=$BUILD_ID`) 5. Upload to test PyPI (`make test-pypi`), verify install 6. Upload to real PyPI (`make pypi-upload`) ## Code Conventions - **Naming:** PascalCase for classes, snake_case for functions, leading underscore for internal/private - **Docstrings:** NumPy style (Parameters, Returns, Notes, Examples sections) - **Imports:** `import numpy as np`, `import scipy.sparse as sp` - **Type hints:** Not heavily used; Cython files use `cdef`/`ctypedef` typed declarations - **Error handling:** `ValueError` for constraint violations, `NotImplementedError` for unsupported sparse operations - **Style checking:** flake8 (configured in `tox.ini`, excludes `.tox`, `*.egg`, `build`, `data`) ## Important Caveats - Sparse matrix input is not fully supported — some code paths raise `NotImplementedError` - Performance: O(n^4 log n) when n ~ c (number of clusters), vs O(n^2) for standard k-means. Not suitable for very large datasets with few clusters. - The `tox.ini` is outdated (references Python 3.8/3.9). Use `pytest` directly or rely on CI. - Always run `make compile` after modifying `.pyx` files before testing. ================================================ FILE: LICENSE ================================================ BSD 3-Clause License Copyright (c) 2022, Josh Levy-Kramer & Outra Limited All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ================================================ FILE: MANIFEST.in ================================================ include README*.md include requirements*.txt include LICENSE include pyproject.toml global-include *.pyx global-include *.pyd ================================================ FILE: Makefile ================================================ .PHONY: build dist redist install dist-no-cython install-from-source clean venv-create venv-activate check-dist test-pypi pypi-upload build: python setup.py build dist: python setup.py build bdist_wheel sdist dist-no-cython: CYTHONIZE=0 python setup.py build bdist_wheel compile: python setup.py build build_ext --inplace redist: clean dist install: pip install . install-from-source: dist pip install dist/k-means-constrained-0.5.0.tar.gz clean: $(RM) -r build dist src/*.egg-info artifact $(RM) -r .pytest_cache find . -name __pycache__ -exec rm -r {} + #git clean -fdX venv-create: conda create -n k-means-constrained python=3.10 conda activate k-means-constrained pip install -r requirements.txt pip install -r requirements-dev.txt venv-activate: # Doesn't work. Need to execute manually conda activate k-means-constrained venv-delete: conda env delete k-means-constrained docs: sphinx-build -b html docs_source docs source-dists: rm -r dist python setup.py sdist --formats=gztar download-dists: # e.g. `make download-dists ID=8` # ID is run id (get from url. Not Job ID) # Need gh installed. `brew install gh` rm -r wheels || true gh run download $(ID) check-dist: twine check wheels/* test-pypi: # Get API key from password manager twine upload --repository-url https://test.pypi.org/legacy/ wheels/* pypi-upload: # Get API key from password manager twine upload wheels/* ================================================ FILE: README.md ================================================ [![PyPI](https://img.shields.io/pypi/v/k-means-constrained)](https://pypi.org/project/k-means-constrained/) ![Python](https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue) [![Build](https://github.com/joshlk/k-means-constrained/actions/workflows/build_wheels.yml/badge.svg)](https://github.com/joshlk/k-means-constrained/actions/workflows/build_wheels.yml) [**Documentation**](https://joshlk.github.io/k-means-constrained/) # k-means-constrained K-means clustering implementation whereby a minimum and/or maximum size for each cluster can be specified. This K-means implementation modifies the cluster assignment step (E in EM) by formulating it as a Minimum Cost Flow (MCF) linear network optimisation problem. This is then solved using a cost-scaling push-relabel algorithm and uses [Google's Operations Research tools's `SimpleMinCostFlow`](https://developers.google.com/optimization/flow/mincostflow) which is a fast C++ implementation. This package is inspired by [Bradley et al.](https://www.microsoft.com/en-us/research/wp-content/uploads/2016/02/tr-2000-65.pdf). The original Minimum Cost Flow (MCF) network proposed by Bradley et al. has been modified so maximum cluster sizes can also be specified along with minimum cluster size. The code is based on [scikit-lean's `KMeans`](https://scikit-learn.org/0.19/modules/generated/sklearn.cluster.KMeans.html) and implements the same [API with modifications](https://joshlk.github.io/k-means-constrained/). Ref: 1. [Bradley, P. S., K. P. Bennett, and Ayhan Demiriz. "Constrained k-means clustering." Microsoft Research, Redmond (2000): 1-8.](https://www.microsoft.com/en-us/research/wp-content/uploads/2016/02/tr-2000-65.pdf) 2. [Google's SimpleMinCostFlow C++ implementation](https://github.com/google/or-tools/blob/master/ortools/graph/min_cost_flow.h) # Installation You can install the k-means-constrained from PyPI: ``` pip install k-means-constrained ``` It is supported on Python 3.10, 3.11, 3.12, 3.13 and 3.14. Previous versions of k-means-constrained support older versions of Python and Numpy. # Example More details can be found in the [API documentation](https://joshlk.github.io/k-means-constrained/). ```python >>> from k_means_constrained import KMeansConstrained >>> import numpy as np >>> X = np.array([[1, 2], [1, 4], [1, 0], ... [4, 2], [4, 4], [4, 0]]) >>> clf = KMeansConstrained( ... n_clusters=2, ... size_min=2, ... size_max=5, ... random_state=0 ... ) >>> clf.fit_predict(X) array([0, 0, 0, 1, 1, 1], dtype=int32) >>> clf.cluster_centers_ array([[ 1., 2.], [ 4., 2.]]) >>> clf.labels_ array([0, 0, 0, 1, 1, 1], dtype=int32) ```
Code only ``` from k_means_constrained import KMeansConstrained import numpy as np X = np.array([[1, 2], [1, 4], [1, 0], [4, 2], [4, 4], [4, 0]]) clf = KMeansConstrained( n_clusters=2, size_min=2, size_max=5, random_state=0 ) clf.fit_predict(X) clf.cluster_centers_ clf.labels_ ```
# Time complexity and runtime k-means-constrained is a more complex algorithm than vanilla k-means and therefore will take longer to execute and has worse scaling characteristics. Given a number of data points $n$ and clusters $c$, the time complexity of: * k-means: $\mathcal{O}(nc)$ * k-means-constrained1: $\mathcal{O}((n^3c+n^2c^2+nc^3)\log(n+c)))$ This assumes a constant number of algorithm iterations and data-point features/dimensions. If you consider the case where $n$ is the same order as $c$ ($n \backsim c$) then: * k-means: $\mathcal{O}(n^2)$ * k-means-constrained1: $\mathcal{O}(n^4\log(n)))$ Below is a runtime comparison between k-means and k-means-constrained whereby the number of iterations, initializations, multi-process pool size and dimension size are fixed. The number of clusters is also always one-tenth the number of data points $n=10c$. It is shown above that the runtime is independent of the minimum or maximum cluster size, and so none is included below.

Data-points vs execution time for k-means vs k-means-constrained. Data-points=10*clusters. No min/max constraints

System details * OS: Linux-5.15.0-75-generic-x86_64-with-glibc2.35 * CPU: AMD EPYC 7763 64-Core Processor * CPU cores: 120 * k-means-constrained version: 0.7.3 * numpy version: 1.24.2 * scipy version: 1.11.1 * ortools version: 9.6.2534 * joblib version: 1.3.1 * sklearn version: 1.3.0
--- 1: [Ortools states](https://developers.google.com/optimization/reference/graph/min_cost_flow) the time complexity of their cost-scaling push-relabel algorithm for the min-cost flow problem as $\mathcal{O}(n^2m\log(nC))$ where $n$ is the number of nodes, $m$ is the number of edges and $C$ is the maximum absolute edge cost. # Change log * v0.9.0 (2026-01-27) Added Python 3.14 support. Bumped ortools to >= 9.15.6755. * v0.8.0 (2025-11-26) Fixed IndexError due to imprecision in _k_init centroid selection. Ported fix from scikit-learn: [scikit-learn#11756](https://github.com/scikit-learn/scikit-learn/pull/11756) * v0.7.6 (2025-06-30) Add Python v3.13 and Linux ARM support. * v0.7.5 fix comment in README on Python version that is supported * v0.7.4 compatible with Numpy +v2.1.1. Added Python 3.12 support and dropped Python 3.8 and 3.9 support (due to Numpy). Linux ARM support has been dropped as we use GitHub runners to build the package and ARM machines was being emulated using QEMU. This however was producing numerical errors. GitHub should natively support Ubuntu ARM images soon and then we can start to re-build them. * v0.7.3 compatible with Numpy v1.23.0 to 1.26.4 # Citations If you use this software in your research, please use the following citation: ``` @software{Levy-Kramer_k-means-constrained_2018, author = {Levy-Kramer, Josh}, month = apr, title = {{k-means-constrained}}, url = {https://github.com/joshlk/k-means-constrained}, year = {2018} } ``` ================================================ FILE: README_dev.md ================================================ # Build and test Notes: * Numpy build version is in `pyproject.toml` while the runtime version is in `requirements.txt` * Check which Python versions a new version of Numpy is compatible with. Also check ortools as this is slower to update. * Change the Python versions in the GitHub action. Also change the badge in the README and the comment in the installation section. * You might need to increase the ciwheelbuild version in the GitHub action to be able to use new Python versions * Check ciwheelbuild example if you need to change runner image versions (e.g. MacOS, Windows or Ubuntu). Change as little as possible so not to run into other errors: https://github.com/pypa/cibuildwheel/blob/main/examples/github-with-qemu.yml * Add changes to the change log Steps: 1. Build and test locally: To build Cython extensions in source: ```shell script make compile ``` To test: ```shell script pytest ``` 2. Push changes to GitHub to build it for all platforms (if you get errors check notes above) 3. Add changes to change log and bump version (major, minor or patch). Push changes (so dist have new version): ```shell script bump2version patch git push # Must push as otherwise wheels have the wrong version ``` 4. Download distributions (artifacts) ```shell script make download-dists ID=$BUILD_ID ``` 5. Upload to test PyPi (you can get PyPI API token in password manager) ```shell script make check-dist make test-pypi ``` 6. Activate virtual env (might need to `make venv-create`) ```shell script source k-means-env/bin/activate ``` 7. Test install (in virtual env. *****Remember to cd out of k-means-constrained folder*****): ```shell script pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple k-means-constrained ``` 8. Then push to real PyPI: ```shell script make pypi-upload ``` ================================================ FILE: docs/.buildinfo ================================================ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. config: 382d35e4d15790d94b7a36ad2e0a5f4f tags: 645f666f9bcd5a90fca523b33c5a78b7 ================================================ FILE: docs/.nojekyll ================================================ ================================================ FILE: docs/_modules/index.html ================================================ Overview: module code — k-means-constrained 0.5.1 documentation
  • »
  • Overview: module code

================================================ FILE: docs/_modules/k_means_constrained/k_means_constrained_.html ================================================ k_means_constrained.k_means_constrained_ — k-means-constrained 0.5.1 documentation
  • »
  • Module code »
  • k_means_constrained.k_means_constrained_

Source code for k_means_constrained.k_means_constrained_

"""k-means-constrained"""

# Authors: Josh Levy-Kramer <josh@levykramer.co.uk>
#          Gael Varoquaux <gael.varoquaux@normalesup.org>
#          Thomas Rueckstiess <ruecksti@in.tum.de>
#          James Bergstra <james.bergstra@umontreal.ca>
#          Jan Schlueter <scikit-learn@jan-schlueter.de>
#          Nelle Varoquaux
#          Peter Prettenhofer <peter.prettenhofer@gmail.com>
#          Olivier Grisel <olivier.grisel@ensta.org>
#          Mathieu Blondel <mathieu@mblondel.org>
#          Robert Layton <robertlayton@gmail.com>
# License: BSD 3 clause

import warnings
import numpy as np
import scipy.sparse as sp
from .sklearn_import.metrics.pairwise import euclidean_distances
from .sklearn_import.utils.extmath import row_norms, squared_norm, cartesian
from .sklearn_import.utils.validation import check_array, check_random_state, as_float_array, check_is_fitted
from joblib import Parallel
from joblib import delayed

# Internal scikit learn methods imported into this project
from k_means_constrained.sklearn_import.cluster._k_means import _centers_dense, _centers_sparse
from k_means_constrained.sklearn_import.cluster.k_means_ import _validate_center_shape, _tolerance, KMeans, \
    _init_centroids

from k_means_constrained.mincostflow_vectorized import SimpleMinCostFlowVectorized


def k_means_constrained(X, n_clusters, size_min=None, size_max=None, init='k-means++',
                        n_init=10, max_iter=300, verbose=False,
                        tol=1e-4, random_state=None, copy_x=True, n_jobs=1,
                        return_n_iter=False):
    """K-Means clustering with minimum and maximum cluster size constraints.

    Read more in the :ref:`User Guide <k_means>`.

    Parameters
    ----------
    X : array-like, shape (n_samples, n_features)
        The observations to cluster.

    size_min : int, optional, default: None
        Constrain the label assignment so that each cluster has a minimum
        size of size_min. If None, no constrains will be applied

    size_max : int, optional, default: None
        Constrain the label assignment so that each cluster has a maximum
        size of size_max. If None, no constrains will be applied

    n_clusters : int
        The number of clusters to form as well as the number of
        centroids to generate.

    init : {'k-means++', 'random', or ndarray, or a callable}, optional
        Method for initialization, default to 'k-means++':

        'k-means++' : selects initial cluster centers for k-mean
        clustering in a smart way to speed up convergence. See section
        Notes in k_init for more details.

        'random': generate k centroids from a Gaussian with mean and
        variance estimated from the data.

        If an ndarray is passed, it should be of shape (n_clusters, n_features)
        and gives the initial centers.

        If a callable is passed, it should take arguments X, k and
        and a random state and return an initialization.

    n_init : int, optional, default: 10
        Number of time the k-means algorithm will be run with different
        centroid seeds. The final results will be the best output of
        n_init consecutive runs in terms of inertia.

    max_iter : int, optional, default 300
        Maximum number of iterations of the k-means algorithm to run.

    verbose : boolean, optional
        Verbosity mode.

    tol : float, optional
        Relative tolerance with regards to Frobenius norm of the difference
        in the cluster centers of two consecutive iterations to declare
        convergence.

    random_state : int, RandomState instance or None, optional, default: None
        If int, random_state is the seed used by the random number generator;
        If RandomState instance, random_state is the random number generator;
        If None, the random number generator is the RandomState instance used
        by `np.random`.

    copy_x : boolean, optional
        When pre-computing distances it is more numerically accurate to center
        the data first.  If copy_x is True, then the original data is not
        modified.  If False, the original data is modified, and put back before
        the function returns, but small numerical differences may be introduced
        by subtracting and then adding the data mean.

    n_jobs : int
        The number of jobs to use for the computation. This works by computing
        each of the n_init runs in parallel.

        If -1 all CPUs are used. If 1 is given, no parallel computing code is
        used at all, which is useful for debugging. For n_jobs below -1,
        (n_cpus + 1 + n_jobs) are used. Thus for n_jobs = -2, all CPUs but one
        are used.

    return_n_iter : bool, optional
        Whether or not to return the number of iterations.

    Returns
    -------
    centroid : float ndarray with shape (k, n_features)
        Centroids found at the last iteration of k-means.

    label : integer ndarray with shape (n_samples,)
        label[i] is the code or index of the centroid the
        i'th observation is closest to.

    inertia : float
        The final value of the inertia criterion (sum of squared distances to
        the closest centroid for all observations in the training set).

    best_n_iter : int
        Number of iterations corresponding to the best results.
        Returned only if `return_n_iter` is set to True.

    """
    if sp.issparse(X):
        raise NotImplementedError("Not implemented for sparse X")

    if n_init <= 0:
        raise ValueError("Invalid number of initializations."
                         " n_init=%d must be bigger than zero." % n_init)
    random_state = check_random_state(random_state)

    if max_iter <= 0:
        raise ValueError('Number of iterations should be a positive number,'
                         ' got %d instead' % max_iter)

    X = as_float_array(X, copy=copy_x)
    tol = _tolerance(X, tol)

    # Validate init array
    if hasattr(init, '__array__'):
        init = check_array(init, dtype=X.dtype.type, copy=True)
        _validate_center_shape(X, n_clusters, init)

        if n_init != 1:
            warnings.warn(
                'Explicit initial center position passed: '
                'performing only one init in k-means instead of n_init=%d'
                % n_init, RuntimeWarning, stacklevel=2)
            n_init = 1

    # subtract of mean of x for more accurate distance computations
    if not sp.issparse(X):
        X_mean = X.mean(axis=0)
        # The copy was already done above
        X -= X_mean

        if hasattr(init, '__array__'):
            init -= X_mean

    # precompute squared norms of data points
    x_squared_norms = row_norms(X, squared=True)

    best_labels, best_inertia, best_centers = None, None, None

    if n_jobs == 1:
        # For a single thread, less memory is needed if we just store one set
        # of the best results (as opposed to one set per run per thread).
        for it in range(n_init):
            # run a k-means once
            labels, inertia, centers, n_iter_ = kmeans_constrained_single(
                X, n_clusters,
                size_min=size_min, size_max=size_max,
                max_iter=max_iter, init=init, verbose=verbose, tol=tol,
                x_squared_norms=x_squared_norms, random_state=random_state)
            # determine if these results are the best so far
            if best_inertia is None or inertia < best_inertia:
                best_labels = labels.copy()
                best_centers = centers.copy()
                best_inertia = inertia
                best_n_iter = n_iter_
    else:
        # parallelisation of k-means runs
        seeds = random_state.randint(np.iinfo(np.int32).max, size=n_init)
        results = Parallel(n_jobs=n_jobs, verbose=0)(
            delayed(kmeans_constrained_single)(X, n_clusters,
                                               size_min=size_min, size_max=size_max,
                                               max_iter=max_iter, init=init,
                                               verbose=verbose, tol=tol,
                                               x_squared_norms=x_squared_norms,
                                               # Change seed to ensure variety
                                               random_state=seed)
            for seed in seeds)
        # Get results with the lowest inertia
        labels, inertia, centers, n_iters = zip(*results)
        best = np.argmin(inertia)
        best_labels = labels[best]
        best_inertia = inertia[best]
        best_centers = centers[best]
        best_n_iter = n_iters[best]

    if not sp.issparse(X):
        if not copy_x:
            X += X_mean
        best_centers += X_mean

    if return_n_iter:
        return best_centers, best_labels, best_inertia, best_n_iter
    else:
        return best_centers, best_labels, best_inertia


def kmeans_constrained_single(X, n_clusters, size_min=None, size_max=None,
                              max_iter=300, init='k-means++',
                              verbose=False, x_squared_norms=None,
                              random_state=None, tol=1e-4):
    """A single run of k-means constrained, assumes preparation completed prior.

    Parameters
    ----------
    X : array-like of floats, shape (n_samples, n_features)
        The observations to cluster.

    size_min : int, optional, default: None
        Constrain the label assignment so that each cluster has a minimum
        size of size_min. If None, no constrains will be applied

    size_max : int, optional, default: None
        Constrain the label assignment so that each cluster has a maximum
        size of size_max. If None, no constrains will be applied

    n_clusters : int
        The number of clusters to form as well as the number of
        centroids to generate.

    max_iter : int, optional, default 300
        Maximum number of iterations of the k-means algorithm to run.

    init : {'k-means++', 'random', or ndarray, or a callable}, optional
        Method for initialization, default to 'k-means++':

        'k-means++' : selects initial cluster centers for k-mean
        clustering in a smart way to speed up convergence. See section
        Notes in k_init for more details.

        'random': generate k centroids from a Gaussian with mean and
        variance estimated from the data.

        If an ndarray is passed, it should be of shape (k, p) and gives
        the initial centers.

        If a callable is passed, it should take arguments X, k and
        and a random state and return an initialization.

    tol : float, optional
        Relative tolerance with regards to Frobenius norm of the difference
        in the cluster centers of two consecutive iterations to declare
        convergence.

    verbose : boolean, optional
        Verbosity mode

    x_squared_norms : array
        Precomputed x_squared_norms.

    random_state : int, RandomState instance or None, optional, default: None
        If int, random_state is the seed used by the random number generator;
        If RandomState instance, random_state is the random number generator;
        If None, the random number generator is the RandomState instance used
        by `np.random`.

    Returns
    -------
    centroid : float ndarray with shape (k, n_features)
        Centroids found at the last iteration of k-means.

    label : integer ndarray with shape (n_samples,)
        label[i] is the code or index of the centroid the
        i'th observation is closest to.

    inertia : float
        The final value of the inertia criterion (sum of squared distances to
        the closest centroid for all observations in the training set).

    n_iter : int
        Number of iterations run.
    """
    if sp.issparse(X):
        raise NotImplementedError("Not implemented for sparse X")

    random_state = check_random_state(random_state)
    n_samples = X.shape[0]

    best_labels, best_inertia, best_centers = None, None, None
    # init
    centers = _init_centroids(X, n_clusters, init, random_state=random_state, x_squared_norms=x_squared_norms)
    if verbose:
        print("Initialization complete")

    # Allocate memory to store the distances for each sample to its
    # closer center for reallocation in case of ties
    distances = np.zeros(shape=(n_samples,), dtype=X.dtype)

    # Determine min and max sizes if non given
    if size_min is None:
        size_min = 0
    if size_max is None:
        size_max = n_samples  # Number of data points

    # Check size min and max
    if not ((size_min >= 0) and (size_min <= n_samples)
            and (size_max >= 0) and (size_max <= n_samples)):
        raise ValueError("size_min and size_max must be a positive number smaller "
                         "than the number of data points or `None`")
    if size_max < size_min:
        raise ValueError("size_max must be larger than size_min")
    if size_min * n_clusters > n_samples:
        raise ValueError("The product of size_min and n_clusters cannot exceed the number of samples (X)")
    if size_max * n_clusters < n_samples:
        raise ValueError("The product of size_max and n_clusters must be larger than or equal the number of samples (X)")

    # iterations
    for i in range(max_iter):
        centers_old = centers.copy()
        # labels assignment is also called the E-step of EM
        labels, inertia = \
            _labels_constrained(X, centers, size_min, size_max, distances=distances)

        # computation of the means is also called the M-step of EM
        if sp.issparse(X):
            centers = _centers_sparse(X, labels, n_clusters, distances)
        else:
            centers = _centers_dense(X, labels, n_clusters, distances)

        if verbose:
            print("Iteration %2d, inertia %.3f" % (i, inertia))

        if best_inertia is None or inertia < best_inertia:
            best_labels = labels.copy()
            best_centers = centers.copy()
            best_inertia = inertia

        center_shift_total = squared_norm(centers_old - centers)
        if center_shift_total <= tol:
            if verbose:
                print("Converged at iteration %d: "
                      "center shift %e within tolerance %e"
                      % (i, center_shift_total, tol))
            break

    if center_shift_total > 0:
        # rerun E-step in case of non-convergence so that predicted labels
        # match cluster centers
        best_labels, best_inertia = \
            _labels_constrained(X, centers, size_min, size_max, distances=distances)

    return best_labels, best_inertia, best_centers, i + 1


def _labels_constrained(X, centers, size_min, size_max, distances):
    """Compute labels using the min and max cluster size constraint

    This will overwrite the 'distances' array in-place.

    Parameters
    ----------
    X : numpy array, shape (n_sample, n_features)
        Input data.

    size_min : int
        Minimum size for each cluster

    size_max : int
        Maximum size for each cluster

    centers : numpy array, shape (n_clusters, n_features)
        Cluster centers which data is assigned to.

    distances : numpy array, shape (n_samples,)
        Pre-allocated array in which distances are stored.

    Returns
    -------
    labels : numpy array, dtype=np.int, shape (n_samples,)
        Indices of clusters that samples are assigned to.

    inertia : float
        Sum of squared distances of samples to their closest cluster center.

    """
    C = centers

    # Distances to each centre C. (the `distances` parameter is the distance to the closest centre)
    # K-mean original uses squared distances but this equivalent for constrained k-means
    D = euclidean_distances(X, C, squared=False)

    edges, costs, capacities, supplies, n_C, n_X = minimum_cost_flow_problem_graph(X, C, D, size_min, size_max)
    labels = solve_min_cost_flow_graph(edges, costs, capacities, supplies, n_C, n_X)

    # cython k-means M step code assumes int32 inputs
    labels = labels.astype(np.int32)

    # Change distances in-place
    distances[:] = D[np.arange(D.shape[0]), labels] ** 2  # Square for M step of EM
    inertia = distances.sum()

    return labels, inertia


def minimum_cost_flow_problem_graph(X, C, D, size_min, size_max):
    # Setup minimum cost flow formulation graph
    # Vertices indexes:
    # X-nodes: [0, n(x)-1], C-nodes: [n(X), n(X)+n(C)-1], C-dummy nodes:[n(X)+n(C), n(X)+2*n(C)-1],
    # Artificial node: [n(X)+2*n(C), n(X)+2*n(C)+1-1]

    # Create indices of nodes
    n_X = X.shape[0]
    n_C = C.shape[0]
    X_ix = np.arange(n_X)
    C_dummy_ix = np.arange(X_ix[-1] + 1, X_ix[-1] + 1 + n_C)
    C_ix = np.arange(C_dummy_ix[-1] + 1, C_dummy_ix[-1] + 1 + n_C)
    art_ix = C_ix[-1] + 1

    # Edges
    edges_X_C_dummy = cartesian([X_ix, C_dummy_ix])  # All X's connect to all C dummy nodes (C')
    edges_C_dummy_C = np.stack([C_dummy_ix, C_ix], axis=1)  # Each C' connects to a corresponding C (centroid)
    edges_C_art = np.stack([C_ix, art_ix * np.ones(n_C)], axis=1)  # All C connect to artificial node

    edges = np.concatenate([edges_X_C_dummy, edges_C_dummy_C, edges_C_art])

    # Costs
    costs_X_C_dummy = D.reshape(D.size)
    costs = np.concatenate([costs_X_C_dummy, np.zeros(edges.shape[0] - len(costs_X_C_dummy))])

    # Capacities - can set for max-k
    capacities_C_dummy_C = size_max * np.ones(n_C)
    cap_non = n_X  # The total supply and therefore wont restrict flow
    capacities = np.concatenate([
        np.ones(edges_X_C_dummy.shape[0]),
        capacities_C_dummy_C,
        cap_non * np.ones(n_C)
    ])

    # Sources and sinks
    supplies_X = np.ones(n_X)
    supplies_C = -1 * size_min * np.ones(n_C)  # Demand node
    supplies_art = -1 * (n_X - n_C * size_min)  # Demand node
    supplies = np.concatenate([
        supplies_X,
        np.zeros(n_C),  # C_dummies
        supplies_C,
        [supplies_art]
    ])

    # All arrays must be of int dtype for `SimpleMinCostFlow`
    edges = edges.astype('int32')
    costs = np.around(costs * 1000, 0).astype('int32')  # Times by 1000 to give extra precision
    capacities = capacities.astype('int32')
    supplies = supplies.astype('int32')

    return edges, costs, capacities, supplies, n_C, n_X


def solve_min_cost_flow_graph(edges, costs, capacities, supplies, n_C, n_X):
    # Instantiate a SimpleMinCostFlow solver.
    min_cost_flow = SimpleMinCostFlowVectorized()

    if (edges.dtype != 'int32') or (costs.dtype != 'int32') \
            or (capacities.dtype != 'int32') or (supplies.dtype != 'int32'):
        raise ValueError("`edges`, `costs`, `capacities`, `supplies` must all be int dtype")

    N_edges = edges.shape[0]
    N_nodes = len(supplies)

    # Add each edge with associated capacities and cost
    min_cost_flow.AddArcWithCapacityAndUnitCostVectorized(edges[:, 0], edges[:, 1], capacities, costs)

    # Add node supplies
    min_cost_flow.SetNodeSupplyVectorized(np.arange(N_nodes, dtype='int32'), supplies)

    # Find the minimum cost flow between node 0 and node 4.
    if min_cost_flow.Solve() != min_cost_flow.OPTIMAL:
        raise Exception('There was an issue with the min cost flow input.')

    # Assignment
    labels_M = min_cost_flow.FlowVectorized(np.arange(n_X * n_C, dtype='int32')).reshape(n_X, n_C)

    labels = labels_M.argmax(axis=1)
    return labels


[docs]class KMeansConstrained(KMeans): """K-Means clustering with minimum and maximum cluster size constraints Parameters ---------- n_clusters : int, optional, default: 8 The number of clusters to form as well as the number of centroids to generate. size_min : int, optional, default: None Constrain the label assignment so that each cluster has a minimum size of size_min. If None, no constrains will be applied size_max : int, optional, default: None Constrain the label assignment so that each cluster has a maximum size of size_max. If None, no constrains will be applied init : {'k-means++', 'random' or an ndarray} Method for initialization, defaults to 'k-means++': 'k-means++' : selects initial cluster centers for k-mean clustering in a smart way to speed up convergence. See section Notes in k_init for more details. 'random': choose k observations (rows) at random from data for the initial centroids. If an ndarray is passed, it should be of shape (n_clusters, n_features) and gives the initial centers. n_init : int, default: 10 Number of times the k-means algorithm will be run with different centroid seeds. The final results will be the best output of n_init consecutive runs in terms of inertia. max_iter : int, default: 300 Maximum number of iterations of the k-means algorithm for a single run. tol : float, default: 1e-4 Relative tolerance with regards to Frobenius norm of the difference in the cluster centers of two consecutive iterations to declare convergence. verbose : int, default 0 Verbosity mode. random_state : int, RandomState instance or None, optional, default: None If int, random_state is the seed used by the random number generator; If RandomState instance, random_state is the random number generator; If None, the random number generator is the RandomState instance used by `np.random`. copy_x : boolean, default True When pre-computing distances it is more numerically accurate to center the data first. If copy_x is True, then the original data is not modified. If False, the original data is modified, and put back before the function returns, but small numerical differences may be introduced by subtracting and then adding the data mean. n_jobs : int The number of jobs to use for the computation. This works by computing each of the n_init runs in parallel. If -1 all CPUs are used. If 1 is given, no parallel computing code is used at all, which is useful for debugging. For n_jobs below -1, (n_cpus + 1 + n_jobs) are used. Thus for n_jobs = -2, all CPUs but one are used. Attributes ---------- cluster_centers_ : array, [n_clusters, n_features] Coordinates of cluster centers labels_ : Labels of each point inertia_ : float Sum of squared distances of samples to their closest cluster center. Examples -------- >>> from k_means_constrained import KMeansConstrained >>> import numpy as np >>> X = np.array([[1, 2], [1, 4], [1, 0], ... [4, 2], [4, 4], [4, 0]]) >>> clf = KMeansConstrained( ... n_clusters=2, ... size_min=2, ... size_max=5, ... random_state=0 ... ) >>> clf.fit_predict(X) array([0, 0, 0, 1, 1, 1], dtype=int32) >>> clf.cluster_centers_ array([[ 1., 2.], [ 4., 2.]]) >>> clf.labels_ array([0, 0, 0, 1, 1, 1], dtype=int32) Notes ------ K-means problem constrained with a minimum and/or maximum size for each cluster. The constrained assignment is formulated as a Minimum Cost Flow (MCF) linear network optimisation problem. This is then solved using a cost-scaling push-relabel algorithm. The implementation used is Google's Operations Research tools's `SimpleMinCostFlow`. Ref: 1. Bradley, P. S., K. P. Bennett, and Ayhan Demiriz. "Constrained k-means clustering." Microsoft Research, Redmond (2000): 1-8. 2. Google's SimpleMinCostFlow implementation: https://github.com/google/or-tools/blob/master/ortools/graph/min_cost_flow.h """ def __init__(self, n_clusters=8, size_min=None, size_max=None, init='k-means++', n_init=10, max_iter=300, tol=1e-4, verbose=False, random_state=None, copy_x=True, n_jobs=1): self.size_min = size_min self.size_max = size_max super().__init__(n_clusters=n_clusters, init=init, n_init=n_init, max_iter=max_iter, tol=tol, verbose=verbose, random_state=random_state, copy_x=copy_x, n_jobs=n_jobs)
[docs] def fit(self, X, y=None): """Compute k-means clustering with given constants. Parameters ---------- X : array-like, shape=(n_samples, n_features) Training instances to cluster. y : Ignored """ if sp.issparse(X): raise NotImplementedError("Not implemented for sparse X") random_state = check_random_state(self.random_state) X = self._check_fit_data(X) self.cluster_centers_, self.labels_, self.inertia_, self.n_iter_ = \ k_means_constrained( X, n_clusters=self.n_clusters, size_min=self.size_min, size_max=self.size_max, init=self.init, n_init=self.n_init, max_iter=self.max_iter, verbose=self.verbose, tol=self.tol, random_state=random_state, copy_x=self.copy_x, n_jobs=self.n_jobs, return_n_iter=True) return self
[docs] def predict(self, X, size_min='init', size_max='init'): """ Predict the closest cluster each sample in X belongs to given the provided constraints. The constraints can be temporally overridden when determining which cluster each datapoint is assigned to. Only computes the assignment step. It does not re-fit the cluster positions. Parameters ---------- X : array-like, shape = [n_samples, n_features] New data to predict. size_min : int, optional, default: size_min provided with initialisation Constrain the label assignment so that each cluster has a minimum size of size_min. If None, no constrains will be applied. If 'init' the value provided during initialisation of the class will be used. size_max : int, optional, default: size_max provided with initialisation Constrain the label assignment so that each cluster has a maximum size of size_max. If None, no constrains will be applied. If 'init' the value provided during initialisation of the class will be used. Returns ------- labels : array, shape [n_samples,] Index of the cluster each sample belongs to. """ if sp.issparse(X): raise NotImplementedError("Not implemented for sparse X") if size_min == 'init': size_min = self.size_min if size_max == 'init': size_max = self.size_max n_clusters = self.n_clusters n_samples = X.shape[0] check_is_fitted(self, 'cluster_centers_') X = self._check_test_data(X) # Allocate memory to store the distances for each sample to its # closer center for reallocation in case of ties distances = np.zeros(shape=(n_samples,), dtype=X.dtype) # Determine min and max sizes if non given if size_min is None: size_min = 0 if size_max is None: size_max = n_samples # Number of data points # Check size min and max if not ((size_min >= 0) and (size_min <= n_samples) and (size_max >= 0) and (size_max <= n_samples)): raise ValueError("size_min and size_max must be a positive number smaller " "than the number of data points or `None`") if size_max < size_min: raise ValueError("size_max must be larger than size_min") if size_min * n_clusters > n_samples: raise ValueError("The product of size_min and n_clusters cannot exceed the number of samples (X)") labels, inertia = \ _labels_constrained(X, self.cluster_centers_, size_min, size_max, distances=distances) return labels
[docs] def fit_predict(self, X, y=None): """Compute cluster centers and predict cluster index for each sample. Equivalent to calling fit(X) followed by predict(X) but also more efficient. Parameters ---------- X : {array-like, sparse matrix}, shape = [n_samples, n_features] New data to transform. Returns ------- labels : array, shape [n_samples,] Index of the cluster each sample belongs to. """ return self.fit(X).labels_
================================================ FILE: docs/_modules/k_means_constrained/sklearn_cluster/k_means_.html ================================================ k_means_constrained.sklearn_cluster.k_means_ — k-means-constrained 0.0.2 documentation

Source code for k_means_constrained.sklearn_cluster.k_means_

"""K-means clustering"""

# Authors: Gael Varoquaux <gael.varoquaux@normalesup.org>
#          Thomas Rueckstiess <ruecksti@in.tum.de>
#          James Bergstra <james.bergstra@umontreal.ca>
#          Jan Schlueter <scikit-learn@jan-schlueter.de>
#          Nelle Varoquaux
#          Peter Prettenhofer <peter.prettenhofer@gmail.com>
#          Olivier Grisel <olivier.grisel@ensta.org>
#          Mathieu Blondel <mathieu@mblondel.org>
#          Robert Layton <robertlayton@gmail.com>
# License: BSD 3 clause

import warnings

import numpy as np
import scipy.sparse as sp
from sklearn.base import BaseEstimator, ClusterMixin, TransformerMixin
from sklearn.externals.six import string_types
from sklearn.metrics.pairwise import euclidean_distances
from sklearn.metrics.pairwise import pairwise_distances_argmin_min
from sklearn.utils import check_array
from sklearn.utils import check_random_state
from sklearn.utils.extmath import row_norms, stable_cumsum
from sklearn.utils.sparsefuncs import mean_variance_axis
from sklearn.utils.validation import FLOAT_DTYPES
from sklearn.utils.validation import check_is_fitted

from . import _k_means


###############################################################################
# Initialization heuristic


def _k_init(X, n_clusters, x_squared_norms, random_state, n_local_trials=None):
    """Init n_clusters seeds according to k-means++

    Parameters
    -----------
    X : array or sparse matrix, shape (n_samples, n_features)
        The data to pick seeds for. To avoid memory copy, the input data
        should be double precision (dtype=np.float64).

    n_clusters : integer
        The number of seeds to choose

    x_squared_norms : array, shape (n_samples,)
        Squared Euclidean norm of each data point.

    random_state : numpy.RandomState
        The generator used to initialize the centers.

    n_local_trials : integer, optional
        The number of seeding trials for each center (except the first),
        of which the one reducing inertia the most is greedily chosen.
        Set to None to make the number of trials depend logarithmically
        on the number of seeds (2+log(k)); this is the default.

    Notes
    -----
    Selects initial cluster centers for k-mean clustering in a smart way
    to speed up convergence. see: Arthur, D. and Vassilvitskii, S.
    "k-means++: the advantages of careful seeding". ACM-SIAM symposium
    on Discrete algorithms. 2007

    Version ported from http://www.stanford.edu/~darthur/kMeansppTest.zip,
    which is the implementation used in the aforementioned paper.
    """
    n_samples, n_features = X.shape

    centers = np.empty((n_clusters, n_features), dtype=X.dtype)

    assert x_squared_norms is not None, 'x_squared_norms None in _k_init'

    # Set the number of local seeding trials if none is given
    if n_local_trials is None:
        # This is what Arthur/Vassilvitskii tried, but did not report
        # specific results for other than mentioning in the conclusion
        # that it helped.
        n_local_trials = 2 + int(np.log(n_clusters))

    # Pick first center randomly
    center_id = random_state.randint(n_samples)
    if sp.issparse(X):
        centers[0] = X[center_id].toarray()
    else:
        centers[0] = X[center_id]

    # Initialize list of closest distances and calculate current potential
    closest_dist_sq = euclidean_distances(
        centers[0, np.newaxis], X, Y_norm_squared=x_squared_norms,
        squared=True)
    current_pot = closest_dist_sq.sum()

    # Pick the remaining n_clusters-1 points
    for c in range(1, n_clusters):
        # Choose center candidates by sampling with probability proportional
        # to the squared distance to the closest existing center
        rand_vals = random_state.random_sample(n_local_trials) * current_pot
        candidate_ids = np.searchsorted(stable_cumsum(closest_dist_sq),
                                        rand_vals)

        # Compute distances to center candidates
        distance_to_candidates = euclidean_distances(
            X[candidate_ids], X, Y_norm_squared=x_squared_norms, squared=True)

        # Decide which candidate is the best
        best_candidate = None
        best_pot = None
        best_dist_sq = None
        for trial in range(n_local_trials):
            # Compute potential when including center candidate
            new_dist_sq = np.minimum(closest_dist_sq,
                                     distance_to_candidates[trial])
            new_pot = new_dist_sq.sum()

            # Store result if it is the best local trial so far
            if (best_candidate is None) or (new_pot < best_pot):
                best_candidate = candidate_ids[trial]
                best_pot = new_pot
                best_dist_sq = new_dist_sq

        # Permanently add best center candidate found in local tries
        if sp.issparse(X):
            centers[c] = X[best_candidate].toarray()
        else:
            centers[c] = X[best_candidate]
        current_pot = best_pot
        closest_dist_sq = best_dist_sq

    return centers


###############################################################################
# K-means batch estimation by EM (expectation maximization)

def _validate_center_shape(X, n_centers, centers):
    """Check if centers is compatible with X and n_centers"""
    if len(centers) != n_centers:
        raise ValueError('The shape of the initial centers (%s) '
                         'does not match the number of clusters %i'
                         % (centers.shape, n_centers))
    if centers.shape[1] != X.shape[1]:
        raise ValueError(
            "The number of features of the initial centers %s "
            "does not match the number of features of the data %s."
            % (centers.shape[1], X.shape[1]))


def _tolerance(X, tol):
    """Return a tolerance which is independent of the dataset"""
    if sp.issparse(X):
        variances = mean_variance_axis(X, axis=0)[1]
    else:
        variances = np.var(X, axis=0)
    return np.mean(variances) * tol


def _labels_inertia_precompute_dense(X, x_squared_norms, centers, distances):
    """Compute labels and inertia using a full distance matrix.

    This will overwrite the 'distances' array in-place.

    Parameters
    ----------
    X : numpy array, shape (n_sample, n_features)
        Input data.

    x_squared_norms : numpy array, shape (n_samples,)
        Precomputed squared norms of X.

    centers : numpy array, shape (n_clusters, n_features)
        Cluster centers which data is assigned to.

    distances : numpy array, shape (n_samples,)
        Pre-allocated array in which distances are stored.

    Returns
    -------
    labels : numpy array, dtype=np.int, shape (n_samples,)
        Indices of clusters that samples are assigned to.

    inertia : float
        Sum of distances of samples to their closest cluster center.

    """
    n_samples = X.shape[0]

    # Breakup nearest neighbor distance computation into batches to prevent
    # memory blowup in the case of a large number of samples and clusters.
    # TODO: Once PR #7383 is merged use check_inputs=False in metric_kwargs.
    labels, mindist = pairwise_distances_argmin_min(
        X=X, Y=centers, metric='euclidean', metric_kwargs={'squared': True})
    # cython k-means code assumes int32 inputs
    labels = labels.astype(np.int32)
    if n_samples == distances.shape[0]:
        # distances will be changed in-place
        distances[:] = mindist
    inertia = mindist.sum()
    return labels, inertia


def _labels_inertia(X, x_squared_norms, centers,
                    precompute_distances=True, distances=None):
    """E step of the K-means EM algorithm.

    Compute the labels and the inertia of the given samples and centers.
    This will compute the distances in-place.

    Parameters
    ----------
    X : float64 array-like or CSR sparse matrix, shape (n_samples, n_features)
        The input samples to assign to the labels.

    x_squared_norms : array, shape (n_samples,)
        Precomputed squared euclidean norm of each data point, to speed up
        computations.

    centers : float array, shape (k, n_features)
        The cluster centers.

    precompute_distances : boolean, default: True
        Precompute distances (faster but takes more memory).

    distances : float array, shape (n_samples,)
        Pre-allocated array to be filled in with each sample's distance
        to the closest center.

    Returns
    -------
    labels : int array of shape(n)
        The resulting assignment

    inertia : float
        Sum of distances of samples to their closest cluster center.
    """
    n_samples = X.shape[0]
    # set the default value of centers to -1 to be able to detect any anomaly
    # easily
    labels = -np.ones(n_samples, np.int32)
    if distances is None:
        distances = np.zeros(shape=(0,), dtype=X.dtype)
    # distances will be changed in-place
    if sp.issparse(X):
        inertia = _k_means._assign_labels_csr(
            X, x_squared_norms, centers, labels, distances=distances)
    else:
        if precompute_distances:
            return _labels_inertia_precompute_dense(X, x_squared_norms,
                                                    centers, distances)
        inertia = _k_means._assign_labels_array(
            X, x_squared_norms, centers, labels, distances=distances)
    return labels, inertia


def _init_centroids(X, k, init, random_state=None, x_squared_norms=None,
                    init_size=None):
    """Compute the initial centroids

    Parameters
    ----------

    X : array, shape (n_samples, n_features)

    k : int
        number of centroids

    init : {'k-means++', 'random' or ndarray or callable} optional
        Method for initialization

    random_state : int, RandomState instance or None, optional, default: None
        If int, random_state is the seed used by the random number generator;
        If RandomState instance, random_state is the random number generator;
        If None, the random number generator is the RandomState instance used
        by `np.random`.

    x_squared_norms :  array, shape (n_samples,), optional
        Squared euclidean norm of each data point. Pass it if you have it at
        hands already to avoid it being recomputed here. Default: None

    init_size : int, optional
        Number of samples to randomly sample for speeding up the
        initialization (sometimes at the expense of accuracy): the
        only algorithm is initialized by running a batch KMeans on a
        random subset of the data. This needs to be larger than k.

    Returns
    -------
    centers : array, shape(k, n_features)
    """
    random_state = check_random_state(random_state)
    n_samples = X.shape[0]

    if x_squared_norms is None:
        x_squared_norms = row_norms(X, squared=True)

    if init_size is not None and init_size < n_samples:
        if init_size < k:
            warnings.warn(
                "init_size=%d should be larger than k=%d. "
                "Setting it to 3*k" % (init_size, k),
                RuntimeWarning, stacklevel=2)
            init_size = 3 * k
        init_indices = random_state.randint(0, n_samples, init_size)
        X = X[init_indices]
        x_squared_norms = x_squared_norms[init_indices]
        n_samples = X.shape[0]
    elif n_samples < k:
        raise ValueError(
            "n_samples=%d should be larger than k=%d" % (n_samples, k))

    if isinstance(init, string_types) and init == 'k-means++':
        centers = _k_init(X, k, random_state=random_state,
                          x_squared_norms=x_squared_norms)
    elif isinstance(init, string_types) and init == 'random':
        seeds = random_state.permutation(n_samples)[:k]
        centers = X[seeds]
    elif hasattr(init, '__array__'):
        # ensure that the centers have the same dtype as X
        # this is a requirement of fused types of cython
        centers = np.array(init, dtype=X.dtype)
    elif callable(init):
        centers = init(X, k, random_state=random_state)
        centers = np.asarray(centers, dtype=X.dtype)
    else:
        raise ValueError("the init parameter for the k-means should "
                         "be 'k-means++' or 'random' or an ndarray, "
                         "'%s' (type '%s') was passed." % (init, type(init)))

    if sp.issparse(centers):
        centers = centers.toarray()

    _validate_center_shape(X, k, centers)
    return centers


class KMeans(BaseEstimator, ClusterMixin, TransformerMixin):
    """K-Means clustering

    Read more in the :ref:`User Guide <k_means>`.

    Parameters
    ----------

    n_clusters : int, optional, default: 8
        The number of clusters to form as well as the number of
        centroids to generate.

    init : {'k-means++', 'random' or an ndarray}
        Method for initialization, defaults to 'k-means++':

        'k-means++' : selects initial cluster centers for k-mean
        clustering in a smart way to speed up convergence. See section
        Notes in k_init for more details.

        'random': choose k observations (rows) at random from data for
        the initial centroids.

        If an ndarray is passed, it should be of shape (n_clusters, n_features)
        and gives the initial centers.

    n_init : int, default: 10
        Number of time the k-means algorithm will be run with different
        centroid seeds. The final results will be the best output of
        n_init consecutive runs in terms of inertia.

    max_iter : int, default: 300
        Maximum number of iterations of the k-means algorithm for a
        single run.

    tol : float, default: 1e-4
        Relative tolerance with regards to inertia to declare convergence

    precompute_distances : {'auto', True, False}
        Precompute distances (faster but takes more memory).

        'auto' : do not precompute distances if n_samples * n_clusters > 12
        million. This corresponds to about 100MB overhead per job using
        double precision.

        True : always precompute distances

        False : never precompute distances

    verbose : int, default 0
        Verbosity mode.

    random_state : int, RandomState instance or None, optional, default: None
        If int, random_state is the seed used by the random number generator;
        If RandomState instance, random_state is the random number generator;
        If None, the random number generator is the RandomState instance used
        by `np.random`.

    copy_x : boolean, default True
        When pre-computing distances it is more numerically accurate to center
        the data first.  If copy_x is True, then the original data is not
        modified.  If False, the original data is modified, and put back before
        the function returns, but small numerical differences may be introduced
        by subtracting and then adding the data mean.

    n_jobs : int
        The number of jobs to use for the computation. This works by computing
        each of the n_init runs in parallel.

        If -1 all CPUs are used. If 1 is given, no parallel computing code is
        used at all, which is useful for debugging. For n_jobs below -1,
        (n_cpus + 1 + n_jobs) are used. Thus for n_jobs = -2, all CPUs but one
        are used.

    algorithm : "auto", "full" or "elkan", default="auto"
        K-means algorithm to use. The classical EM-style algorithm is "full".
        The "elkan" variation is more efficient by using the triangle
        inequality, but currently doesn't support sparse data. "auto" chooses
        "elkan" for dense data and "full" for sparse data.

    Attributes
    ----------
    cluster_centers_ : array, [n_clusters, n_features]
        Coordinates of cluster centers

    labels_ :
        Labels of each point

    inertia_ : float
        Sum of distances of samples to their closest cluster center.

    Examples
    --------

    >>> from sklearn.cluster import KMeans
    >>> import numpy as np
    >>> X = np.array([[1, 2], [1, 4], [1, 0],
    ...               [4, 2], [4, 4], [4, 0]])
    >>> kmeans = KMeans(n_clusters=2, random_state=0).fit(X)
    >>> kmeans.labels_
    array([0, 0, 0, 1, 1, 1], dtype=int32)
    >>> kmeans.predict([[0, 0], [4, 4]])
    array([0, 1], dtype=int32)
    >>> kmeans.cluster_centers_
    array([[ 1.,  2.],
           [ 4.,  2.]])

    See also
    --------

    MiniBatchKMeans
        Alternative online implementation that does incremental updates
        of the centers positions using mini-batches.
        For large scale learning (say n_samples > 10k) MiniBatchKMeans is
        probably much faster than the default batch implementation.

    Notes
    ------
    The k-means problem is solved using Lloyd's algorithm.

    The average complexity is given by O(k n T), were n is the number of
    samples and T is the number of iteration.

    The worst case complexity is given by O(n^(k+2/p)) with
    n = n_samples, p = n_features. (D. Arthur and S. Vassilvitskii,
    'How slow is the k-means method?' SoCG2006)

    In practice, the k-means algorithm is very fast (one of the fastest
    clustering algorithms available), but it falls in local minima. That's why
    it can be useful to restart it several times.

    """

    def __init__(self, n_clusters=8, init='k-means++', n_init=10,
                 max_iter=300, tol=1e-4, precompute_distances='auto',
                 verbose=0, random_state=None, copy_x=True,
                 n_jobs=1, algorithm='auto'):

        self.n_clusters = n_clusters
        self.init = init
        self.max_iter = max_iter
        self.tol = tol
        self.precompute_distances = precompute_distances
        self.n_init = n_init
        self.verbose = verbose
        self.random_state = random_state
        self.copy_x = copy_x
        self.n_jobs = n_jobs
        self.algorithm = algorithm

    def _check_fit_data(self, X):
        """Verify that the number of samples given is larger than k"""
        X = check_array(X, accept_sparse='csr', dtype=[np.float64, np.float32])
        if X.shape[0] < self.n_clusters:
            raise ValueError("n_samples=%d should be >= n_clusters=%d" % (
                X.shape[0], self.n_clusters))
        return X

    def _check_test_data(self, X):
        X = check_array(X, accept_sparse='csr', dtype=FLOAT_DTYPES)
        n_samples, n_features = X.shape
        expected_n_features = self.cluster_centers_.shape[1]
        if not n_features == expected_n_features:
            raise ValueError("Incorrect number of features. "
                             "Got %d features, expected %d" % (
                                 n_features, expected_n_features))

        return X

    def fit(self, X, y=None):
        """Compute k-means clustering.

        Parameters
        ----------
        X : array-like or sparse matrix, shape=(n_samples, n_features)
            Training instances to cluster.
        """
        # Added to remove scikit-learn internal dependenceies
        raise NotImplemented

    def fit_predict(self, X, y=None):
        """Compute cluster centers and predict cluster index for each sample.

        Convenience method; equivalent to calling fit(X) followed by
        predict(X).

        Parameters
        ----------
        X : {array-like, sparse matrix}, shape = [n_samples, n_features]
            New data to transform.

        Returns
        -------
        labels : array, shape [n_samples,]
            Index of the cluster each sample belongs to.
        """
        return self.fit(X).labels_

    def fit_transform(self, X, y=None):
        """Compute clustering and transform X to cluster-distance space.

        Equivalent to fit(X).transform(X), but more efficiently implemented.

        Parameters
        ----------
        X : {array-like, sparse matrix}, shape = [n_samples, n_features]
            New data to transform.

        Returns
        -------
        X_new : array, shape [n_samples, k]
            X transformed in the new space.
        """
        # Currently, this just skips a copy of the data if it is not in
        # np.array or CSR format already.
        # XXX This skips _check_test_data, which may change the dtype;
        # we should refactor the input validation.
        X = self._check_fit_data(X)
        return self.fit(X)._transform(X)

    def transform(self, X):
        """Transform X to a cluster-distance space.

        In the new space, each dimension is the distance to the cluster
        centers.  Note that even if X is sparse, the array returned by
        `transform` will typically be dense.

        Parameters
        ----------
        X : {array-like, sparse matrix}, shape = [n_samples, n_features]
            New data to transform.

        Returns
        -------
        X_new : array, shape [n_samples, k]
            X transformed in the new space.
        """
        check_is_fitted(self, 'cluster_centers_')

        X = self._check_test_data(X)
        return self._transform(X)

    def _transform(self, X):
        """guts of transform method; no input validation"""
        return euclidean_distances(X, self.cluster_centers_)

    def predict(self, X):
        """Predict the closest cluster each sample in X belongs to.

        In the vector quantization literature, `cluster_centers_` is called
        the code book and each value returned by `predict` is the index of
        the closest code in the code book.

        Parameters
        ----------
        X : {array-like, sparse matrix}, shape = [n_samples, n_features]
            New data to predict.

        Returns
        -------
        labels : array, shape [n_samples,]
            Index of the cluster each sample belongs to.
        """
        check_is_fitted(self, 'cluster_centers_')

        X = self._check_test_data(X)
        x_squared_norms = row_norms(X, squared=True)
        return _labels_inertia(X, x_squared_norms, self.cluster_centers_)[0]

    def score(self, X, y=None):
        """Opposite of the value of X on the K-means objective.

        Parameters
        ----------
        X : {array-like, sparse matrix}, shape = [n_samples, n_features]
            New data.

        Returns
        -------
        score : float
            Opposite of the value of X on the K-means objective.
        """
        check_is_fitted(self, 'cluster_centers_')

        X = self._check_test_data(X)
        x_squared_norms = row_norms(X, squared=True)
        return -_labels_inertia(X, x_squared_norms, self.cluster_centers_)[1]


================================================ FILE: docs/_modules/k_means_constrained/sklearn_import/base.html ================================================ k_means_constrained.sklearn_import.base — k-means-constrained 0.5.1 documentation
  • »
  • Module code »
  • k_means_constrained.sklearn_import.base

Source code for k_means_constrained.sklearn_import.base

import warnings
from collections import defaultdict

import numpy as np
import six

from k_means_constrained.sklearn_import import __version__
from k_means_constrained.sklearn_import.funcsigs import signature


class BaseEstimator(object):
    """Base class for all estimators in scikit-learn

    Notes
    -----
    All estimators should specify all the parameters that can be set
    at the class level in their ``__init__`` as explicit keyword
    arguments (no ``*args`` or ``**kwargs``).
    """

    @classmethod
    def _get_param_names(cls):
        """Get parameter names for the estimator"""
        # fetch the constructor or the original constructor before
        # deprecation wrapping if any
        init = getattr(cls.__init__, 'deprecated_original', cls.__init__)
        if init is object.__init__:
            # No explicit constructor to introspect
            return []

        # introspect the constructor arguments to find the model parameters
        # to represent
        init_signature = signature(init)
        # Consider the constructor parameters excluding 'self'
        parameters = [p for p in init_signature.parameters.values()
                      if p.name != 'self' and p.kind != p.VAR_KEYWORD]
        for p in parameters:
            if p.kind == p.VAR_POSITIONAL:
                raise RuntimeError("scikit-learn estimators should always "
                                   "specify their parameters in the signature"
                                   " of their __init__ (no varargs)."
                                   " %s with constructor %s doesn't "
                                   " follow this convention."
                                   % (cls, init_signature))
        # Extract and sort argument names excluding 'self'
        return sorted([p.name for p in parameters])

    def get_params(self, deep=True):
        """Get parameters for this estimator.

        Parameters
        ----------
        deep : boolean, optional
            If True, will return the parameters for this estimator and
            contained subobjects that are estimators.

        Returns
        -------
        params : mapping of string to any
            Parameter names mapped to their values.
        """
        out = dict()
        for key in self._get_param_names():
            # We need deprecation warnings to always be on in order to
            # catch deprecated param values.
            # This is set in utils/__init__.py but it gets overwritten
            # when running under python3 somehow.
            warnings.simplefilter("always", DeprecationWarning)
            try:
                with warnings.catch_warnings(record=True) as w:
                    value = getattr(self, key, None)
                if len(w) and w[0].category == DeprecationWarning:
                    # if the parameter is deprecated, don't show it
                    continue
            finally:
                warnings.filters.pop(0)

            # XXX: should we rather test if instance of estimator?
            if deep and hasattr(value, 'get_params'):
                deep_items = value.get_params().items()
                out.update((key + '__' + k, val) for k, val in deep_items)
            out[key] = value
        return out

    def set_params(self, **params):
        """Set the parameters of this estimator.

        The method works on simple estimators as well as on nested objects
        (such as pipelines). The latter have parameters of the form
        ``<component>__<parameter>`` so that it's possible to update each
        component of a nested object.

        Returns
        -------
        self
        """
        if not params:
            # Simple optimization to gain speed (inspect is slow)
            return self
        valid_params = self.get_params(deep=True)

        nested_params = defaultdict(dict)  # grouped by prefix
        for key, value in params.items():
            key, delim, sub_key = key.partition('__')
            if key not in valid_params:
                raise ValueError('Invalid parameter %s for estimator %s. '
                                 'Check the list of available parameters '
                                 'with `estimator.get_params().keys()`.' %
                                 (key, self))

            if delim:
                nested_params[key][sub_key] = value
            else:
                setattr(self, key, value)

        for key, sub_params in nested_params.items():
            valid_params[key].set_params(**sub_params)

        return self

    def __repr__(self):
        class_name = self.__class__.__name__
        return '%s(%s)' % (class_name, _pprint(self.get_params(deep=False),
                                               offset=len(class_name),),)

    def __getstate__(self):
        try:
            state = super(BaseEstimator, self).__getstate__()
        except AttributeError:
            state = self.__dict__.copy()

        if type(self).__module__.startswith('sklearn.'):
            return dict(state.items(), _sklearn_version=__version__)
        else:
            return state

    def __setstate__(self, state):
        if type(self).__module__.startswith('sklearn.'):
            pickle_version = state.pop("_sklearn_version", "pre-0.18")
            if pickle_version != __version__:
                warnings.warn(
                    "Trying to unpickle estimator {0} from version {1} when "
                    "using version {2}. This might lead to breaking code or "
                    "invalid results. Use at your own risk.".format(
                        self.__class__.__name__, pickle_version, __version__),
                    UserWarning)
        try:
            super(BaseEstimator, self).__setstate__(state)
        except AttributeError:
            self.__dict__.update(state)


class ClusterMixin(object):
    """Mixin class for all cluster estimators in scikit-learn."""
    _estimator_type = "clusterer"

    def fit_predict(self, X, y=None):
        """Performs clustering on X and returns cluster labels.

        Parameters
        ----------
        X : ndarray, shape (n_samples, n_features)
            Input data.

        Returns
        -------
        y : ndarray, shape (n_samples,)
            cluster labels
        """
        # non-optimized default implementation; override when a better
        # method is possible for a given clustering algorithm
        self.fit(X)
        return self.labels_


class TransformerMixin(object):
    """Mixin class for all transformers in scikit-learn."""

    def fit_transform(self, X, y=None, **fit_params):
        """Fit to data, then transform it.

        Fits transformer to X and y with optional parameters fit_params
        and returns a transformed version of X.

        Parameters
        ----------
        X : numpy array of shape [n_samples, n_features]
            Training set.

        y : numpy array of shape [n_samples]
            Target values.

        Returns
        -------
        X_new : numpy array of shape [n_samples, n_features_new]
            Transformed array.

        """
        # non-optimized default implementation; override when a better
        # method is possible for a given clustering algorithm
        if y is None:
            # fit method of arity 1 (unsupervised transformation)
            return self.fit(X, **fit_params).transform(X)
        else:
            # fit method of arity 2 (supervised transformation)
            return self.fit(X, y, **fit_params).transform(X)


def _pprint(params, offset=0, printer=repr):
    """Pretty print the dictionary 'params'

    Parameters
    ----------
    params : dict
        The dictionary to pretty print

    offset : int
        The offset in characters to add at the begin of each line.

    printer : callable
        The function to convert entries to strings, typically
        the builtin str or repr

    """
    # Do a multi-line justified repr:
    options = np.get_printoptions()
    np.set_printoptions(precision=5, threshold=64, edgeitems=2)
    params_list = list()
    this_line_length = offset
    line_sep = ',\n' + (1 + offset // 2) * ' '
    for i, (k, v) in enumerate(sorted(six.iteritems(params))):
        if type(v) is float:
            # use str for representing floating point numbers
            # this way we get consistent representation across
            # architectures and versions.
            this_repr = '%s=%s' % (k, str(v))
        else:
            # use repr of the rest
            this_repr = '%s=%s' % (k, printer(v))
        if len(this_repr) > 500:
            this_repr = this_repr[:300] + '...' + this_repr[-100:]
        if i > 0:
            if (this_line_length + len(this_repr) >= 75 or '\n' in this_repr):
                params_list.append(line_sep)
                this_line_length = len(line_sep)
            else:
                params_list.append(', ')
                this_line_length += 2
        params_list.append(this_repr)
        this_line_length += len(this_repr)

    np.set_printoptions(**options)
    lines = ''.join(params_list)
    # Strip trailing space to avoid nightmare in doctests
    lines = '\n'.join(l.rstrip(' ') for l in lines.split('\n'))
    return lines
================================================ FILE: docs/_modules/k_means_constrained/sklearn_import/cluster/k_means_.html ================================================ k_means_constrained.sklearn_import.cluster.k_means_ — k-means-constrained 0.5.1 documentation
  • »
  • Module code »
  • k_means_constrained.sklearn_import.cluster.k_means_

Source code for k_means_constrained.sklearn_import.cluster.k_means_

"""K-means clustering"""

# Authors: Gael Varoquaux <gael.varoquaux@normalesup.org>
#          Thomas Rueckstiess <ruecksti@in.tum.de>
#          James Bergstra <james.bergstra@umontreal.ca>
#          Jan Schlueter <scikit-learn@jan-schlueter.de>
#          Nelle Varoquaux
#          Peter Prettenhofer <peter.prettenhofer@gmail.com>
#          Olivier Grisel <olivier.grisel@ensta.org>
#          Mathieu Blondel <mathieu@mblondel.org>
#          Robert Layton <robertlayton@gmail.com>
# License: BSD 3 clause

import warnings

import numpy as np
import scipy.sparse as sp
from k_means_constrained.sklearn_import.base import BaseEstimator, ClusterMixin, TransformerMixin
from six import string_types
from k_means_constrained.sklearn_import.metrics.pairwise import euclidean_distances, pairwise_distances_argmin_min
from k_means_constrained.sklearn_import.utils.validation import check_array, check_random_state, FLOAT_DTYPES, \
    check_is_fitted
from k_means_constrained.sklearn_import.utils.extmath import row_norms, stable_cumsum
from k_means_constrained.sklearn_import.utils.sparsefuncs import mean_variance_axis

from k_means_constrained.sklearn_import.cluster import _k_means


###############################################################################
# Initialization heuristic


def _k_init(X, n_clusters, x_squared_norms, random_state, n_local_trials=None):
    """Init n_clusters seeds according to k-means++

    Parameters
    -----------
    X : array or sparse matrix, shape (n_samples, n_features)
        The data to pick seeds for. To avoid memory copy, the input data
        should be double precision (dtype=np.float64).

    n_clusters : integer
        The number of seeds to choose

    x_squared_norms : array, shape (n_samples,)
        Squared Euclidean norm of each data point.

    random_state : numpy.RandomState
        The generator used to initialize the centers.

    n_local_trials : integer, optional
        The number of seeding trials for each center (except the first),
        of which the one reducing inertia the most is greedily chosen.
        Set to None to make the number of trials depend logarithmically
        on the number of seeds (2+log(k)); this is the default.

    Notes
    -----
    Selects initial cluster centers for k-mean clustering in a smart way
    to speed up convergence. see: Arthur, D. and Vassilvitskii, S.
    "k-means++: the advantages of careful seeding". ACM-SIAM symposium
    on Discrete algorithms. 2007

    Version ported from http://www.stanford.edu/~darthur/kMeansppTest.zip,
    which is the implementation used in the aforementioned paper.
    """
    n_samples, n_features = X.shape

    centers = np.empty((n_clusters, n_features), dtype=X.dtype)

    assert x_squared_norms is not None, 'x_squared_norms None in _k_init'

    # Set the number of local seeding trials if none is given
    if n_local_trials is None:
        # This is what Arthur/Vassilvitskii tried, but did not report
        # specific results for other than mentioning in the conclusion
        # that it helped.
        n_local_trials = 2 + int(np.log(n_clusters))

    # Pick first center randomly
    center_id = random_state.randint(n_samples)
    if sp.issparse(X):
        centers[0] = X[center_id].toarray()
    else:
        centers[0] = X[center_id]

    # Initialize list of closest distances and calculate current potential
    closest_dist_sq = euclidean_distances(
        centers[0, np.newaxis], X, Y_norm_squared=x_squared_norms,
        squared=True)
    current_pot = closest_dist_sq.sum()

    # Pick the remaining n_clusters-1 points
    for c in range(1, n_clusters):
        # Choose center candidates by sampling with probability proportional
        # to the squared distance to the closest existing center
        rand_vals = random_state.random_sample(n_local_trials) * current_pot
        candidate_ids = np.searchsorted(stable_cumsum(closest_dist_sq),
                                        rand_vals)

        # Compute distances to center candidates
        distance_to_candidates = euclidean_distances(
            X[candidate_ids], X, Y_norm_squared=x_squared_norms, squared=True)

        # Decide which candidate is the best
        best_candidate = None
        best_pot = None
        best_dist_sq = None
        for trial in range(n_local_trials):
            # Compute potential when including center candidate
            new_dist_sq = np.minimum(closest_dist_sq,
                                     distance_to_candidates[trial])
            new_pot = new_dist_sq.sum()

            # Store result if it is the best local trial so far
            if (best_candidate is None) or (new_pot < best_pot):
                best_candidate = candidate_ids[trial]
                best_pot = new_pot
                best_dist_sq = new_dist_sq

        # Permanently add best center candidate found in local tries
        if sp.issparse(X):
            centers[c] = X[best_candidate].toarray()
        else:
            centers[c] = X[best_candidate]
        current_pot = best_pot
        closest_dist_sq = best_dist_sq

    return centers


###############################################################################
# K-means batch estimation by EM (expectation maximization)

def _validate_center_shape(X, n_centers, centers):
    """Check if centers is compatible with X and n_centers"""
    if len(centers) != n_centers:
        raise ValueError('The shape of the initial centers (%s) '
                         'does not match the number of clusters %i'
                         % (centers.shape, n_centers))
    if centers.shape[1] != X.shape[1]:
        raise ValueError(
            "The number of features of the initial centers %s "
            "does not match the number of features of the data %s."
            % (centers.shape[1], X.shape[1]))


def _tolerance(X, tol):
    """Return a tolerance which is independent of the dataset"""
    if sp.issparse(X):
        variances = mean_variance_axis(X, axis=0)[1]
    else:
        variances = np.var(X, axis=0)
    return np.mean(variances) * tol


def _labels_inertia_precompute_dense(X, x_squared_norms, centers, distances):
    """Compute labels and inertia using a full distance matrix.

    This will overwrite the 'distances' array in-place.

    Parameters
    ----------
    X : numpy array, shape (n_sample, n_features)
        Input data.

    x_squared_norms : numpy array, shape (n_samples,)
        Precomputed squared norms of X.

    centers : numpy array, shape (n_clusters, n_features)
        Cluster centers which data is assigned to.

    distances : numpy array, shape (n_samples,)
        Pre-allocated array in which distances are stored.

    Returns
    -------
    labels : numpy array, dtype=np.int, shape (n_samples,)
        Indices of clusters that samples are assigned to.

    inertia : float
        Sum of distances of samples to their closest cluster center.

    """
    n_samples = X.shape[0]

    # Breakup nearest neighbor distance computation into batches to prevent
    # memory blowup in the case of a large number of samples and clusters.
    # TODO: Once PR #7383 is merged use check_inputs=False in metric_kwargs.
    labels, mindist = pairwise_distances_argmin_min(
        X=X, Y=centers, metric='euclidean', metric_kwargs={'squared': True})
    # cython k-means code assumes int32 inputs
    labels = labels.astype(np.int32)
    if n_samples == distances.shape[0]:
        # distances will be changed in-place
        distances[:] = mindist
    inertia = mindist.sum()
    return labels, inertia


def _labels_inertia(X, x_squared_norms, centers,
                    precompute_distances=True, distances=None):
    """E step of the K-means EM algorithm.

    Compute the labels and the inertia of the given samples and centers.
    This will compute the distances in-place.

    Parameters
    ----------
    X : float64 array-like or CSR sparse matrix, shape (n_samples, n_features)
        The input samples to assign to the labels.

    x_squared_norms : array, shape (n_samples,)
        Precomputed squared euclidean norm of each data point, to speed up
        computations.

    centers : float array, shape (k, n_features)
        The cluster centers.

    precompute_distances : boolean, default: True
        Precompute distances (faster but takes more memory).

    distances : float array, shape (n_samples,)
        Pre-allocated array to be filled in with each sample's distance
        to the closest center.

    Returns
    -------
    labels : int array of shape(n)
        The resulting assignment

    inertia : float
        Sum of distances of samples to their closest cluster center.
    """
    n_samples = X.shape[0]
    # set the default value of centers to -1 to be able to detect any anomaly
    # easily
    labels = -np.ones(n_samples, np.int32)
    if distances is None:
        distances = np.zeros(shape=(0,), dtype=X.dtype)
    # distances will be changed in-place
    if sp.issparse(X):
        inertia = _k_means._assign_labels_csr(
            X, x_squared_norms, centers, labels, distances=distances)
    else:
        if precompute_distances:
            return _labels_inertia_precompute_dense(X, x_squared_norms,
                                                    centers, distances)
        inertia = _k_means._assign_labels_array(
            X, x_squared_norms, centers, labels, distances=distances)
    return labels, inertia


def _init_centroids(X, k, init, random_state=None, x_squared_norms=None,
                    init_size=None):
    """Compute the initial centroids

    Parameters
    ----------

    X : array, shape (n_samples, n_features)

    k : int
        number of centroids

    init : {'k-means++', 'random' or ndarray or callable} optional
        Method for initialization

    random_state : int, RandomState instance or None, optional, default: None
        If int, random_state is the seed used by the random number generator;
        If RandomState instance, random_state is the random number generator;
        If None, the random number generator is the RandomState instance used
        by `np.random`.

    x_squared_norms :  array, shape (n_samples,), optional
        Squared euclidean norm of each data point. Pass it if you have it at
        hands already to avoid it being recomputed here. Default: None

    init_size : int, optional
        Number of samples to randomly sample for speeding up the
        initialization (sometimes at the expense of accuracy): the
        only algorithm is initialized by running a batch KMeans on a
        random subset of the data. This needs to be larger than k.

    Returns
    -------
    centers : array, shape(k, n_features)
    """
    random_state = check_random_state(random_state)
    n_samples = X.shape[0]

    if x_squared_norms is None:
        x_squared_norms = row_norms(X, squared=True)

    if init_size is not None and init_size < n_samples:
        if init_size < k:
            warnings.warn(
                "init_size=%d should be larger than k=%d. "
                "Setting it to 3*k" % (init_size, k),
                RuntimeWarning, stacklevel=2)
            init_size = 3 * k
        init_indices = random_state.randint(0, n_samples, init_size)
        X = X[init_indices]
        x_squared_norms = x_squared_norms[init_indices]
        n_samples = X.shape[0]
    elif n_samples < k:
        raise ValueError(
            "n_samples=%d should be larger than k=%d" % (n_samples, k))

    if isinstance(init, string_types) and init == 'k-means++':
        centers = _k_init(X, k, random_state=random_state,
                          x_squared_norms=x_squared_norms)
    elif isinstance(init, string_types) and init == 'random':
        seeds = random_state.permutation(n_samples)[:k]
        centers = X[seeds]
    elif hasattr(init, '__array__'):
        # ensure that the centers have the same dtype as X
        # this is a requirement of fused types of cython
        centers = np.array(init, dtype=X.dtype)
    elif callable(init):
        centers = init(X, k, random_state=random_state)
        centers = np.asarray(centers, dtype=X.dtype)
    else:
        raise ValueError("the init parameter for the k-means should "
                         "be 'k-means++' or 'random' or an ndarray, "
                         "'%s' (type '%s') was passed." % (init, type(init)))

    if sp.issparse(centers):
        centers = centers.toarray()

    _validate_center_shape(X, k, centers)
    return centers


class KMeans(BaseEstimator, ClusterMixin, TransformerMixin):
    """K-Means clustering

    Read more in the :ref:`User Guide <k_means>`.

    Parameters
    ----------

    n_clusters : int, optional, default: 8
        The number of clusters to form as well as the number of
        centroids to generate.

    init : {'k-means++', 'random' or an ndarray}
        Method for initialization, defaults to 'k-means++':

        'k-means++' : selects initial cluster centers for k-mean
        clustering in a smart way to speed up convergence. See section
        Notes in k_init for more details.

        'random': choose k observations (rows) at random from data for
        the initial centroids.

        If an ndarray is passed, it should be of shape (n_clusters, n_features)
        and gives the initial centers.

    n_init : int, default: 10
        Number of time the k-means algorithm will be run with different
        centroid seeds. The final results will be the best output of
        n_init consecutive runs in terms of inertia.

    max_iter : int, default: 300
        Maximum number of iterations of the k-means algorithm for a
        single run.

    tol : float, default: 1e-4
        Relative tolerance with regards to inertia to declare convergence

    precompute_distances : {'auto', True, False}
        Precompute distances (faster but takes more memory).

        'auto' : do not precompute distances if n_samples * n_clusters > 12
        million. This corresponds to about 100MB overhead per job using
        double precision.

        True : always precompute distances

        False : never precompute distances

    verbose : int, default 0
        Verbosity mode.

    random_state : int, RandomState instance or None, optional, default: None
        If int, random_state is the seed used by the random number generator;
        If RandomState instance, random_state is the random number generator;
        If None, the random number generator is the RandomState instance used
        by `np.random`.

    copy_x : boolean, default True
        When pre-computing distances it is more numerically accurate to center
        the data first.  If copy_x is True, then the original data is not
        modified.  If False, the original data is modified, and put back before
        the function returns, but small numerical differences may be introduced
        by subtracting and then adding the data mean.

    n_jobs : int
        The number of jobs to use for the computation. This works by computing
        each of the n_init runs in parallel.

        If -1 all CPUs are used. If 1 is given, no parallel computing code is
        used at all, which is useful for debugging. For n_jobs below -1,
        (n_cpus + 1 + n_jobs) are used. Thus for n_jobs = -2, all CPUs but one
        are used.

    algorithm : "auto", "full" or "elkan", default="auto"
        K-means algorithm to use. The classical EM-style algorithm is "full".
        The "elkan" variation is more efficient by using the triangle
        inequality, but currently doesn't support sparse data. "auto" chooses
        "elkan" for dense data and "full" for sparse data.

    Attributes
    ----------
    cluster_centers_ : array, [n_clusters, n_features]
        Coordinates of cluster centers

    labels_ :
        Labels of each point

    inertia_ : float
        Sum of distances of samples to their closest cluster center.

    Examples
    --------

    >>> from sklearn.cluster import KMeans
    >>> import numpy as np
    >>> X = np.array([[1, 2], [1, 4], [1, 0],
    ...               [4, 2], [4, 4], [4, 0]])
    >>> kmeans = KMeans(n_clusters=2, random_state=0).fit(X)
    >>> kmeans.labels_
    array([0, 0, 0, 1, 1, 1], dtype=int32)
    >>> kmeans.predict([[0, 0], [4, 4]])
    array([0, 1], dtype=int32)
    >>> kmeans.cluster_centers_
    array([[ 1.,  2.],
           [ 4.,  2.]])

    See also
    --------

    MiniBatchKMeans
        Alternative online implementation that does incremental updates
        of the centers positions using mini-batches.
        For large scale learning (say n_samples > 10k) MiniBatchKMeans is
        probably much faster than the default batch implementation.

    Notes
    ------
    The k-means problem is solved using Lloyd's algorithm.

    The average complexity is given by O(k n T), were n is the number of
    samples and T is the number of iteration.

    The worst case complexity is given by O(n^(k+2/p)) with
    n = n_samples, p = n_features. (D. Arthur and S. Vassilvitskii,
    'How slow is the k-means method?' SoCG2006)

    In practice, the k-means algorithm is very fast (one of the fastest
    clustering algorithms available), but it falls in local minima. That's why
    it can be useful to restart it several times.

    """

    def __init__(self, n_clusters=8, init='k-means++', n_init=10,
                 max_iter=300, tol=1e-4, precompute_distances='auto',
                 verbose=0, random_state=None, copy_x=True,
                 n_jobs=1, algorithm='auto'):

        self.n_clusters = n_clusters
        self.init = init
        self.max_iter = max_iter
        self.tol = tol
        self.precompute_distances = precompute_distances
        self.n_init = n_init
        self.verbose = verbose
        self.random_state = random_state
        self.copy_x = copy_x
        self.n_jobs = n_jobs
        self.algorithm = algorithm

    def _check_fit_data(self, X):
        """Verify that the number of samples given is larger than k"""
        X = check_array(X, accept_sparse='csr', dtype=[np.float64, np.float32])
        if X.shape[0] < self.n_clusters:
            raise ValueError("n_samples=%d should be >= n_clusters=%d" % (
                X.shape[0], self.n_clusters))
        return X

    def _check_test_data(self, X):
        X = check_array(X, accept_sparse='csr', dtype=FLOAT_DTYPES)
        n_samples, n_features = X.shape
        expected_n_features = self.cluster_centers_.shape[1]
        if not n_features == expected_n_features:
            raise ValueError("Incorrect number of features. "
                             "Got %d features, expected %d" % (
                                 n_features, expected_n_features))

        return X

    def fit(self, X, y=None):
        """Compute k-means clustering.

        Parameters
        ----------
        X : array-like or sparse matrix, shape=(n_samples, n_features)
            Training instances to cluster.
        """
        # Added to remove scikit-learn internal dependenceies
        raise NotImplemented

    def fit_predict(self, X, y=None):
        """Compute cluster centers and predict cluster index for each sample.

        Convenience method; equivalent to calling fit(X) followed by
        predict(X).

        Parameters
        ----------
        X : {array-like, sparse matrix}, shape = [n_samples, n_features]
            New data to transform.

        Returns
        -------
        labels : array, shape [n_samples,]
            Index of the cluster each sample belongs to.
        """
        return self.fit(X).labels_

    def fit_transform(self, X, y=None):
        """Compute clustering and transform X to cluster-distance space.

        Equivalent to fit(X).transform(X), but more efficiently implemented.

        Parameters
        ----------
        X : {array-like, sparse matrix}, shape = [n_samples, n_features]
            New data to transform.

        Returns
        -------
        X_new : array, shape [n_samples, k]
            X transformed in the new space.
        """
        # Currently, this just skips a copy of the data if it is not in
        # np.array or CSR format already.
        # XXX This skips _check_test_data, which may change the dtype;
        # we should refactor the input validation.
        X = self._check_fit_data(X)
        return self.fit(X)._transform(X)

    def transform(self, X):
        """Transform X to a cluster-distance space.

        In the new space, each dimension is the distance to the cluster
        centers.  Note that even if X is sparse, the array returned by
        `transform` will typically be dense.

        Parameters
        ----------
        X : {array-like, sparse matrix}, shape = [n_samples, n_features]
            New data to transform.

        Returns
        -------
        X_new : array, shape [n_samples, k]
            X transformed in the new space.
        """
        check_is_fitted(self, 'cluster_centers_')

        X = self._check_test_data(X)
        return self._transform(X)

    def _transform(self, X):
        """guts of transform method; no input validation"""
        return euclidean_distances(X, self.cluster_centers_)

    def predict(self, X):
        """Predict the closest cluster each sample in X belongs to.

        In the vector quantization literature, `cluster_centers_` is called
        the code book and each value returned by `predict` is the index of
        the closest code in the code book.

        Parameters
        ----------
        X : {array-like, sparse matrix}, shape = [n_samples, n_features]
            New data to predict.

        Returns
        -------
        labels : array, shape [n_samples,]
            Index of the cluster each sample belongs to.
        """
        check_is_fitted(self, 'cluster_centers_')

        X = self._check_test_data(X)
        x_squared_norms = row_norms(X, squared=True)
        return _labels_inertia(X, x_squared_norms, self.cluster_centers_)[0]

    def score(self, X, y=None):
        """Opposite of the value of X on the K-means objective.

        Parameters
        ----------
        X : {array-like, sparse matrix}, shape = [n_samples, n_features]
            New data.

        Returns
        -------
        score : float
            Opposite of the value of X on the K-means objective.
        """
        check_is_fitted(self, 'cluster_centers_')

        X = self._check_test_data(X)
        x_squared_norms = row_norms(X, squared=True)
        return -_labels_inertia(X, x_squared_norms, self.cluster_centers_)[1]


================================================ FILE: docs/_modules/sklearn/base.html ================================================ sklearn.base — k-means-constrained 0.0.2 documentation

Source code for sklearn.base

"""Base classes for all estimators."""

# Author: Gael Varoquaux <gael.varoquaux@normalesup.org>
# License: BSD 3 clause

import copy
import warnings
from collections import defaultdict
import platform
import inspect
import re

import numpy as np

from . import __version__
from .utils import _IS_32BIT

_DEFAULT_TAGS = {
    'non_deterministic': False,
    'requires_positive_data': False,
    'X_types': ['2darray'],
    'poor_score': False,
    'no_validation': False,
    'multioutput': False,
    "allow_nan": False,
    'stateless': False,
    'multilabel': False,
    '_skip_test': False,
    'multioutput_only': False}


def clone(estimator, safe=True):
    """Constructs a new estimator with the same parameters.

    Clone does a deep copy of the model in an estimator
    without actually copying attached data. It yields a new estimator
    with the same parameters that has not been fit on any data.

    Parameters
    ----------
    estimator : estimator object, or list, tuple or set of objects
        The estimator or group of estimators to be cloned

    safe : boolean, optional
        If safe is false, clone will fall back to a deep copy on objects
        that are not estimators.

    """
    estimator_type = type(estimator)
    # XXX: not handling dictionaries
    if estimator_type in (list, tuple, set, frozenset):
        return estimator_type([clone(e, safe=safe) for e in estimator])
    elif not hasattr(estimator, 'get_params') or isinstance(estimator, type):
        if not safe:
            return copy.deepcopy(estimator)
        else:
            raise TypeError("Cannot clone object '%s' (type %s): "
                            "it does not seem to be a scikit-learn estimator "
                            "as it does not implement a 'get_params' methods."
                            % (repr(estimator), type(estimator)))
    klass = estimator.__class__
    new_object_params = estimator.get_params(deep=False)
    for name, param in new_object_params.items():
        new_object_params[name] = clone(param, safe=False)
    new_object = klass(**new_object_params)
    params_set = new_object.get_params(deep=False)

    # quick sanity check of the parameters of the clone
    for name in new_object_params:
        param1 = new_object_params[name]
        param2 = params_set[name]
        if param1 is not param2:
            raise RuntimeError('Cannot clone object %s, as the constructor '
                               'either does not set or modifies parameter %s' %
                               (estimator, name))
    return new_object


def _pprint(params, offset=0, printer=repr):
    """Pretty print the dictionary 'params'

    Parameters
    ----------
    params : dict
        The dictionary to pretty print

    offset : int
        The offset in characters to add at the begin of each line.

    printer : callable
        The function to convert entries to strings, typically
        the builtin str or repr

    """
    # Do a multi-line justified repr:
    options = np.get_printoptions()
    np.set_printoptions(precision=5, threshold=64, edgeitems=2)
    params_list = list()
    this_line_length = offset
    line_sep = ',\n' + (1 + offset // 2) * ' '
    for i, (k, v) in enumerate(sorted(params.items())):
        if type(v) is float:
            # use str for representing floating point numbers
            # this way we get consistent representation across
            # architectures and versions.
            this_repr = '%s=%s' % (k, str(v))
        else:
            # use repr of the rest
            this_repr = '%s=%s' % (k, printer(v))
        if len(this_repr) > 500:
            this_repr = this_repr[:300] + '...' + this_repr[-100:]
        if i > 0:
            if (this_line_length + len(this_repr) >= 75 or '\n' in this_repr):
                params_list.append(line_sep)
                this_line_length = len(line_sep)
            else:
                params_list.append(', ')
                this_line_length += 2
        params_list.append(this_repr)
        this_line_length += len(this_repr)

    np.set_printoptions(**options)
    lines = ''.join(params_list)
    # Strip trailing space to avoid nightmare in doctests
    lines = '\n'.join(l.rstrip(' ') for l in lines.split('\n'))
    return lines


def _update_if_consistent(dict1, dict2):
    common_keys = set(dict1.keys()).intersection(dict2.keys())
    for key in common_keys:
        if dict1[key] != dict2[key]:
            raise TypeError("Inconsistent values for tag {}: {} != {}".format(
                key, dict1[key], dict2[key]
            ))
    dict1.update(dict2)
    return dict1


class BaseEstimator:
    """Base class for all estimators in scikit-learn

    Notes
    -----
    All estimators should specify all the parameters that can be set
    at the class level in their ``__init__`` as explicit keyword
    arguments (no ``*args`` or ``**kwargs``).
    """

    @classmethod
    def _get_param_names(cls):
        """Get parameter names for the estimator"""
        # fetch the constructor or the original constructor before
        # deprecation wrapping if any
        init = getattr(cls.__init__, 'deprecated_original', cls.__init__)
        if init is object.__init__:
            # No explicit constructor to introspect
            return []

        # introspect the constructor arguments to find the model parameters
        # to represent
        init_signature = inspect.signature(init)
        # Consider the constructor parameters excluding 'self'
        parameters = [p for p in init_signature.parameters.values()
                      if p.name != 'self' and p.kind != p.VAR_KEYWORD]
        for p in parameters:
            if p.kind == p.VAR_POSITIONAL:
                raise RuntimeError("scikit-learn estimators should always "
                                   "specify their parameters in the signature"
                                   " of their __init__ (no varargs)."
                                   " %s with constructor %s doesn't "
                                   " follow this convention."
                                   % (cls, init_signature))
        # Extract and sort argument names excluding 'self'
        return sorted([p.name for p in parameters])

    def get_params(self, deep=True):
        """Get parameters for this estimator.

        Parameters
        ----------
        deep : boolean, optional
            If True, will return the parameters for this estimator and
            contained subobjects that are estimators.

        Returns
        -------
        params : mapping of string to any
            Parameter names mapped to their values.
        """
        out = dict()
        for key in self._get_param_names():
            value = getattr(self, key, None)
            if deep and hasattr(value, 'get_params'):
                deep_items = value.get_params().items()
                out.update((key + '__' + k, val) for k, val in deep_items)
            out[key] = value
        return out

    def set_params(self, **params):
        """Set the parameters of this estimator.

        The method works on simple estimators as well as on nested objects
        (such as pipelines). The latter have parameters of the form
        ``<component>__<parameter>`` so that it's possible to update each
        component of a nested object.

        Returns
        -------
        self
        """
        if not params:
            # Simple optimization to gain speed (inspect is slow)
            return self
        valid_params = self.get_params(deep=True)

        nested_params = defaultdict(dict)  # grouped by prefix
        for key, value in params.items():
            key, delim, sub_key = key.partition('__')
            if key not in valid_params:
                raise ValueError('Invalid parameter %s for estimator %s. '
                                 'Check the list of available parameters '
                                 'with `estimator.get_params().keys()`.' %
                                 (key, self))

            if delim:
                nested_params[key][sub_key] = value
            else:
                setattr(self, key, value)
                valid_params[key] = value

        for key, sub_params in nested_params.items():
            valid_params[key].set_params(**sub_params)

        return self

    def __repr__(self, N_CHAR_MAX=700):
        # N_CHAR_MAX is the (approximate) maximum number of non-blank
        # characters to render. We pass it as an optional parameter to ease
        # the tests.

        from .utils._pprint import _EstimatorPrettyPrinter

        N_MAX_ELEMENTS_TO_SHOW = 30  # number of elements to show in sequences

        # use ellipsis for sequences with a lot of elements
        pp = _EstimatorPrettyPrinter(
            compact=True, indent=1, indent_at_name=True,
            n_max_elements_to_show=N_MAX_ELEMENTS_TO_SHOW)

        repr_ = pp.pformat(self)

        # Use bruteforce ellipsis when there are a lot of non-blank characters
        n_nonblank = len(''.join(repr_.split()))
        if n_nonblank > N_CHAR_MAX:
            lim = N_CHAR_MAX // 2  # apprx number of chars to keep on both ends
            regex = r'^(\s*\S){%d}' % lim
            # The regex '^(\s*\S){%d}' % n
            # matches from the start of the string until the nth non-blank
            # character:
            # - ^ matches the start of string
            # - (pattern){n} matches n repetitions of pattern
            # - \s*\S matches a non-blank char following zero or more blanks
            left_lim = re.match(regex, repr_).end()
            right_lim = re.match(regex, repr_[::-1]).end()

            if '\n' in repr_[left_lim:-right_lim]:
                # The left side and right side aren't on the same line.
                # To avoid weird cuts, e.g.:
                # categoric...ore',
                # we need to start the right side with an appropriate newline
                # character so that it renders properly as:
                # categoric...
                # handle_unknown='ignore',
                # so we add [^\n]*\n which matches until the next \n
                regex += r'[^\n]*\n'
                right_lim = re.match(regex, repr_[::-1]).end()

            ellipsis = '...'
            if left_lim + len(ellipsis) < len(repr_) - right_lim:
                # Only add ellipsis if it results in a shorter repr
                repr_ = repr_[:left_lim] + '...' + repr_[-right_lim:]

        return repr_

    def __getstate__(self):
        try:
            state = super().__getstate__()
        except AttributeError:
            state = self.__dict__.copy()

        if type(self).__module__.startswith('sklearn.'):
            return dict(state.items(), _sklearn_version=__version__)
        else:
            return state

    def __setstate__(self, state):
        if type(self).__module__.startswith('sklearn.'):
            pickle_version = state.pop("_sklearn_version", "pre-0.18")
            if pickle_version != __version__:
                warnings.warn(
                    "Trying to unpickle estimator {0} from version {1} when "
                    "using version {2}. This might lead to breaking code or "
                    "invalid results. Use at your own risk.".format(
                        self.__class__.__name__, pickle_version, __version__),
                    UserWarning)
        try:
            super().__setstate__(state)
        except AttributeError:
            self.__dict__.update(state)

    def _get_tags(self):
        collected_tags = {}
        for base_class in inspect.getmro(self.__class__):
            if (hasattr(base_class, '_more_tags')
                    and base_class != self.__class__):
                more_tags = base_class._more_tags(self)
                collected_tags = _update_if_consistent(collected_tags,
                                                       more_tags)
        if hasattr(self, '_more_tags'):
            more_tags = self._more_tags()
            collected_tags = _update_if_consistent(collected_tags, more_tags)
        tags = _DEFAULT_TAGS.copy()
        tags.update(collected_tags)
        return tags


class ClassifierMixin:
    """Mixin class for all classifiers in scikit-learn."""
    _estimator_type = "classifier"

    def score(self, X, y, sample_weight=None):
        """Returns the mean accuracy on the given test data and labels.

        In multi-label classification, this is the subset accuracy
        which is a harsh metric since you require for each sample that
        each label set be correctly predicted.

        Parameters
        ----------
        X : array-like, shape = (n_samples, n_features)
            Test samples.

        y : array-like, shape = (n_samples) or (n_samples, n_outputs)
            True labels for X.

        sample_weight : array-like, shape = [n_samples], optional
            Sample weights.

        Returns
        -------
        score : float
            Mean accuracy of self.predict(X) wrt. y.

        """
        from .metrics import accuracy_score
        return accuracy_score(y, self.predict(X), sample_weight=sample_weight)


class RegressorMixin:
    """Mixin class for all regression estimators in scikit-learn."""
    _estimator_type = "regressor"

    def score(self, X, y, sample_weight=None):
        """Returns the coefficient of determination R^2 of the prediction.

        The coefficient R^2 is defined as (1 - u/v), where u is the residual
        sum of squares ((y_true - y_pred) ** 2).sum() and v is the total
        sum of squares ((y_true - y_true.mean()) ** 2).sum().
        The best possible score is 1.0 and it can be negative (because the
        model can be arbitrarily worse). A constant model that always
        predicts the expected value of y, disregarding the input features,
        would get a R^2 score of 0.0.

        Parameters
        ----------
        X : array-like, shape = (n_samples, n_features)
            Test samples. For some estimators this may be a
            precomputed kernel matrix instead, shape = (n_samples,
            n_samples_fitted], where n_samples_fitted is the number of
            samples used in the fitting for the estimator.

        y : array-like, shape = (n_samples) or (n_samples, n_outputs)
            True values for X.

        sample_weight : array-like, shape = [n_samples], optional
            Sample weights.

        Returns
        -------
        score : float
            R^2 of self.predict(X) wrt. y.

        Notes
        -----
        The R2 score used when calling ``score`` on a regressor will use
        ``multioutput='uniform_average'`` from version 0.23 to keep consistent
        with `metrics.r2_score`. This will influence the ``score`` method of
        all the multioutput regressors (except for
        `multioutput.MultiOutputRegressor`). To specify the default value
        manually and avoid the warning, please either call `metrics.r2_score`
        directly or make a custom scorer with `metrics.make_scorer` (the
        built-in scorer ``'r2'`` uses ``multioutput='uniform_average'``).
        """

        from .metrics import r2_score
        from .metrics.regression import _check_reg_targets
        y_pred = self.predict(X)
        # XXX: Remove the check in 0.23
        y_type, _, _, _ = _check_reg_targets(y, y_pred, None)
        if y_type == 'continuous-multioutput':
            warnings.warn("The default value of multioutput (not exposed in "
                          "score method) will change from 'variance_weighted' "
                          "to 'uniform_average' in 0.23 to keep consistent "
                          "with 'metrics.r2_score'. To specify the default "
                          "value manually and avoid the warning, please "
                          "either call 'metrics.r2_score' directly or make a "
                          "custom scorer with 'metrics.make_scorer' (the "
                          "built-in scorer 'r2' uses "
                          "multioutput='uniform_average').", FutureWarning)
        return r2_score(y, y_pred, sample_weight=sample_weight,
                        multioutput='variance_weighted')


class ClusterMixin:
    """Mixin class for all cluster estimators in scikit-learn."""
    _estimator_type = "clusterer"

    def fit_predict(self, X, y=None):
        """Performs clustering on X and returns cluster labels.

        Parameters
        ----------
        X : ndarray, shape (n_samples, n_features)
            Input data.

        y : Ignored
            not used, present for API consistency by convention.

        Returns
        -------
        labels : ndarray, shape (n_samples,)
            cluster labels
        """
        # non-optimized default implementation; override when a better
        # method is possible for a given clustering algorithm
        self.fit(X)
        return self.labels_


class BiclusterMixin:
    """Mixin class for all bicluster estimators in scikit-learn"""

    @property
    def biclusters_(self):
        """Convenient way to get row and column indicators together.

        Returns the ``rows_`` and ``columns_`` members.
        """
        return self.rows_, self.columns_

    def get_indices(self, i):
        """Row and column indices of the i'th bicluster.

        Only works if ``rows_`` and ``columns_`` attributes exist.

        Parameters
        ----------
        i : int
            The index of the cluster.

        Returns
        -------
        row_ind : np.array, dtype=np.intp
            Indices of rows in the dataset that belong to the bicluster.
        col_ind : np.array, dtype=np.intp
            Indices of columns in the dataset that belong to the bicluster.

        """
        rows = self.rows_[i]
        columns = self.columns_[i]
        return np.nonzero(rows)[0], np.nonzero(columns)[0]

    def get_shape(self, i):
        """Shape of the i'th bicluster.

        Parameters
        ----------
        i : int
            The index of the cluster.

        Returns
        -------
        shape : (int, int)
            Number of rows and columns (resp.) in the bicluster.
        """
        indices = self.get_indices(i)
        return tuple(len(i) for i in indices)

    def get_submatrix(self, i, data):
        """Returns the submatrix corresponding to bicluster `i`.

        Parameters
        ----------
        i : int
            The index of the cluster.
        data : array
            The data.

        Returns
        -------
        submatrix : array
            The submatrix corresponding to bicluster i.

        Notes
        -----
        Works with sparse matrices. Only works if ``rows_`` and
        ``columns_`` attributes exist.
        """
        from .utils.validation import check_array
        data = check_array(data, accept_sparse='csr')
        row_ind, col_ind = self.get_indices(i)
        return data[row_ind[:, np.newaxis], col_ind]


class TransformerMixin:
    """Mixin class for all transformers in scikit-learn."""

    def fit_transform(self, X, y=None, **fit_params):
        """Fit to data, then transform it.

        Fits transformer to X and y with optional parameters fit_params
        and returns a transformed version of X.

        Parameters
        ----------
        X : numpy array of shape [n_samples, n_features]
            Training set.

        y : numpy array of shape [n_samples]
            Target values.

        Returns
        -------
        X_new : numpy array of shape [n_samples, n_features_new]
            Transformed array.

        """
        # non-optimized default implementation; override when a better
        # method is possible for a given clustering algorithm
        if y is None:
            # fit method of arity 1 (unsupervised transformation)
            return self.fit(X, **fit_params).transform(X)
        else:
            # fit method of arity 2 (supervised transformation)
            return self.fit(X, y, **fit_params).transform(X)


class DensityMixin:
    """Mixin class for all density estimators in scikit-learn."""
    _estimator_type = "DensityEstimator"

    def score(self, X, y=None):
        """Returns the score of the model on the data X

        Parameters
        ----------
        X : array-like, shape = (n_samples, n_features)

        Returns
        -------
        score : float
        """
        pass


class OutlierMixin:
    """Mixin class for all outlier detection estimators in scikit-learn."""
    _estimator_type = "outlier_detector"

    def fit_predict(self, X, y=None):
        """Performs fit on X and returns labels for X.

        Returns -1 for outliers and 1 for inliers.

        Parameters
        ----------
        X : ndarray, shape (n_samples, n_features)
            Input data.

        y : Ignored
            not used, present for API consistency by convention.

        Returns
        -------
        y : ndarray, shape (n_samples,)
            1 for inliers, -1 for outliers.
        """
        # override for transductive outlier detectors like LocalOulierFactor
        return self.fit(X).predict(X)


class MetaEstimatorMixin:
    _required_parameters = ["estimator"]
    """Mixin class for all meta estimators in scikit-learn."""


class MultiOutputMixin(object):
    """Mixin to mark estimators that support multioutput."""
    def _more_tags(self):
        return {'multioutput': True}


class _UnstableArchMixin(object):
    """Mark estimators that are non-determinstic on 32bit or PowerPC"""
    def _more_tags(self):
        return {'non_deterministic': (
            _IS_32BIT or platform.machine().startswith(('ppc', 'powerpc')))}


def is_classifier(estimator):
    """Returns True if the given estimator is (probably) a classifier.

    Parameters
    ----------
    estimator : object
        Estimator object to test.

    Returns
    -------
    out : bool
        True if estimator is a classifier and False otherwise.
    """
    return getattr(estimator, "_estimator_type", None) == "classifier"


def is_regressor(estimator):
    """Returns True if the given estimator is (probably) a regressor.

    Parameters
    ----------
    estimator : object
        Estimator object to test.

    Returns
    -------
    out : bool
        True if estimator is a regressor and False otherwise.
    """
    return getattr(estimator, "_estimator_type", None) == "regressor"


def is_outlier_detector(estimator):
    """Returns True if the given estimator is (probably) an outlier detector.

    Parameters
    ----------
    estimator : object
        Estimator object to test.

    Returns
    -------
    out : bool
        True if estimator is an outlier detector and False otherwise.
    """
    return getattr(estimator, "_estimator_type", None) == "outlier_detector"
================================================ FILE: docs/_sources/index.rst.txt ================================================ .. k-means-constrained documentation master file, created by sphinx-quickstart on Fri Mar 6 13:31:12 2020. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. Welcome to k-means-constrained's documentation! =============================================== The GitHub project can be found `here `_. To install k-means-constrained using pip: .. code-block:: python pip install k-means-constrained API documentation: .. automodule:: k_means_constrained :members: :undoc-members: :inherited-members: ================================================ FILE: docs/_sources/modules.rst.txt ================================================ k_means_constrained =================== .. toctree:: :maxdepth: 4 k_means_constrained ================================================ FILE: docs/_static/alabaster.css ================================================ @import url("basic.css"); /* -- page layout ----------------------------------------------------------- */ body { font-family: Georgia, serif; font-size: 17px; background-color: #fff; color: #000; margin: 0; padding: 0; } div.document { width: 940px; margin: 30px auto 0 auto; } div.documentwrapper { float: left; width: 100%; } div.bodywrapper { margin: 0 0 0 220px; } div.sphinxsidebar { width: 220px; font-size: 14px; line-height: 1.5; } hr { border: 1px solid #B1B4B6; } div.body { background-color: #fff; color: #3E4349; padding: 0 30px 0 30px; } div.body > .section { text-align: left; } div.footer { width: 940px; margin: 20px auto 30px auto; font-size: 14px; color: #888; text-align: right; } div.footer a { color: #888; } p.caption { font-family: inherit; font-size: inherit; } div.relations { display: none; } div.sphinxsidebar a { color: #444; text-decoration: none; border-bottom: 1px dotted #999; } div.sphinxsidebar a:hover { border-bottom: 1px solid #999; } div.sphinxsidebarwrapper { padding: 18px 10px; } div.sphinxsidebarwrapper p.logo { padding: 0; margin: -10px 0 0 0px; text-align: center; } div.sphinxsidebarwrapper h1.logo { margin-top: -10px; text-align: center; margin-bottom: 5px; text-align: left; } div.sphinxsidebarwrapper h1.logo-name { margin-top: 0px; } div.sphinxsidebarwrapper p.blurb { margin-top: 0; font-style: normal; } div.sphinxsidebar h3, div.sphinxsidebar h4 { font-family: Georgia, serif; color: #444; font-size: 24px; font-weight: normal; margin: 0 0 5px 0; padding: 0; } div.sphinxsidebar h4 { font-size: 20px; } div.sphinxsidebar h3 a { color: #444; } div.sphinxsidebar p.logo a, div.sphinxsidebar h3 a, div.sphinxsidebar p.logo a:hover, div.sphinxsidebar h3 a:hover { border: none; } div.sphinxsidebar p { color: #555; margin: 10px 0; } div.sphinxsidebar ul { margin: 10px 0; padding: 0; color: #000; } div.sphinxsidebar ul li.toctree-l1 > a { font-size: 120%; } div.sphinxsidebar ul li.toctree-l2 > a { font-size: 110%; } div.sphinxsidebar input { border: 1px solid #CCC; font-family: Georgia, serif; font-size: 1em; } div.sphinxsidebar hr { border: none; height: 1px; color: #AAA; background: #AAA; text-align: left; margin-left: 0; width: 50%; } div.sphinxsidebar .badge { border-bottom: none; } div.sphinxsidebar .badge:hover { border-bottom: none; } /* To address an issue with donation coming after search */ div.sphinxsidebar h3.donation { margin-top: 10px; } /* -- body styles ----------------------------------------------------------- */ a { color: #004B6B; text-decoration: underline; } a:hover { color: #6D4100; text-decoration: underline; } div.body h1, div.body h2, div.body h3, div.body h4, div.body h5, div.body h6 { font-family: Georgia, serif; font-weight: normal; margin: 30px 0px 10px 0px; padding: 0; } div.body h1 { margin-top: 0; padding-top: 0; font-size: 240%; } div.body h2 { font-size: 180%; } div.body h3 { font-size: 150%; } div.body h4 { font-size: 130%; } div.body h5 { font-size: 100%; } div.body h6 { font-size: 100%; } a.headerlink { color: #DDD; padding: 0 4px; text-decoration: none; } a.headerlink:hover { color: #444; background: #EAEAEA; } div.body p, div.body dd, div.body li { line-height: 1.4em; } div.admonition { margin: 20px 0px; padding: 10px 30px; background-color: #EEE; border: 1px solid #CCC; } div.admonition tt.xref, div.admonition code.xref, div.admonition a tt { background-color: #FBFBFB; border-bottom: 1px solid #fafafa; } div.admonition p.admonition-title { font-family: Georgia, serif; font-weight: normal; font-size: 24px; margin: 0 0 10px 0; padding: 0; line-height: 1; } div.admonition p.last { margin-bottom: 0; } div.highlight { background-color: #fff; } dt:target, .highlight { background: #FAF3E8; } div.warning { background-color: #FCC; border: 1px solid #FAA; } div.danger { background-color: #FCC; border: 1px solid #FAA; -moz-box-shadow: 2px 2px 4px #D52C2C; -webkit-box-shadow: 2px 2px 4px #D52C2C; box-shadow: 2px 2px 4px #D52C2C; } div.error { background-color: #FCC; border: 1px solid #FAA; -moz-box-shadow: 2px 2px 4px #D52C2C; -webkit-box-shadow: 2px 2px 4px #D52C2C; box-shadow: 2px 2px 4px #D52C2C; } div.caution { background-color: #FCC; border: 1px solid #FAA; } div.attention { background-color: #FCC; border: 1px solid #FAA; } div.important { background-color: #EEE; border: 1px solid #CCC; } div.note { background-color: #EEE; border: 1px solid #CCC; } div.tip { background-color: #EEE; border: 1px solid #CCC; } div.hint { background-color: #EEE; border: 1px solid #CCC; } div.seealso { background-color: #EEE; border: 1px solid #CCC; } div.topic { background-color: #EEE; } p.admonition-title { display: inline; } p.admonition-title:after { content: ":"; } pre, tt, code { font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; font-size: 0.9em; } .hll { background-color: #FFC; margin: 0 -12px; padding: 0 12px; display: block; } img.screenshot { } tt.descname, tt.descclassname, code.descname, code.descclassname { font-size: 0.95em; } tt.descname, code.descname { padding-right: 0.08em; } img.screenshot { -moz-box-shadow: 2px 2px 4px #EEE; -webkit-box-shadow: 2px 2px 4px #EEE; box-shadow: 2px 2px 4px #EEE; } table.docutils { border: 1px solid #888; -moz-box-shadow: 2px 2px 4px #EEE; -webkit-box-shadow: 2px 2px 4px #EEE; box-shadow: 2px 2px 4px #EEE; } table.docutils td, table.docutils th { border: 1px solid #888; padding: 0.25em 0.7em; } table.field-list, table.footnote { border: none; -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; } table.footnote { margin: 15px 0; width: 100%; border: 1px solid #EEE; background: #FDFDFD; font-size: 0.9em; } table.footnote + table.footnote { margin-top: -15px; border-top: none; } table.field-list th { padding: 0 0.8em 0 0; } table.field-list td { padding: 0; } table.field-list p { margin-bottom: 0.8em; } /* Cloned from * https://github.com/sphinx-doc/sphinx/commit/ef60dbfce09286b20b7385333d63a60321784e68 */ .field-name { -moz-hyphens: manual; -ms-hyphens: manual; -webkit-hyphens: manual; hyphens: manual; } table.footnote td.label { width: .1px; padding: 0.3em 0 0.3em 0.5em; } table.footnote td { padding: 0.3em 0.5em; } dl { margin: 0; padding: 0; } dl dd { margin-left: 30px; } blockquote { margin: 0 0 0 30px; padding: 0; } ul, ol { /* Matches the 30px from the narrow-screen "li > ul" selector below */ margin: 10px 0 10px 30px; padding: 0; } pre { background: #EEE; padding: 7px 30px; margin: 15px 0px; line-height: 1.3em; } div.viewcode-block:target { background: #ffd; } dl pre, blockquote pre, li pre { margin-left: 0; padding-left: 30px; } tt, code { background-color: #ecf0f3; color: #222; /* padding: 1px 2px; */ } tt.xref, code.xref, a tt { background-color: #FBFBFB; border-bottom: 1px solid #fff; } a.reference { text-decoration: none; border-bottom: 1px dotted #004B6B; } /* Don't put an underline on images */ a.image-reference, a.image-reference:hover { border-bottom: none; } a.reference:hover { border-bottom: 1px solid #6D4100; } a.footnote-reference { text-decoration: none; font-size: 0.7em; vertical-align: top; border-bottom: 1px dotted #004B6B; } a.footnote-reference:hover { border-bottom: 1px solid #6D4100; } a:hover tt, a:hover code { background: #EEE; } @media screen and (max-width: 870px) { div.sphinxsidebar { display: none; } div.document { width: 100%; } div.documentwrapper { margin-left: 0; margin-top: 0; margin-right: 0; margin-bottom: 0; } div.bodywrapper { margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0; } ul { margin-left: 0; } li > ul { /* Matches the 30px from the "ul, ol" selector above */ margin-left: 30px; } .document { width: auto; } .footer { width: auto; } .bodywrapper { margin: 0; } .footer { width: auto; } .github { display: none; } } @media screen and (max-width: 875px) { body { margin: 0; padding: 20px 30px; } div.documentwrapper { float: none; background: #fff; } div.sphinxsidebar { display: block; float: none; width: 102.5%; margin: 50px -30px -20px -30px; padding: 10px 20px; background: #333; color: #FFF; } div.sphinxsidebar h3, div.sphinxsidebar h4, div.sphinxsidebar p, div.sphinxsidebar h3 a { color: #fff; } div.sphinxsidebar a { color: #AAA; } div.sphinxsidebar p.logo { display: none; } div.document { width: 100%; margin: 0; } div.footer { display: none; } div.bodywrapper { margin: 0; } div.body { min-height: 0; padding: 0; } .rtd_doc_footer { display: none; } .document { width: auto; } .footer { width: auto; } .footer { width: auto; } .github { display: none; } } /* misc. */ .revsys-inline { display: none!important; } /* Make nested-list/multi-paragraph items look better in Releases changelog * pages. Without this, docutils' magical list fuckery causes inconsistent * formatting between different release sub-lists. */ div#changelog > div.section > ul > li > p:only-child { margin-bottom: 0; } /* Hide fugly table cell borders in ..bibliography:: directive output */ table.docutils.citation, table.docutils.citation td, table.docutils.citation th { border: none; /* Below needed in some edge cases; if not applied, bottom shadows appear */ -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; } /* relbar */ .related { line-height: 30px; width: 100%; font-size: 0.9rem; } .related.top { border-bottom: 1px solid #EEE; margin-bottom: 20px; } .related.bottom { border-top: 1px solid #EEE; } .related ul { padding: 0; margin: 0; list-style: none; } .related li { display: inline; } nav#rellinks { float: right; } nav#rellinks li+li:before { content: "|"; } nav#breadcrumbs li+li:before { content: "\00BB"; } /* Hide certain items when printing */ @media print { div.related { display: none; } } ================================================ FILE: docs/_static/basic.css ================================================ /* * basic.css * ~~~~~~~~~ * * Sphinx stylesheet -- basic theme. * * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ /* -- main layout ----------------------------------------------------------- */ div.clearer { clear: both; } div.section::after { display: block; content: ''; clear: left; } /* -- relbar ---------------------------------------------------------------- */ div.related { width: 100%; font-size: 90%; } div.related h3 { display: none; } div.related ul { margin: 0; padding: 0 0 0 10px; list-style: none; } div.related li { display: inline; } div.related li.right { float: right; margin-right: 5px; } /* -- sidebar --------------------------------------------------------------- */ div.sphinxsidebarwrapper { padding: 10px 5px 0 10px; } div.sphinxsidebar { float: left; width: 230px; margin-left: -100%; font-size: 90%; word-wrap: break-word; overflow-wrap : break-word; } div.sphinxsidebar ul { list-style: none; } div.sphinxsidebar ul ul, div.sphinxsidebar ul.want-points { margin-left: 20px; list-style: square; } div.sphinxsidebar ul ul { margin-top: 0; margin-bottom: 0; } div.sphinxsidebar form { margin-top: 10px; } div.sphinxsidebar input { border: 1px solid #98dbcc; font-family: sans-serif; font-size: 1em; } div.sphinxsidebar #searchbox form.search { overflow: hidden; } div.sphinxsidebar #searchbox input[type="text"] { float: left; width: 80%; padding: 0.25em; box-sizing: border-box; } div.sphinxsidebar #searchbox input[type="submit"] { float: left; width: 20%; border-left: none; padding: 0.25em; box-sizing: border-box; } img { border: 0; max-width: 100%; } /* -- search page ----------------------------------------------------------- */ ul.search { margin: 10px 0 0 20px; padding: 0; } ul.search li { padding: 5px 0 5px 20px; background-image: url(file.png); background-repeat: no-repeat; background-position: 0 7px; } ul.search li a { font-weight: bold; } ul.search li p.context { color: #888; margin: 2px 0 0 30px; text-align: left; } ul.keywordmatches li.goodmatch a { font-weight: bold; } /* -- index page ------------------------------------------------------------ */ table.contentstable { width: 90%; margin-left: auto; margin-right: auto; } table.contentstable p.biglink { line-height: 150%; } a.biglink { font-size: 1.3em; } span.linkdescr { font-style: italic; padding-top: 5px; font-size: 90%; } /* -- general index --------------------------------------------------------- */ table.indextable { width: 100%; } table.indextable td { text-align: left; vertical-align: top; } table.indextable ul { margin-top: 0; margin-bottom: 0; list-style-type: none; } table.indextable > tbody > tr > td > ul { padding-left: 0em; } table.indextable tr.pcap { height: 10px; } table.indextable tr.cap { margin-top: 10px; background-color: #f2f2f2; } img.toggler { margin-right: 3px; margin-top: 3px; cursor: pointer; } div.modindex-jumpbox { border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; margin: 1em 0 1em 0; padding: 0.4em; } div.genindex-jumpbox { border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; margin: 1em 0 1em 0; padding: 0.4em; } /* -- domain module index --------------------------------------------------- */ table.modindextable td { padding: 2px; border-collapse: collapse; } /* -- general body styles --------------------------------------------------- */ div.body { min-width: 450px; max-width: 800px; } div.body p, div.body dd, div.body li, div.body blockquote { -moz-hyphens: auto; -ms-hyphens: auto; -webkit-hyphens: auto; hyphens: auto; } a.headerlink { visibility: hidden; } a.brackets:before, span.brackets > a:before{ content: "["; } a.brackets:after, span.brackets > a:after { content: "]"; } h1:hover > a.headerlink, h2:hover > a.headerlink, h3:hover > a.headerlink, h4:hover > a.headerlink, h5:hover > a.headerlink, h6:hover > a.headerlink, dt:hover > a.headerlink, caption:hover > a.headerlink, p.caption:hover > a.headerlink, div.code-block-caption:hover > a.headerlink { visibility: visible; } div.body p.caption { text-align: inherit; } div.body td { text-align: left; } .first { margin-top: 0 !important; } p.rubric { margin-top: 30px; font-weight: bold; } img.align-left, figure.align-left, .figure.align-left, object.align-left { clear: left; float: left; margin-right: 1em; } img.align-right, figure.align-right, .figure.align-right, object.align-right { clear: right; float: right; margin-left: 1em; } img.align-center, figure.align-center, .figure.align-center, object.align-center { display: block; margin-left: auto; margin-right: auto; } img.align-default, figure.align-default, .figure.align-default { display: block; margin-left: auto; margin-right: auto; } .align-left { text-align: left; } .align-center { text-align: center; } .align-default { text-align: center; } .align-right { text-align: right; } /* -- sidebars -------------------------------------------------------------- */ div.sidebar, aside.sidebar { margin: 0 0 0.5em 1em; border: 1px solid #ddb; padding: 7px; background-color: #ffe; width: 40%; float: right; clear: right; overflow-x: auto; } p.sidebar-title { font-weight: bold; } div.admonition, div.topic, blockquote { clear: left; } /* -- topics ---------------------------------------------------------------- */ div.topic { border: 1px solid #ccc; padding: 7px; margin: 10px 0 10px 0; } p.topic-title { font-size: 1.1em; font-weight: bold; margin-top: 10px; } /* -- admonitions ----------------------------------------------------------- */ div.admonition { margin-top: 10px; margin-bottom: 10px; padding: 7px; } div.admonition dt { font-weight: bold; } p.admonition-title { margin: 0px 10px 5px 0px; font-weight: bold; } div.body p.centered { text-align: center; margin-top: 25px; } /* -- content of sidebars/topics/admonitions -------------------------------- */ div.sidebar > :last-child, aside.sidebar > :last-child, div.topic > :last-child, div.admonition > :last-child { margin-bottom: 0; } div.sidebar::after, aside.sidebar::after, div.topic::after, div.admonition::after, blockquote::after { display: block; content: ''; clear: both; } /* -- tables ---------------------------------------------------------------- */ table.docutils { margin-top: 10px; margin-bottom: 10px; border: 0; border-collapse: collapse; } table.align-center { margin-left: auto; margin-right: auto; } table.align-default { margin-left: auto; margin-right: auto; } table caption span.caption-number { font-style: italic; } table caption span.caption-text { } table.docutils td, table.docutils th { padding: 1px 8px 1px 5px; border-top: 0; border-left: 0; border-right: 0; border-bottom: 1px solid #aaa; } table.footnote td, table.footnote th { border: 0 !important; } th { text-align: left; padding-right: 5px; } table.citation { border-left: solid 1px gray; margin-left: 1px; } table.citation td { border-bottom: none; } th > :first-child, td > :first-child { margin-top: 0px; } th > :last-child, td > :last-child { margin-bottom: 0px; } /* -- figures --------------------------------------------------------------- */ div.figure, figure { margin: 0.5em; padding: 0.5em; } div.figure p.caption, figcaption { padding: 0.3em; } div.figure p.caption span.caption-number, figcaption span.caption-number { font-style: italic; } div.figure p.caption span.caption-text, figcaption span.caption-text { } /* -- field list styles ----------------------------------------------------- */ table.field-list td, table.field-list th { border: 0 !important; } .field-list ul { margin: 0; padding-left: 1em; } .field-list p { margin: 0; } .field-name { -moz-hyphens: manual; -ms-hyphens: manual; -webkit-hyphens: manual; hyphens: manual; } /* -- hlist styles ---------------------------------------------------------- */ table.hlist { margin: 1em 0; } table.hlist td { vertical-align: top; } /* -- object description styles --------------------------------------------- */ .sig { font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; } .sig-name, code.descname { background-color: transparent; font-weight: bold; } .sig-name { font-size: 1.1em; } code.descname { font-size: 1.2em; } .sig-prename, code.descclassname { background-color: transparent; } .optional { font-size: 1.3em; } .sig-paren { font-size: larger; } .sig-param.n { font-style: italic; } /* C++ specific styling */ .sig-inline.c-texpr, .sig-inline.cpp-texpr { font-family: unset; } .sig.c .k, .sig.c .kt, .sig.cpp .k, .sig.cpp .kt { color: #0033B3; } .sig.c .m, .sig.cpp .m { color: #1750EB; } .sig.c .s, .sig.c .sc, .sig.cpp .s, .sig.cpp .sc { color: #067D17; } /* -- other body styles ----------------------------------------------------- */ ol.arabic { list-style: decimal; } ol.loweralpha { list-style: lower-alpha; } ol.upperalpha { list-style: upper-alpha; } ol.lowerroman { list-style: lower-roman; } ol.upperroman { list-style: upper-roman; } :not(li) > ol > li:first-child > :first-child, :not(li) > ul > li:first-child > :first-child { margin-top: 0px; } :not(li) > ol > li:last-child > :last-child, :not(li) > ul > li:last-child > :last-child { margin-bottom: 0px; } ol.simple ol p, ol.simple ul p, ul.simple ol p, ul.simple ul p { margin-top: 0; } ol.simple > li:not(:first-child) > p, ul.simple > li:not(:first-child) > p { margin-top: 0; } ol.simple p, ul.simple p { margin-bottom: 0; } dl.footnote > dt, dl.citation > dt { float: left; margin-right: 0.5em; } dl.footnote > dd, dl.citation > dd { margin-bottom: 0em; } dl.footnote > dd:after, dl.citation > dd:after { content: ""; clear: both; } dl.field-list { display: grid; grid-template-columns: fit-content(30%) auto; } dl.field-list > dt { font-weight: bold; word-break: break-word; padding-left: 0.5em; padding-right: 5px; } dl.field-list > dt:after { content: ":"; } dl.field-list > dd { padding-left: 0.5em; margin-top: 0em; margin-left: 0em; margin-bottom: 0em; } dl { margin-bottom: 15px; } dd > :first-child { margin-top: 0px; } dd ul, dd table { margin-bottom: 10px; } dd { margin-top: 3px; margin-bottom: 10px; margin-left: 30px; } dl > dd:last-child, dl > dd:last-child > :last-child { margin-bottom: 0; } dt:target, span.highlighted { background-color: #fbe54e; } rect.highlighted { fill: #fbe54e; } dl.glossary dt { font-weight: bold; font-size: 1.1em; } .versionmodified { font-style: italic; } .system-message { background-color: #fda; padding: 5px; border: 3px solid red; } .footnote:target { background-color: #ffa; } .line-block { display: block; margin-top: 1em; margin-bottom: 1em; } .line-block .line-block { margin-top: 0; margin-bottom: 0; margin-left: 1.5em; } .guilabel, .menuselection { font-family: sans-serif; } .accelerator { text-decoration: underline; } .classifier { font-style: oblique; } .classifier:before { font-style: normal; margin: 0.5em; content: ":"; } abbr, acronym { border-bottom: dotted 1px; cursor: help; } /* -- code displays --------------------------------------------------------- */ pre { overflow: auto; overflow-y: hidden; /* fixes display issues on Chrome browsers */ } pre, div[class*="highlight-"] { clear: both; } span.pre { -moz-hyphens: none; -ms-hyphens: none; -webkit-hyphens: none; hyphens: none; } div[class*="highlight-"] { margin: 1em 0; } td.linenos pre { border: 0; background-color: transparent; color: #aaa; } table.highlighttable { display: block; } table.highlighttable tbody { display: block; } table.highlighttable tr { display: flex; } table.highlighttable td { margin: 0; padding: 0; } table.highlighttable td.linenos { padding-right: 0.5em; } table.highlighttable td.code { flex: 1; overflow: hidden; } .highlight .hll { display: block; } div.highlight pre, table.highlighttable pre { margin: 0; } div.code-block-caption + div { margin-top: 0; } div.code-block-caption { margin-top: 1em; padding: 2px 5px; font-size: small; } div.code-block-caption code { background-color: transparent; } table.highlighttable td.linenos, span.linenos, div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */ user-select: none; -webkit-user-select: text; /* Safari fallback only */ -webkit-user-select: none; /* Chrome/Safari */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* IE10+ */ } div.code-block-caption span.caption-number { padding: 0.1em 0.3em; font-style: italic; } div.code-block-caption span.caption-text { } div.literal-block-wrapper { margin: 1em 0; } code.xref, a code { background-color: transparent; font-weight: bold; } h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { background-color: transparent; } .viewcode-link { float: right; } .viewcode-back { float: right; font-family: sans-serif; } div.viewcode-block:target { margin: -1px -10px; padding: 0 10px; } /* -- math display ---------------------------------------------------------- */ img.math { vertical-align: middle; } div.body div.math p { text-align: center; } span.eqno { float: right; } span.eqno a.headerlink { position: absolute; z-index: 1; } div.math:hover a.headerlink { visibility: visible; } /* -- printout stylesheet --------------------------------------------------- */ @media print { div.document, div.documentwrapper, div.bodywrapper { margin: 0 !important; width: 100%; } div.sphinxsidebar, div.related, div.footer, #top-link { display: none; } } ================================================ FILE: docs/_static/css/badge_only.css ================================================ .fa:before{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}@font-face{font-family:FontAwesome;font-style:normal;font-weight:400;src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix) format("embedded-opentype"),url(fonts/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(fonts/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(fonts/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(fonts/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#FontAwesome) format("svg")}.fa:before{font-family:FontAwesome;font-style:normal;font-weight:400;line-height:1}.fa:before,a .fa{text-decoration:inherit}.fa:before,a .fa,li .fa{display:inline-block}li .fa-large:before{width:1.875em}ul.fas{list-style-type:none;margin-left:2em;text-indent:-.8em}ul.fas li .fa{width:.8em}ul.fas li .fa-large:before{vertical-align:baseline}.fa-book:before,.icon-book:before{content:"\f02d"}.fa-caret-down:before,.icon-caret-down:before{content:"\f0d7"}.fa-caret-up:before,.icon-caret-up:before{content:"\f0d8"}.fa-caret-left:before,.icon-caret-left:before{content:"\f0d9"}.fa-caret-right:before,.icon-caret-right:before{content:"\f0da"}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;z-index:400}.rst-versions a{color:#2980b9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27ae60}.rst-versions .rst-current-version:after{clear:both;content:"";display:block}.rst-versions .rst-current-version .fa{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#e74c3c;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#f1c40f;color:#000}.rst-versions.shift-up{height:auto;max-height:100%;overflow-y:scroll}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:grey;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:1px solid #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px;max-height:90%}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none;line-height:30px}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge>.rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width:768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}} ================================================ FILE: docs/_static/css/theme.css ================================================ html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}[hidden],audio:not([controls]){display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}blockquote{margin:0}dfn{font-style:italic}ins{background:#ff9;text-decoration:none}ins,mark{color:#000}mark{background:#ff0;font-style:italic;font-weight:700}.rst-content code,.rst-content tt,code,kbd,pre,samp{font-family:monospace,serif;_font-family:courier new,monospace;font-size:1em}pre{white-space:pre}q{quotes:none}q:after,q:before{content:"";content:none}small{font-size:85%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dl,ol,ul{margin:0;padding:0;list-style:none;list-style-image:none}li{list-style:none}dd{margin:0}img{border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;max-width:100%}svg:not(:root){overflow:hidden}figure,form{margin:0}label{cursor:pointer}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,input[type=button],input[type=reset],input[type=submit]{cursor:pointer;-webkit-appearance:button;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}textarea{resize:vertical}table{border-collapse:collapse;border-spacing:0}td{vertical-align:top}.chromeframe{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}.ir{display:block;border:0;text-indent:-999em;overflow:hidden;background-color:transparent;background-repeat:no-repeat;text-align:left;direction:ltr;*line-height:0}.ir br{display:none}.hidden{display:none!important;visibility:hidden}.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.invisible{visibility:hidden}.relative{position:relative}big,small{font-size:100%}@media print{body,html,section{background:none!important}*{box-shadow:none!important;text-shadow:none!important;filter:none!important;-ms-filter:none!important}a,a:visited{text-decoration:underline}.ir a:after,a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}@page{margin:.5cm}.rst-content .toctree-wrapper>p.caption,h2,h3,p{orphans:3;widows:3}.rst-content .toctree-wrapper>p.caption,h2,h3{page-break-after:avoid}}.btn,.fa:before,.icon:before,.rst-content .admonition,.rst-content .admonition-title:before,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .code-block-caption .headerlink:before,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning,.rst-content code.download span:first-child:before,.rst-content dl dt .headerlink:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content tt.download span:first-child:before,.wy-alert,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-menu-vertical li.current>a,.wy-menu-vertical li.current>a span.toctree-expand:before,.wy-menu-vertical li.on a,.wy-menu-vertical li.on a span.toctree-expand:before,.wy-menu-vertical li span.toctree-expand:before,.wy-nav-top a,.wy-side-nav-search .wy-dropdown>a,.wy-side-nav-search>a,input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:after,.clearfix:before{display:table;content:""}.clearfix:after{clear:both}/*! * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */@font-face{font-family:FontAwesome;src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);src:url(fonts/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix&v=4.7.0) format("embedded-opentype"),url(fonts/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"),url(fonts/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"),url(fonts/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"),url(fonts/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa,.icon,.rst-content .admonition-title,.rst-content .code-block-caption .headerlink,.rst-content code.download span:first-child,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content table>caption .headerlink,.rst-content tt.download span:first-child,.wy-menu-vertical li.current>a span.toctree-expand,.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li span.toctree-expand{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14286em;width:2.14286em;top:.14286em;text-align:center}.fa-li.fa-lg{left:-1.85714em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa-pull-left.icon,.fa.fa-pull-left,.rst-content .code-block-caption .fa-pull-left.headerlink,.rst-content .fa-pull-left.admonition-title,.rst-content code.download span.fa-pull-left:first-child,.rst-content dl dt .fa-pull-left.headerlink,.rst-content h1 .fa-pull-left.headerlink,.rst-content h2 .fa-pull-left.headerlink,.rst-content h3 .fa-pull-left.headerlink,.rst-content h4 .fa-pull-left.headerlink,.rst-content h5 .fa-pull-left.headerlink,.rst-content h6 .fa-pull-left.headerlink,.rst-content p.caption .fa-pull-left.headerlink,.rst-content table>caption .fa-pull-left.headerlink,.rst-content tt.download span.fa-pull-left:first-child,.wy-menu-vertical li.current>a span.fa-pull-left.toctree-expand,.wy-menu-vertical li.on a span.fa-pull-left.toctree-expand,.wy-menu-vertical li span.fa-pull-left.toctree-expand{margin-right:.3em}.fa-pull-right.icon,.fa.fa-pull-right,.rst-content .code-block-caption .fa-pull-right.headerlink,.rst-content .fa-pull-right.admonition-title,.rst-content code.download span.fa-pull-right:first-child,.rst-content dl dt .fa-pull-right.headerlink,.rst-content h1 .fa-pull-right.headerlink,.rst-content h2 .fa-pull-right.headerlink,.rst-content h3 .fa-pull-right.headerlink,.rst-content h4 .fa-pull-right.headerlink,.rst-content h5 .fa-pull-right.headerlink,.rst-content h6 .fa-pull-right.headerlink,.rst-content p.caption .fa-pull-right.headerlink,.rst-content table>caption .fa-pull-right.headerlink,.rst-content tt.download span.fa-pull-right:first-child,.wy-menu-vertical li.current>a span.fa-pull-right.toctree-expand,.wy-menu-vertical li.on a span.fa-pull-right.toctree-expand,.wy-menu-vertical li span.fa-pull-right.toctree-expand{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left,.pull-left.icon,.rst-content .code-block-caption .pull-left.headerlink,.rst-content .pull-left.admonition-title,.rst-content code.download span.pull-left:first-child,.rst-content dl dt .pull-left.headerlink,.rst-content h1 .pull-left.headerlink,.rst-content h2 .pull-left.headerlink,.rst-content h3 .pull-left.headerlink,.rst-content h4 .pull-left.headerlink,.rst-content h5 .pull-left.headerlink,.rst-content h6 .pull-left.headerlink,.rst-content p.caption .pull-left.headerlink,.rst-content table>caption .pull-left.headerlink,.rst-content tt.download span.pull-left:first-child,.wy-menu-vertical li.current>a span.pull-left.toctree-expand,.wy-menu-vertical li.on a span.pull-left.toctree-expand,.wy-menu-vertical li span.pull-left.toctree-expand{margin-right:.3em}.fa.pull-right,.pull-right.icon,.rst-content .code-block-caption .pull-right.headerlink,.rst-content .pull-right.admonition-title,.rst-content code.download span.pull-right:first-child,.rst-content dl dt .pull-right.headerlink,.rst-content h1 .pull-right.headerlink,.rst-content h2 .pull-right.headerlink,.rst-content h3 .pull-right.headerlink,.rst-content h4 .pull-right.headerlink,.rst-content h5 .pull-right.headerlink,.rst-content h6 .pull-right.headerlink,.rst-content p.caption .pull-right.headerlink,.rst-content table>caption .pull-right.headerlink,.rst-content tt.download span.pull-right:first-child,.wy-menu-vertical li.current>a span.pull-right.toctree-expand,.wy-menu-vertical li.on a span.pull-right.toctree-expand,.wy-menu-vertical li span.pull-right.toctree-expand{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);-ms-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scaleY(-1);-ms-transform:scaleY(-1);transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before,.icon-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before,.icon-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before,.rst-content code.download span:first-child:before,.rst-content tt.download span:first-child:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before,.icon-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before{content:""}.fa-check-circle:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before,.rst-content .admonition-title:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before,.icon-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before,.icon-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before,.icon-circle-arrow-left:before{content:""}.fa-arrow-circle-right:before,.icon-circle-arrow-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before,.icon-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before,.icon-caret-down:before,.wy-dropdown .caret:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before,.wy-menu-vertical li.current>a span.toctree-expand:before,.wy-menu-vertical li.on a span.toctree-expand:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before,.icon-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before,.wy-menu-vertical li span.toctree-expand:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before,.icon-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-sign-language:before,.fa-signing:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-address-card:before,.fa-vcard:before{content:""}.fa-address-card-o:before,.fa-vcard-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.fa,.icon,.rst-content .admonition-title,.rst-content .code-block-caption .headerlink,.rst-content code.download span:first-child,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content table>caption .headerlink,.rst-content tt.download span:first-child,.wy-dropdown .caret,.wy-inline-validate.wy-inline-validate-danger .wy-input-context,.wy-inline-validate.wy-inline-validate-info .wy-input-context,.wy-inline-validate.wy-inline-validate-success .wy-input-context,.wy-inline-validate.wy-inline-validate-warning .wy-input-context,.wy-menu-vertical li.current>a span.toctree-expand,.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li span.toctree-expand{font-family:inherit}.fa:before,.icon:before,.rst-content .admonition-title:before,.rst-content .code-block-caption .headerlink:before,.rst-content code.download span:first-child:before,.rst-content dl dt .headerlink:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content tt.download span:first-child:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-menu-vertical li.current>a span.toctree-expand:before,.wy-menu-vertical li.on a span.toctree-expand:before,.wy-menu-vertical li span.toctree-expand:before{font-family:FontAwesome;display:inline-block;font-style:normal;font-weight:400;line-height:1;text-decoration:inherit}.rst-content .code-block-caption a .headerlink,.rst-content a .admonition-title,.rst-content code.download a span:first-child,.rst-content dl dt a .headerlink,.rst-content h1 a .headerlink,.rst-content h2 a .headerlink,.rst-content h3 a .headerlink,.rst-content h4 a .headerlink,.rst-content h5 a .headerlink,.rst-content h6 a .headerlink,.rst-content p.caption a .headerlink,.rst-content table>caption a .headerlink,.rst-content tt.download a span:first-child,.wy-menu-vertical li.current>a span.toctree-expand,.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li a span.toctree-expand,a .fa,a .icon,a .rst-content .admonition-title,a .rst-content .code-block-caption .headerlink,a .rst-content code.download span:first-child,a .rst-content dl dt .headerlink,a .rst-content h1 .headerlink,a .rst-content h2 .headerlink,a .rst-content h3 .headerlink,a .rst-content h4 .headerlink,a .rst-content h5 .headerlink,a .rst-content h6 .headerlink,a .rst-content p.caption .headerlink,a .rst-content table>caption .headerlink,a .rst-content tt.download span:first-child,a .wy-menu-vertical li span.toctree-expand{display:inline-block;text-decoration:inherit}.btn .fa,.btn .icon,.btn .rst-content .admonition-title,.btn .rst-content .code-block-caption .headerlink,.btn .rst-content code.download span:first-child,.btn .rst-content dl dt .headerlink,.btn .rst-content h1 .headerlink,.btn .rst-content h2 .headerlink,.btn .rst-content h3 .headerlink,.btn .rst-content h4 .headerlink,.btn .rst-content h5 .headerlink,.btn .rst-content h6 .headerlink,.btn .rst-content p.caption .headerlink,.btn .rst-content table>caption .headerlink,.btn .rst-content tt.download span:first-child,.btn .wy-menu-vertical li.current>a span.toctree-expand,.btn .wy-menu-vertical li.on a span.toctree-expand,.btn .wy-menu-vertical li span.toctree-expand,.nav .fa,.nav .icon,.nav .rst-content .admonition-title,.nav .rst-content .code-block-caption .headerlink,.nav .rst-content code.download span:first-child,.nav .rst-content dl dt .headerlink,.nav .rst-content h1 .headerlink,.nav .rst-content h2 .headerlink,.nav .rst-content h3 .headerlink,.nav .rst-content h4 .headerlink,.nav .rst-content h5 .headerlink,.nav .rst-content h6 .headerlink,.nav .rst-content p.caption .headerlink,.nav .rst-content table>caption .headerlink,.nav .rst-content tt.download span:first-child,.nav .wy-menu-vertical li.current>a span.toctree-expand,.nav .wy-menu-vertical li.on a span.toctree-expand,.nav .wy-menu-vertical li span.toctree-expand,.rst-content .btn .admonition-title,.rst-content .code-block-caption .btn .headerlink,.rst-content .code-block-caption .nav .headerlink,.rst-content .nav .admonition-title,.rst-content code.download .btn span:first-child,.rst-content code.download .nav span:first-child,.rst-content dl dt .btn .headerlink,.rst-content dl dt .nav .headerlink,.rst-content h1 .btn .headerlink,.rst-content h1 .nav .headerlink,.rst-content h2 .btn .headerlink,.rst-content h2 .nav .headerlink,.rst-content h3 .btn .headerlink,.rst-content h3 .nav .headerlink,.rst-content h4 .btn .headerlink,.rst-content h4 .nav .headerlink,.rst-content h5 .btn .headerlink,.rst-content h5 .nav .headerlink,.rst-content h6 .btn .headerlink,.rst-content h6 .nav .headerlink,.rst-content p.caption .btn .headerlink,.rst-content p.caption .nav .headerlink,.rst-content table>caption .btn .headerlink,.rst-content table>caption .nav .headerlink,.rst-content tt.download .btn span:first-child,.rst-content tt.download .nav span:first-child,.wy-menu-vertical li .btn span.toctree-expand,.wy-menu-vertical li.current>a .btn span.toctree-expand,.wy-menu-vertical li.current>a .nav span.toctree-expand,.wy-menu-vertical li .nav span.toctree-expand,.wy-menu-vertical li.on a .btn span.toctree-expand,.wy-menu-vertical li.on a .nav span.toctree-expand{display:inline}.btn .fa-large.icon,.btn .fa.fa-large,.btn .rst-content .code-block-caption .fa-large.headerlink,.btn .rst-content .fa-large.admonition-title,.btn .rst-content code.download span.fa-large:first-child,.btn .rst-content dl dt .fa-large.headerlink,.btn .rst-content h1 .fa-large.headerlink,.btn .rst-content h2 .fa-large.headerlink,.btn .rst-content h3 .fa-large.headerlink,.btn .rst-content h4 .fa-large.headerlink,.btn .rst-content h5 .fa-large.headerlink,.btn .rst-content h6 .fa-large.headerlink,.btn .rst-content p.caption .fa-large.headerlink,.btn .rst-content table>caption .fa-large.headerlink,.btn .rst-content tt.download span.fa-large:first-child,.btn .wy-menu-vertical li span.fa-large.toctree-expand,.nav .fa-large.icon,.nav .fa.fa-large,.nav .rst-content .code-block-caption .fa-large.headerlink,.nav .rst-content .fa-large.admonition-title,.nav .rst-content code.download span.fa-large:first-child,.nav .rst-content dl dt .fa-large.headerlink,.nav .rst-content h1 .fa-large.headerlink,.nav .rst-content h2 .fa-large.headerlink,.nav .rst-content h3 .fa-large.headerlink,.nav .rst-content h4 .fa-large.headerlink,.nav .rst-content h5 .fa-large.headerlink,.nav .rst-content h6 .fa-large.headerlink,.nav .rst-content p.caption .fa-large.headerlink,.nav .rst-content table>caption .fa-large.headerlink,.nav .rst-content tt.download span.fa-large:first-child,.nav .wy-menu-vertical li span.fa-large.toctree-expand,.rst-content .btn .fa-large.admonition-title,.rst-content .code-block-caption .btn .fa-large.headerlink,.rst-content .code-block-caption .nav .fa-large.headerlink,.rst-content .nav .fa-large.admonition-title,.rst-content code.download .btn span.fa-large:first-child,.rst-content code.download .nav span.fa-large:first-child,.rst-content dl dt .btn .fa-large.headerlink,.rst-content dl dt .nav .fa-large.headerlink,.rst-content h1 .btn .fa-large.headerlink,.rst-content h1 .nav .fa-large.headerlink,.rst-content h2 .btn .fa-large.headerlink,.rst-content h2 .nav .fa-large.headerlink,.rst-content h3 .btn .fa-large.headerlink,.rst-content h3 .nav .fa-large.headerlink,.rst-content h4 .btn .fa-large.headerlink,.rst-content h4 .nav .fa-large.headerlink,.rst-content h5 .btn .fa-large.headerlink,.rst-content h5 .nav .fa-large.headerlink,.rst-content h6 .btn .fa-large.headerlink,.rst-content h6 .nav .fa-large.headerlink,.rst-content p.caption .btn .fa-large.headerlink,.rst-content p.caption .nav .fa-large.headerlink,.rst-content table>caption .btn .fa-large.headerlink,.rst-content table>caption .nav .fa-large.headerlink,.rst-content tt.download .btn span.fa-large:first-child,.rst-content tt.download .nav span.fa-large:first-child,.wy-menu-vertical li .btn span.fa-large.toctree-expand,.wy-menu-vertical li .nav span.fa-large.toctree-expand{line-height:.9em}.btn .fa-spin.icon,.btn .fa.fa-spin,.btn .rst-content .code-block-caption .fa-spin.headerlink,.btn .rst-content .fa-spin.admonition-title,.btn .rst-content code.download span.fa-spin:first-child,.btn .rst-content dl dt .fa-spin.headerlink,.btn .rst-content h1 .fa-spin.headerlink,.btn .rst-content h2 .fa-spin.headerlink,.btn .rst-content h3 .fa-spin.headerlink,.btn .rst-content h4 .fa-spin.headerlink,.btn .rst-content h5 .fa-spin.headerlink,.btn .rst-content h6 .fa-spin.headerlink,.btn .rst-content p.caption .fa-spin.headerlink,.btn .rst-content table>caption .fa-spin.headerlink,.btn .rst-content tt.download span.fa-spin:first-child,.btn .wy-menu-vertical li span.fa-spin.toctree-expand,.nav .fa-spin.icon,.nav .fa.fa-spin,.nav .rst-content .code-block-caption .fa-spin.headerlink,.nav .rst-content .fa-spin.admonition-title,.nav .rst-content code.download span.fa-spin:first-child,.nav .rst-content dl dt .fa-spin.headerlink,.nav .rst-content h1 .fa-spin.headerlink,.nav .rst-content h2 .fa-spin.headerlink,.nav .rst-content h3 .fa-spin.headerlink,.nav .rst-content h4 .fa-spin.headerlink,.nav .rst-content h5 .fa-spin.headerlink,.nav .rst-content h6 .fa-spin.headerlink,.nav .rst-content p.caption .fa-spin.headerlink,.nav .rst-content table>caption .fa-spin.headerlink,.nav .rst-content tt.download span.fa-spin:first-child,.nav .wy-menu-vertical li span.fa-spin.toctree-expand,.rst-content .btn .fa-spin.admonition-title,.rst-content .code-block-caption .btn .fa-spin.headerlink,.rst-content .code-block-caption .nav .fa-spin.headerlink,.rst-content .nav .fa-spin.admonition-title,.rst-content code.download .btn span.fa-spin:first-child,.rst-content code.download .nav span.fa-spin:first-child,.rst-content dl dt .btn .fa-spin.headerlink,.rst-content dl dt .nav .fa-spin.headerlink,.rst-content h1 .btn .fa-spin.headerlink,.rst-content h1 .nav .fa-spin.headerlink,.rst-content h2 .btn .fa-spin.headerlink,.rst-content h2 .nav .fa-spin.headerlink,.rst-content h3 .btn .fa-spin.headerlink,.rst-content h3 .nav .fa-spin.headerlink,.rst-content h4 .btn .fa-spin.headerlink,.rst-content h4 .nav .fa-spin.headerlink,.rst-content h5 .btn .fa-spin.headerlink,.rst-content h5 .nav .fa-spin.headerlink,.rst-content h6 .btn .fa-spin.headerlink,.rst-content h6 .nav .fa-spin.headerlink,.rst-content p.caption .btn .fa-spin.headerlink,.rst-content p.caption .nav .fa-spin.headerlink,.rst-content table>caption .btn .fa-spin.headerlink,.rst-content table>caption .nav .fa-spin.headerlink,.rst-content tt.download .btn span.fa-spin:first-child,.rst-content tt.download .nav span.fa-spin:first-child,.wy-menu-vertical li .btn span.fa-spin.toctree-expand,.wy-menu-vertical li .nav span.fa-spin.toctree-expand{display:inline-block}.btn.fa:before,.btn.icon:before,.rst-content .btn.admonition-title:before,.rst-content .code-block-caption .btn.headerlink:before,.rst-content code.download span.btn:first-child:before,.rst-content dl dt .btn.headerlink:before,.rst-content h1 .btn.headerlink:before,.rst-content h2 .btn.headerlink:before,.rst-content h3 .btn.headerlink:before,.rst-content h4 .btn.headerlink:before,.rst-content h5 .btn.headerlink:before,.rst-content h6 .btn.headerlink:before,.rst-content p.caption .btn.headerlink:before,.rst-content table>caption .btn.headerlink:before,.rst-content tt.download span.btn:first-child:before,.wy-menu-vertical li span.btn.toctree-expand:before{opacity:.5;-webkit-transition:opacity .05s ease-in;-moz-transition:opacity .05s ease-in;transition:opacity .05s ease-in}.btn.fa:hover:before,.btn.icon:hover:before,.rst-content .btn.admonition-title:hover:before,.rst-content .code-block-caption .btn.headerlink:hover:before,.rst-content code.download span.btn:first-child:hover:before,.rst-content dl dt .btn.headerlink:hover:before,.rst-content h1 .btn.headerlink:hover:before,.rst-content h2 .btn.headerlink:hover:before,.rst-content h3 .btn.headerlink:hover:before,.rst-content h4 .btn.headerlink:hover:before,.rst-content h5 .btn.headerlink:hover:before,.rst-content h6 .btn.headerlink:hover:before,.rst-content p.caption .btn.headerlink:hover:before,.rst-content table>caption .btn.headerlink:hover:before,.rst-content tt.download span.btn:first-child:hover:before,.wy-menu-vertical li span.btn.toctree-expand:hover:before{opacity:1}.btn-mini .fa:before,.btn-mini .icon:before,.btn-mini .rst-content .admonition-title:before,.btn-mini .rst-content .code-block-caption .headerlink:before,.btn-mini .rst-content code.download span:first-child:before,.btn-mini .rst-content dl dt .headerlink:before,.btn-mini .rst-content h1 .headerlink:before,.btn-mini .rst-content h2 .headerlink:before,.btn-mini .rst-content h3 .headerlink:before,.btn-mini .rst-content h4 .headerlink:before,.btn-mini .rst-content h5 .headerlink:before,.btn-mini .rst-content h6 .headerlink:before,.btn-mini .rst-content p.caption .headerlink:before,.btn-mini .rst-content table>caption .headerlink:before,.btn-mini .rst-content tt.download span:first-child:before,.btn-mini .wy-menu-vertical li span.toctree-expand:before,.rst-content .btn-mini .admonition-title:before,.rst-content .code-block-caption .btn-mini .headerlink:before,.rst-content code.download .btn-mini span:first-child:before,.rst-content dl dt .btn-mini .headerlink:before,.rst-content h1 .btn-mini .headerlink:before,.rst-content h2 .btn-mini .headerlink:before,.rst-content h3 .btn-mini .headerlink:before,.rst-content h4 .btn-mini .headerlink:before,.rst-content h5 .btn-mini .headerlink:before,.rst-content h6 .btn-mini .headerlink:before,.rst-content p.caption .btn-mini .headerlink:before,.rst-content table>caption .btn-mini .headerlink:before,.rst-content tt.download .btn-mini span:first-child:before,.wy-menu-vertical li .btn-mini span.toctree-expand:before{font-size:14px;vertical-align:-15%}.rst-content .admonition,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning,.wy-alert{padding:12px;line-height:24px;margin-bottom:24px;background:#e7f2fa}.rst-content .admonition-title,.wy-alert-title{font-weight:700;display:block;color:#fff;background:#6ab0de;padding:6px 12px;margin:-12px -12px 12px}.rst-content .danger,.rst-content .error,.rst-content .wy-alert-danger.admonition,.rst-content .wy-alert-danger.admonition-todo,.rst-content .wy-alert-danger.attention,.rst-content .wy-alert-danger.caution,.rst-content .wy-alert-danger.hint,.rst-content .wy-alert-danger.important,.rst-content .wy-alert-danger.note,.rst-content .wy-alert-danger.seealso,.rst-content .wy-alert-danger.tip,.rst-content .wy-alert-danger.warning,.wy-alert.wy-alert-danger{background:#fdf3f2}.rst-content .danger .admonition-title,.rst-content .danger .wy-alert-title,.rst-content .error .admonition-title,.rst-content .error .wy-alert-title,.rst-content .wy-alert-danger.admonition-todo .admonition-title,.rst-content .wy-alert-danger.admonition-todo .wy-alert-title,.rst-content .wy-alert-danger.admonition .admonition-title,.rst-content .wy-alert-danger.admonition .wy-alert-title,.rst-content .wy-alert-danger.attention .admonition-title,.rst-content .wy-alert-danger.attention .wy-alert-title,.rst-content .wy-alert-danger.caution .admonition-title,.rst-content .wy-alert-danger.caution .wy-alert-title,.rst-content .wy-alert-danger.hint .admonition-title,.rst-content .wy-alert-danger.hint .wy-alert-title,.rst-content .wy-alert-danger.important .admonition-title,.rst-content .wy-alert-danger.important .wy-alert-title,.rst-content .wy-alert-danger.note .admonition-title,.rst-content .wy-alert-danger.note .wy-alert-title,.rst-content .wy-alert-danger.seealso .admonition-title,.rst-content .wy-alert-danger.seealso .wy-alert-title,.rst-content .wy-alert-danger.tip .admonition-title,.rst-content .wy-alert-danger.tip .wy-alert-title,.rst-content .wy-alert-danger.warning .admonition-title,.rst-content .wy-alert-danger.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-danger .admonition-title,.wy-alert.wy-alert-danger .rst-content .admonition-title,.wy-alert.wy-alert-danger .wy-alert-title{background:#f29f97}.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .warning,.rst-content .wy-alert-warning.admonition,.rst-content .wy-alert-warning.danger,.rst-content .wy-alert-warning.error,.rst-content .wy-alert-warning.hint,.rst-content .wy-alert-warning.important,.rst-content .wy-alert-warning.note,.rst-content .wy-alert-warning.seealso,.rst-content .wy-alert-warning.tip,.wy-alert.wy-alert-warning{background:#ffedcc}.rst-content .admonition-todo .admonition-title,.rst-content .admonition-todo .wy-alert-title,.rst-content .attention .admonition-title,.rst-content .attention .wy-alert-title,.rst-content .caution .admonition-title,.rst-content .caution .wy-alert-title,.rst-content .warning .admonition-title,.rst-content .warning .wy-alert-title,.rst-content .wy-alert-warning.admonition .admonition-title,.rst-content .wy-alert-warning.admonition .wy-alert-title,.rst-content .wy-alert-warning.danger .admonition-title,.rst-content .wy-alert-warning.danger .wy-alert-title,.rst-content .wy-alert-warning.error .admonition-title,.rst-content .wy-alert-warning.error .wy-alert-title,.rst-content .wy-alert-warning.hint .admonition-title,.rst-content .wy-alert-warning.hint .wy-alert-title,.rst-content .wy-alert-warning.important .admonition-title,.rst-content .wy-alert-warning.important .wy-alert-title,.rst-content .wy-alert-warning.note .admonition-title,.rst-content .wy-alert-warning.note .wy-alert-title,.rst-content .wy-alert-warning.seealso .admonition-title,.rst-content .wy-alert-warning.seealso .wy-alert-title,.rst-content .wy-alert-warning.tip .admonition-title,.rst-content .wy-alert-warning.tip .wy-alert-title,.rst-content .wy-alert.wy-alert-warning .admonition-title,.wy-alert.wy-alert-warning .rst-content .admonition-title,.wy-alert.wy-alert-warning .wy-alert-title{background:#f0b37e}.rst-content .note,.rst-content .seealso,.rst-content .wy-alert-info.admonition,.rst-content .wy-alert-info.admonition-todo,.rst-content .wy-alert-info.attention,.rst-content .wy-alert-info.caution,.rst-content .wy-alert-info.danger,.rst-content .wy-alert-info.error,.rst-content .wy-alert-info.hint,.rst-content .wy-alert-info.important,.rst-content .wy-alert-info.tip,.rst-content .wy-alert-info.warning,.wy-alert.wy-alert-info{background:#e7f2fa}.rst-content .note .admonition-title,.rst-content .note .wy-alert-title,.rst-content .seealso .admonition-title,.rst-content .seealso .wy-alert-title,.rst-content .wy-alert-info.admonition-todo .admonition-title,.rst-content .wy-alert-info.admonition-todo .wy-alert-title,.rst-content .wy-alert-info.admonition .admonition-title,.rst-content .wy-alert-info.admonition .wy-alert-title,.rst-content .wy-alert-info.attention .admonition-title,.rst-content .wy-alert-info.attention .wy-alert-title,.rst-content .wy-alert-info.caution .admonition-title,.rst-content .wy-alert-info.caution .wy-alert-title,.rst-content .wy-alert-info.danger .admonition-title,.rst-content .wy-alert-info.danger .wy-alert-title,.rst-content .wy-alert-info.error .admonition-title,.rst-content .wy-alert-info.error .wy-alert-title,.rst-content .wy-alert-info.hint .admonition-title,.rst-content .wy-alert-info.hint .wy-alert-title,.rst-content .wy-alert-info.important .admonition-title,.rst-content .wy-alert-info.important .wy-alert-title,.rst-content .wy-alert-info.tip .admonition-title,.rst-content .wy-alert-info.tip .wy-alert-title,.rst-content .wy-alert-info.warning .admonition-title,.rst-content .wy-alert-info.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-info .admonition-title,.wy-alert.wy-alert-info .rst-content .admonition-title,.wy-alert.wy-alert-info .wy-alert-title{background:#6ab0de}.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .wy-alert-success.admonition,.rst-content .wy-alert-success.admonition-todo,.rst-content .wy-alert-success.attention,.rst-content .wy-alert-success.caution,.rst-content .wy-alert-success.danger,.rst-content .wy-alert-success.error,.rst-content .wy-alert-success.note,.rst-content .wy-alert-success.seealso,.rst-content .wy-alert-success.warning,.wy-alert.wy-alert-success{background:#dbfaf4}.rst-content .hint .admonition-title,.rst-content .hint .wy-alert-title,.rst-content .important .admonition-title,.rst-content .important .wy-alert-title,.rst-content .tip .admonition-title,.rst-content .tip .wy-alert-title,.rst-content .wy-alert-success.admonition-todo .admonition-title,.rst-content .wy-alert-success.admonition-todo .wy-alert-title,.rst-content .wy-alert-success.admonition .admonition-title,.rst-content .wy-alert-success.admonition .wy-alert-title,.rst-content .wy-alert-success.attention .admonition-title,.rst-content .wy-alert-success.attention .wy-alert-title,.rst-content .wy-alert-success.caution .admonition-title,.rst-content .wy-alert-success.caution .wy-alert-title,.rst-content .wy-alert-success.danger .admonition-title,.rst-content .wy-alert-success.danger .wy-alert-title,.rst-content .wy-alert-success.error .admonition-title,.rst-content .wy-alert-success.error .wy-alert-title,.rst-content .wy-alert-success.note .admonition-title,.rst-content .wy-alert-success.note .wy-alert-title,.rst-content .wy-alert-success.seealso .admonition-title,.rst-content .wy-alert-success.seealso .wy-alert-title,.rst-content .wy-alert-success.warning .admonition-title,.rst-content .wy-alert-success.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-success .admonition-title,.wy-alert.wy-alert-success .rst-content .admonition-title,.wy-alert.wy-alert-success .wy-alert-title{background:#1abc9c}.rst-content .wy-alert-neutral.admonition,.rst-content .wy-alert-neutral.admonition-todo,.rst-content .wy-alert-neutral.attention,.rst-content .wy-alert-neutral.caution,.rst-content .wy-alert-neutral.danger,.rst-content .wy-alert-neutral.error,.rst-content .wy-alert-neutral.hint,.rst-content .wy-alert-neutral.important,.rst-content .wy-alert-neutral.note,.rst-content .wy-alert-neutral.seealso,.rst-content .wy-alert-neutral.tip,.rst-content .wy-alert-neutral.warning,.wy-alert.wy-alert-neutral{background:#f3f6f6}.rst-content .wy-alert-neutral.admonition-todo .admonition-title,.rst-content .wy-alert-neutral.admonition-todo .wy-alert-title,.rst-content .wy-alert-neutral.admonition .admonition-title,.rst-content .wy-alert-neutral.admonition .wy-alert-title,.rst-content .wy-alert-neutral.attention .admonition-title,.rst-content .wy-alert-neutral.attention .wy-alert-title,.rst-content .wy-alert-neutral.caution .admonition-title,.rst-content .wy-alert-neutral.caution .wy-alert-title,.rst-content .wy-alert-neutral.danger .admonition-title,.rst-content .wy-alert-neutral.danger .wy-alert-title,.rst-content .wy-alert-neutral.error .admonition-title,.rst-content .wy-alert-neutral.error .wy-alert-title,.rst-content .wy-alert-neutral.hint .admonition-title,.rst-content .wy-alert-neutral.hint .wy-alert-title,.rst-content .wy-alert-neutral.important .admonition-title,.rst-content .wy-alert-neutral.important .wy-alert-title,.rst-content .wy-alert-neutral.note .admonition-title,.rst-content .wy-alert-neutral.note .wy-alert-title,.rst-content .wy-alert-neutral.seealso .admonition-title,.rst-content .wy-alert-neutral.seealso .wy-alert-title,.rst-content .wy-alert-neutral.tip .admonition-title,.rst-content .wy-alert-neutral.tip .wy-alert-title,.rst-content .wy-alert-neutral.warning .admonition-title,.rst-content .wy-alert-neutral.warning .wy-alert-title,.rst-content .wy-alert.wy-alert-neutral .admonition-title,.wy-alert.wy-alert-neutral .rst-content .admonition-title,.wy-alert.wy-alert-neutral .wy-alert-title{color:#404040;background:#e1e4e5}.rst-content .wy-alert-neutral.admonition-todo a,.rst-content .wy-alert-neutral.admonition a,.rst-content .wy-alert-neutral.attention a,.rst-content .wy-alert-neutral.caution a,.rst-content .wy-alert-neutral.danger a,.rst-content .wy-alert-neutral.error a,.rst-content .wy-alert-neutral.hint a,.rst-content .wy-alert-neutral.important a,.rst-content .wy-alert-neutral.note a,.rst-content .wy-alert-neutral.seealso a,.rst-content .wy-alert-neutral.tip a,.rst-content .wy-alert-neutral.warning a,.wy-alert.wy-alert-neutral a{color:#2980b9}.rst-content .admonition-todo p:last-child,.rst-content .admonition p:last-child,.rst-content .attention p:last-child,.rst-content .caution p:last-child,.rst-content .danger p:last-child,.rst-content .error p:last-child,.rst-content .hint p:last-child,.rst-content .important p:last-child,.rst-content .note p:last-child,.rst-content .seealso p:last-child,.rst-content .tip p:last-child,.rst-content .warning p:last-child,.wy-alert p:last-child{margin-bottom:0}.wy-tray-container{position:fixed;bottom:0;left:0;z-index:600}.wy-tray-container li{display:block;width:300px;background:transparent;color:#fff;text-align:center;box-shadow:0 5px 5px 0 rgba(0,0,0,.1);padding:0 24px;min-width:20%;opacity:0;height:0;line-height:56px;overflow:hidden;-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in}.wy-tray-container li.wy-tray-item-success{background:#27ae60}.wy-tray-container li.wy-tray-item-info{background:#2980b9}.wy-tray-container li.wy-tray-item-warning{background:#e67e22}.wy-tray-container li.wy-tray-item-danger{background:#e74c3c}.wy-tray-container li.on{opacity:1;height:56px}@media screen and (max-width:768px){.wy-tray-container{bottom:auto;top:0;width:100%}.wy-tray-container li{width:100%}}button{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;cursor:pointer;line-height:normal;-webkit-appearance:button;*overflow:visible}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button[disabled]{cursor:default}.btn{display:inline-block;border-radius:2px;line-height:normal;white-space:nowrap;text-align:center;cursor:pointer;font-size:100%;padding:6px 12px 8px;color:#fff;border:1px solid rgba(0,0,0,.1);background-color:#27ae60;text-decoration:none;font-weight:400;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;box-shadow:inset 0 1px 2px -1px hsla(0,0%,100%,.5),inset 0 -2px 0 0 rgba(0,0,0,.1);outline-none:false;vertical-align:middle;*display:inline;zoom:1;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:all .1s linear;-moz-transition:all .1s linear;transition:all .1s linear}.btn-hover{background:#2e8ece;color:#fff}.btn:hover{background:#2cc36b;color:#fff}.btn:focus{background:#2cc36b;outline:0}.btn:active{box-shadow:inset 0 -1px 0 0 rgba(0,0,0,.05),inset 0 2px 0 0 rgba(0,0,0,.1);padding:8px 12px 6px}.btn:visited{color:#fff}.btn-disabled,.btn-disabled:active,.btn-disabled:focus,.btn-disabled:hover,.btn:disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:.4;cursor:not-allowed;box-shadow:none}.btn::-moz-focus-inner{padding:0;border:0}.btn-small{font-size:80%}.btn-info{background-color:#2980b9!important}.btn-info:hover{background-color:#2e8ece!important}.btn-neutral{background-color:#f3f6f6!important;color:#404040!important}.btn-neutral:hover{background-color:#e5ebeb!important;color:#404040}.btn-neutral:visited{color:#404040!important}.btn-success{background-color:#27ae60!important}.btn-success:hover{background-color:#295!important}.btn-danger{background-color:#e74c3c!important}.btn-danger:hover{background-color:#ea6153!important}.btn-warning{background-color:#e67e22!important}.btn-warning:hover{background-color:#e98b39!important}.btn-invert{background-color:#222}.btn-invert:hover{background-color:#2f2f2f!important}.btn-link{background-color:transparent!important;color:#2980b9;box-shadow:none;border-color:transparent!important}.btn-link:active,.btn-link:hover{background-color:transparent!important;color:#409ad5!important;box-shadow:none}.btn-link:visited{color:#9b59b6}.wy-btn-group .btn,.wy-control .btn{vertical-align:middle}.wy-btn-group{margin-bottom:24px;*zoom:1}.wy-btn-group:after,.wy-btn-group:before{display:table;content:""}.wy-btn-group:after{clear:both}.wy-dropdown{position:relative;display:inline-block}.wy-dropdown-active .wy-dropdown-menu{display:block}.wy-dropdown-menu{position:absolute;left:0;display:none;float:left;top:100%;min-width:100%;background:#fcfcfc;z-index:100;border:1px solid #cfd7dd;box-shadow:0 2px 2px 0 rgba(0,0,0,.1);padding:12px}.wy-dropdown-menu>dd>a{display:block;clear:both;color:#404040;white-space:nowrap;font-size:90%;padding:0 12px;cursor:pointer}.wy-dropdown-menu>dd>a:hover{background:#2980b9;color:#fff}.wy-dropdown-menu>dd.divider{border-top:1px solid #cfd7dd;margin:6px 0}.wy-dropdown-menu>dd.search{padding-bottom:12px}.wy-dropdown-menu>dd.search input[type=search]{width:100%}.wy-dropdown-menu>dd.call-to-action{background:#e3e3e3;text-transform:uppercase;font-weight:500;font-size:80%}.wy-dropdown-menu>dd.call-to-action:hover{background:#e3e3e3}.wy-dropdown-menu>dd.call-to-action .btn{color:#fff}.wy-dropdown.wy-dropdown-up .wy-dropdown-menu{bottom:100%;top:auto;left:auto;right:0}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu{background:#fcfcfc;margin-top:2px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a{padding:6px 12px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover{background:#2980b9;color:#fff}.wy-dropdown.wy-dropdown-left .wy-dropdown-menu{right:0;left:auto;text-align:right}.wy-dropdown-arrow:before{content:" ";border-bottom:5px solid #f5f5f5;border-left:5px solid transparent;border-right:5px solid transparent;position:absolute;display:block;top:-4px;left:50%;margin-left:-3px}.wy-dropdown-arrow.wy-dropdown-arrow-left:before{left:11px}.wy-form-stacked select{display:block}.wy-form-aligned .wy-help-inline,.wy-form-aligned input,.wy-form-aligned label,.wy-form-aligned select,.wy-form-aligned textarea{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-form-aligned .wy-control-group>label{display:inline-block;vertical-align:middle;width:10em;margin:6px 12px 0 0;float:left}.wy-form-aligned .wy-control{float:left}.wy-form-aligned .wy-control label{display:block}.wy-form-aligned .wy-control select{margin-top:6px}fieldset{margin:0}fieldset,legend{border:0;padding:0}legend{width:100%;white-space:normal;margin-bottom:24px;font-size:150%;*margin-left:-7px}label,legend{display:block}label{margin:0 0 .3125em;color:#333;font-size:90%}input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}.wy-control-group{margin-bottom:24px;max-width:1200px;margin-left:auto;margin-right:auto;*zoom:1}.wy-control-group:after,.wy-control-group:before{display:table;content:""}.wy-control-group:after{clear:both}.wy-control-group.wy-control-group-required>label:after{content:" *";color:#e74c3c}.wy-control-group .wy-form-full,.wy-control-group .wy-form-halves,.wy-control-group .wy-form-thirds{padding-bottom:12px}.wy-control-group .wy-form-full input[type=color],.wy-control-group .wy-form-full input[type=date],.wy-control-group .wy-form-full input[type=datetime-local],.wy-control-group .wy-form-full input[type=datetime],.wy-control-group .wy-form-full input[type=email],.wy-control-group .wy-form-full input[type=month],.wy-control-group .wy-form-full input[type=number],.wy-control-group .wy-form-full input[type=password],.wy-control-group .wy-form-full input[type=search],.wy-control-group .wy-form-full input[type=tel],.wy-control-group .wy-form-full input[type=text],.wy-control-group .wy-form-full input[type=time],.wy-control-group .wy-form-full input[type=url],.wy-control-group .wy-form-full input[type=week],.wy-control-group .wy-form-full select,.wy-control-group .wy-form-halves input[type=color],.wy-control-group .wy-form-halves input[type=date],.wy-control-group .wy-form-halves input[type=datetime-local],.wy-control-group .wy-form-halves input[type=datetime],.wy-control-group .wy-form-halves input[type=email],.wy-control-group .wy-form-halves input[type=month],.wy-control-group .wy-form-halves input[type=number],.wy-control-group .wy-form-halves input[type=password],.wy-control-group .wy-form-halves input[type=search],.wy-control-group .wy-form-halves input[type=tel],.wy-control-group .wy-form-halves input[type=text],.wy-control-group .wy-form-halves input[type=time],.wy-control-group .wy-form-halves input[type=url],.wy-control-group .wy-form-halves input[type=week],.wy-control-group .wy-form-halves select,.wy-control-group .wy-form-thirds input[type=color],.wy-control-group .wy-form-thirds input[type=date],.wy-control-group .wy-form-thirds input[type=datetime-local],.wy-control-group .wy-form-thirds input[type=datetime],.wy-control-group .wy-form-thirds input[type=email],.wy-control-group .wy-form-thirds input[type=month],.wy-control-group .wy-form-thirds input[type=number],.wy-control-group .wy-form-thirds input[type=password],.wy-control-group .wy-form-thirds input[type=search],.wy-control-group .wy-form-thirds input[type=tel],.wy-control-group .wy-form-thirds input[type=text],.wy-control-group .wy-form-thirds input[type=time],.wy-control-group .wy-form-thirds input[type=url],.wy-control-group .wy-form-thirds input[type=week],.wy-control-group .wy-form-thirds select{width:100%}.wy-control-group .wy-form-full{float:left;display:block;width:100%;margin-right:0}.wy-control-group .wy-form-full:last-child{margin-right:0}.wy-control-group .wy-form-halves{float:left;display:block;margin-right:2.35765%;width:48.82117%}.wy-control-group .wy-form-halves:last-child,.wy-control-group .wy-form-halves:nth-of-type(2n){margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(odd){clear:left}.wy-control-group .wy-form-thirds{float:left;display:block;margin-right:2.35765%;width:31.76157%}.wy-control-group .wy-form-thirds:last-child,.wy-control-group .wy-form-thirds:nth-of-type(3n){margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n+1){clear:left}.wy-control-group.wy-control-group-no-input .wy-control,.wy-control-no-input{margin:6px 0 0;font-size:90%}.wy-control-no-input{display:inline-block}.wy-control-group.fluid-input input[type=color],.wy-control-group.fluid-input input[type=date],.wy-control-group.fluid-input input[type=datetime-local],.wy-control-group.fluid-input input[type=datetime],.wy-control-group.fluid-input input[type=email],.wy-control-group.fluid-input input[type=month],.wy-control-group.fluid-input input[type=number],.wy-control-group.fluid-input input[type=password],.wy-control-group.fluid-input input[type=search],.wy-control-group.fluid-input input[type=tel],.wy-control-group.fluid-input input[type=text],.wy-control-group.fluid-input input[type=time],.wy-control-group.fluid-input input[type=url],.wy-control-group.fluid-input input[type=week]{width:100%}.wy-form-message-inline{padding-left:.3em;color:#666;font-size:90%}.wy-form-message{display:block;color:#999;font-size:70%;margin-top:.3125em;font-style:italic}.wy-form-message p{font-size:inherit;font-style:italic;margin-bottom:6px}.wy-form-message p:last-child{margin-bottom:0}input{line-height:normal}input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;*overflow:visible}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week]{-webkit-appearance:none;padding:6px;display:inline-block;border:1px solid #ccc;font-size:80%;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;box-shadow:inset 0 1px 3px #ddd;border-radius:0;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}input[type=datetime-local]{padding:.34375em .625em}input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{padding:0;margin-right:.3125em;*height:13px;*width:13px}input[type=checkbox],input[type=radio],input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus{outline:0;outline:thin dotted\9;border-color:#333}input.no-focus:focus{border-color:#ccc!important}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:thin dotted #333;outline:1px auto #129fea}input[type=color][disabled],input[type=date][disabled],input[type=datetime-local][disabled],input[type=datetime][disabled],input[type=email][disabled],input[type=month][disabled],input[type=number][disabled],input[type=password][disabled],input[type=search][disabled],input[type=tel][disabled],input[type=text][disabled],input[type=time][disabled],input[type=url][disabled],input[type=week][disabled]{cursor:not-allowed;background-color:#fafafa}input:focus:invalid,select:focus:invalid,textarea:focus:invalid{color:#e74c3c;border:1px solid #e74c3c}input:focus:invalid:focus,select:focus:invalid:focus,textarea:focus:invalid:focus{border-color:#e74c3c}input[type=checkbox]:focus:invalid:focus,input[type=file]:focus:invalid:focus,input[type=radio]:focus:invalid:focus{outline-color:#e74c3c}input.wy-input-large{padding:12px;font-size:100%}textarea{overflow:auto;vertical-align:top;width:100%;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif}select,textarea{padding:.5em .625em;display:inline-block;border:1px solid #ccc;font-size:80%;box-shadow:inset 0 1px 3px #ddd;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}select{border:1px solid #ccc;background-color:#fff}select[multiple]{height:auto}select:focus,textarea:focus{outline:0}input[readonly],select[disabled],select[readonly],textarea[disabled],textarea[readonly]{cursor:not-allowed;background-color:#fafafa}input[type=checkbox][disabled],input[type=radio][disabled]{cursor:not-allowed}.wy-checkbox,.wy-radio{margin:6px 0;color:#404040;display:block}.wy-checkbox input,.wy-radio input{vertical-align:baseline}.wy-form-message-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-input-prefix,.wy-input-suffix{white-space:nowrap;padding:6px}.wy-input-prefix .wy-input-context,.wy-input-suffix .wy-input-context{line-height:27px;padding:0 8px;display:inline-block;font-size:80%;background-color:#f3f6f6;border:1px solid #ccc;color:#999}.wy-input-suffix .wy-input-context{border-left:0}.wy-input-prefix .wy-input-context{border-right:0}.wy-switch{position:relative;display:block;height:24px;margin-top:12px;cursor:pointer}.wy-switch:before{left:0;top:0;width:36px;height:12px;background:#ccc}.wy-switch:after,.wy-switch:before{position:absolute;content:"";display:block;border-radius:4px;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wy-switch:after{width:18px;height:18px;background:#999;left:-3px;top:-3px}.wy-switch span{position:absolute;left:48px;display:block;font-size:12px;color:#ccc;line-height:1}.wy-switch.active:before{background:#1e8449}.wy-switch.active:after{left:24px;background:#27ae60}.wy-switch.disabled{cursor:not-allowed;opacity:.8}.wy-control-group.wy-control-group-error .wy-form-message,.wy-control-group.wy-control-group-error>label{color:#e74c3c}.wy-control-group.wy-control-group-error input[type=color],.wy-control-group.wy-control-group-error input[type=date],.wy-control-group.wy-control-group-error input[type=datetime-local],.wy-control-group.wy-control-group-error input[type=datetime],.wy-control-group.wy-control-group-error input[type=email],.wy-control-group.wy-control-group-error input[type=month],.wy-control-group.wy-control-group-error input[type=number],.wy-control-group.wy-control-group-error input[type=password],.wy-control-group.wy-control-group-error input[type=search],.wy-control-group.wy-control-group-error input[type=tel],.wy-control-group.wy-control-group-error input[type=text],.wy-control-group.wy-control-group-error input[type=time],.wy-control-group.wy-control-group-error input[type=url],.wy-control-group.wy-control-group-error input[type=week],.wy-control-group.wy-control-group-error textarea{border:1px solid #e74c3c}.wy-inline-validate{white-space:nowrap}.wy-inline-validate .wy-input-context{padding:.5em .625em;display:inline-block;font-size:80%}.wy-inline-validate.wy-inline-validate-success .wy-input-context{color:#27ae60}.wy-inline-validate.wy-inline-validate-danger .wy-input-context{color:#e74c3c}.wy-inline-validate.wy-inline-validate-warning .wy-input-context{color:#e67e22}.wy-inline-validate.wy-inline-validate-info .wy-input-context{color:#2980b9}.rotate-90{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.rotate-180{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.rotate-270{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.mirror{-webkit-transform:scaleX(-1);-moz-transform:scaleX(-1);-ms-transform:scaleX(-1);-o-transform:scaleX(-1);transform:scaleX(-1)}.mirror.rotate-90{-webkit-transform:scaleX(-1) rotate(90deg);-moz-transform:scaleX(-1) rotate(90deg);-ms-transform:scaleX(-1) rotate(90deg);-o-transform:scaleX(-1) rotate(90deg);transform:scaleX(-1) rotate(90deg)}.mirror.rotate-180{-webkit-transform:scaleX(-1) rotate(180deg);-moz-transform:scaleX(-1) rotate(180deg);-ms-transform:scaleX(-1) rotate(180deg);-o-transform:scaleX(-1) rotate(180deg);transform:scaleX(-1) rotate(180deg)}.mirror.rotate-270{-webkit-transform:scaleX(-1) rotate(270deg);-moz-transform:scaleX(-1) rotate(270deg);-ms-transform:scaleX(-1) rotate(270deg);-o-transform:scaleX(-1) rotate(270deg);transform:scaleX(-1) rotate(270deg)}@media only screen and (max-width:480px){.wy-form button[type=submit]{margin:.7em 0 0}.wy-form input[type=color],.wy-form input[type=date],.wy-form input[type=datetime-local],.wy-form input[type=datetime],.wy-form input[type=email],.wy-form input[type=month],.wy-form input[type=number],.wy-form input[type=password],.wy-form input[type=search],.wy-form input[type=tel],.wy-form input[type=text],.wy-form input[type=time],.wy-form input[type=url],.wy-form input[type=week],.wy-form label{margin-bottom:.3em;display:block}.wy-form input[type=color],.wy-form input[type=date],.wy-form input[type=datetime-local],.wy-form input[type=datetime],.wy-form input[type=email],.wy-form input[type=month],.wy-form input[type=number],.wy-form input[type=password],.wy-form input[type=search],.wy-form input[type=tel],.wy-form input[type=time],.wy-form input[type=url],.wy-form input[type=week]{margin-bottom:0}.wy-form-aligned .wy-control-group label{margin-bottom:.3em;text-align:left;display:block;width:100%}.wy-form-aligned .wy-control{margin:1.5em 0 0}.wy-form-message,.wy-form-message-inline,.wy-form .wy-help-inline{display:block;font-size:80%;padding:6px 0}}@media screen and (max-width:768px){.tablet-hide{display:none}}@media screen and (max-width:480px){.mobile-hide{display:none}}.float-left{float:left}.float-right{float:right}.full-width{width:100%}.rst-content table.docutils,.rst-content table.field-list,.wy-table{border-collapse:collapse;border-spacing:0;empty-cells:show;margin-bottom:24px}.rst-content table.docutils caption,.rst-content table.field-list caption,.wy-table caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}.rst-content table.docutils td,.rst-content table.docutils th,.rst-content table.field-list td,.rst-content table.field-list th,.wy-table td,.wy-table th{font-size:90%;margin:0;overflow:visible;padding:8px 16px}.rst-content table.docutils td:first-child,.rst-content table.docutils th:first-child,.rst-content table.field-list td:first-child,.rst-content table.field-list th:first-child,.wy-table td:first-child,.wy-table th:first-child{border-left-width:0}.rst-content table.docutils thead,.rst-content table.field-list thead,.wy-table thead{color:#000;text-align:left;vertical-align:bottom;white-space:nowrap}.rst-content table.docutils thead th,.rst-content table.field-list thead th,.wy-table thead th{font-weight:700;border-bottom:2px solid #e1e4e5}.rst-content table.docutils td,.rst-content table.field-list td,.wy-table td{background-color:transparent;vertical-align:middle}.rst-content table.docutils td p,.rst-content table.field-list td p,.wy-table td p{line-height:18px}.rst-content table.docutils td p:last-child,.rst-content table.field-list td p:last-child,.wy-table td p:last-child{margin-bottom:0}.rst-content table.docutils .wy-table-cell-min,.rst-content table.field-list .wy-table-cell-min,.wy-table .wy-table-cell-min{width:1%;padding-right:0}.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox],.wy-table .wy-table-cell-min input[type=checkbox]{margin:0}.wy-table-secondary{color:grey;font-size:90%}.wy-table-tertiary{color:grey;font-size:80%}.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td,.wy-table-backed,.wy-table-odd td,.wy-table-striped tr:nth-child(2n-1) td{background-color:#f3f6f6}.rst-content table.docutils,.wy-table-bordered-all{border:1px solid #e1e4e5}.rst-content table.docutils td,.wy-table-bordered-all td{border-bottom:1px solid #e1e4e5;border-left:1px solid #e1e4e5}.rst-content table.docutils tbody>tr:last-child td,.wy-table-bordered-all tbody>tr:last-child td{border-bottom-width:0}.wy-table-bordered{border:1px solid #e1e4e5}.wy-table-bordered-rows td{border-bottom:1px solid #e1e4e5}.wy-table-bordered-rows tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal td,.wy-table-horizontal th{border-width:0 0 1px;border-bottom:1px solid #e1e4e5}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-responsive{margin-bottom:24px;max-width:100%;overflow:auto}.wy-table-responsive table{margin-bottom:0!important}.wy-table-responsive table td,.wy-table-responsive table th{white-space:nowrap}a{color:#2980b9;text-decoration:none;cursor:pointer}a:hover{color:#3091d1}a:visited{color:#9b59b6}html{height:100%}body,html{overflow-x:hidden}body{font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;font-weight:400;color:#404040;min-height:100%;background:#edf0f2}.wy-text-left{text-align:left}.wy-text-center{text-align:center}.wy-text-right{text-align:right}.wy-text-large{font-size:120%}.wy-text-normal{font-size:100%}.wy-text-small,small{font-size:80%}.wy-text-strike{text-decoration:line-through}.wy-text-warning{color:#e67e22!important}a.wy-text-warning:hover{color:#eb9950!important}.wy-text-info{color:#2980b9!important}a.wy-text-info:hover{color:#409ad5!important}.wy-text-success{color:#27ae60!important}a.wy-text-success:hover{color:#36d278!important}.wy-text-danger{color:#e74c3c!important}a.wy-text-danger:hover{color:#ed7669!important}.wy-text-neutral{color:#404040!important}a.wy-text-neutral:hover{color:#595959!important}.rst-content .toctree-wrapper>p.caption,h1,h2,h3,h4,h5,h6,legend{margin-top:0;font-weight:700;font-family:Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif}p{line-height:24px;font-size:16px;margin:0 0 24px}h1{font-size:175%}.rst-content .toctree-wrapper>p.caption,h2{font-size:150%}h3{font-size:125%}h4{font-size:115%}h5{font-size:110%}h6{font-size:100%}hr{display:block;height:1px;border:0;border-top:1px solid #e1e4e5;margin:24px 0;padding:0}.rst-content code,.rst-content tt,code{white-space:nowrap;max-width:100%;background:#fff;border:1px solid #e1e4e5;font-size:75%;padding:0 5px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;color:#e74c3c;overflow-x:auto}.rst-content tt.code-large,code.code-large{font-size:90%}.rst-content .section ul,.rst-content .toctree-wrapper ul,.wy-plain-list-disc,article ul{list-style:disc;line-height:24px;margin-bottom:24px}.rst-content .section ul li,.rst-content .toctree-wrapper ul li,.wy-plain-list-disc li,article ul li{list-style:disc;margin-left:24px}.rst-content .section ul li p:last-child,.rst-content .section ul li ul,.rst-content .toctree-wrapper ul li p:last-child,.rst-content .toctree-wrapper ul li ul,.wy-plain-list-disc li p:last-child,.wy-plain-list-disc li ul,article ul li p:last-child,article ul li ul{margin-bottom:0}.rst-content .section ul li li,.rst-content .toctree-wrapper ul li li,.wy-plain-list-disc li li,article ul li li{list-style:circle}.rst-content .section ul li li li,.rst-content .toctree-wrapper ul li li li,.wy-plain-list-disc li li li,article ul li li li{list-style:square}.rst-content .section ul li ol li,.rst-content .toctree-wrapper ul li ol li,.wy-plain-list-disc li ol li,article ul li ol li{list-style:decimal}.rst-content .section ol,.rst-content ol.arabic,.wy-plain-list-decimal,article ol{list-style:decimal;line-height:24px;margin-bottom:24px}.rst-content .section ol li,.rst-content ol.arabic li,.wy-plain-list-decimal li,article ol li{list-style:decimal;margin-left:24px}.rst-content .section ol li p:last-child,.rst-content .section ol li ul,.rst-content ol.arabic li p:last-child,.rst-content ol.arabic li ul,.wy-plain-list-decimal li p:last-child,.wy-plain-list-decimal li ul,article ol li p:last-child,article ol li ul{margin-bottom:0}.rst-content .section ol li ul li,.rst-content ol.arabic li ul li,.wy-plain-list-decimal li ul li,article ol li ul li{list-style:disc}.wy-breadcrumbs{*zoom:1}.wy-breadcrumbs:after,.wy-breadcrumbs:before{display:table;content:""}.wy-breadcrumbs:after{clear:both}.wy-breadcrumbs li{display:inline-block}.wy-breadcrumbs li.wy-breadcrumbs-aside{float:right}.wy-breadcrumbs li a{display:inline-block;padding:5px}.wy-breadcrumbs li a:first-child{padding-left:0}.rst-content .wy-breadcrumbs li tt,.wy-breadcrumbs li .rst-content tt,.wy-breadcrumbs li code{padding:5px;border:none;background:none}.rst-content .wy-breadcrumbs li tt.literal,.wy-breadcrumbs li .rst-content tt.literal,.wy-breadcrumbs li code.literal{color:#404040}.wy-breadcrumbs-extra{margin-bottom:0;color:#b3b3b3;font-size:80%;display:inline-block}@media screen and (max-width:480px){.wy-breadcrumbs-extra,.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}@media print{.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}html{font-size:16px}.wy-affix{position:fixed;top:1.618em}.wy-menu a:hover{text-decoration:none}.wy-menu-horiz{*zoom:1}.wy-menu-horiz:after,.wy-menu-horiz:before{display:table;content:""}.wy-menu-horiz:after{clear:both}.wy-menu-horiz li,.wy-menu-horiz ul{display:inline-block}.wy-menu-horiz li:hover{background:hsla(0,0%,100%,.1)}.wy-menu-horiz li.divide-left{border-left:1px solid #404040}.wy-menu-horiz li.divide-right{border-right:1px solid #404040}.wy-menu-horiz a{height:32px;display:inline-block;line-height:32px;padding:0 16px}.wy-menu-vertical{width:300px}.wy-menu-vertical header,.wy-menu-vertical p.caption{color:#55a5d9;height:32px;line-height:32px;padding:0 1.618em;margin:12px 0 0;display:block;font-weight:700;text-transform:uppercase;font-size:85%;white-space:nowrap}.wy-menu-vertical ul{margin-bottom:0}.wy-menu-vertical li.divide-top{border-top:1px solid #404040}.wy-menu-vertical li.divide-bottom{border-bottom:1px solid #404040}.wy-menu-vertical li.current{background:#e3e3e3}.wy-menu-vertical li.current a{color:grey;border-right:1px solid #c9c9c9;padding:.4045em 2.427em}.wy-menu-vertical li.current a:hover{background:#d6d6d6}.rst-content .wy-menu-vertical li tt,.wy-menu-vertical li .rst-content tt,.wy-menu-vertical li code{border:none;background:inherit;color:inherit;padding-left:0;padding-right:0}.wy-menu-vertical li span.toctree-expand{display:block;float:left;margin-left:-1.2em;font-size:.8em;line-height:1.6em;color:#4d4d4d}.wy-menu-vertical li.current>a,.wy-menu-vertical li.on a{color:#404040;font-weight:700;position:relative;background:#fcfcfc;border:none;padding:.4045em 1.618em}.wy-menu-vertical li.current>a:hover,.wy-menu-vertical li.on a:hover{background:#fcfcfc}.wy-menu-vertical li.current>a:hover span.toctree-expand,.wy-menu-vertical li.on a:hover span.toctree-expand{color:grey}.wy-menu-vertical li.current>a span.toctree-expand,.wy-menu-vertical li.on a span.toctree-expand{display:block;font-size:.8em;line-height:1.6em;color:#333}.wy-menu-vertical li.toctree-l1.current>a{border-bottom:1px solid #c9c9c9;border-top:1px solid #c9c9c9}.wy-menu-vertical .toctree-l1.current .toctree-l2>ul,.wy-menu-vertical .toctree-l2.current .toctree-l3>ul,.wy-menu-vertical .toctree-l3.current .toctree-l4>ul,.wy-menu-vertical .toctree-l4.current .toctree-l5>ul,.wy-menu-vertical .toctree-l5.current .toctree-l6>ul,.wy-menu-vertical .toctree-l6.current .toctree-l7>ul,.wy-menu-vertical .toctree-l7.current .toctree-l8>ul,.wy-menu-vertical .toctree-l8.current .toctree-l9>ul,.wy-menu-vertical .toctree-l9.current .toctree-l10>ul,.wy-menu-vertical .toctree-l10.current .toctree-l11>ul{display:none}.wy-menu-vertical .toctree-l1.current .current.toctree-l2>ul,.wy-menu-vertical .toctree-l2.current .current.toctree-l3>ul,.wy-menu-vertical .toctree-l3.current .current.toctree-l4>ul,.wy-menu-vertical .toctree-l4.current .current.toctree-l5>ul,.wy-menu-vertical .toctree-l5.current .current.toctree-l6>ul,.wy-menu-vertical .toctree-l6.current .current.toctree-l7>ul,.wy-menu-vertical .toctree-l7.current .current.toctree-l8>ul,.wy-menu-vertical .toctree-l8.current .current.toctree-l9>ul,.wy-menu-vertical .toctree-l9.current .current.toctree-l10>ul,.wy-menu-vertical .toctree-l10.current .current.toctree-l11>ul{display:block}.wy-menu-vertical li.toctree-l3,.wy-menu-vertical li.toctree-l4{font-size:.9em}.wy-menu-vertical li.toctree-l2 a,.wy-menu-vertical li.toctree-l3 a,.wy-menu-vertical li.toctree-l4 a,.wy-menu-vertical li.toctree-l5 a,.wy-menu-vertical li.toctree-l6 a,.wy-menu-vertical li.toctree-l7 a,.wy-menu-vertical li.toctree-l8 a,.wy-menu-vertical li.toctree-l9 a,.wy-menu-vertical li.toctree-l10 a{color:#404040}.wy-menu-vertical li.toctree-l2 a:hover span.toctree-expand,.wy-menu-vertical li.toctree-l3 a:hover span.toctree-expand,.wy-menu-vertical li.toctree-l4 a:hover span.toctree-expand,.wy-menu-vertical li.toctree-l5 a:hover span.toctree-expand,.wy-menu-vertical li.toctree-l6 a:hover span.toctree-expand,.wy-menu-vertical li.toctree-l7 a:hover span.toctree-expand,.wy-menu-vertical li.toctree-l8 a:hover span.toctree-expand,.wy-menu-vertical li.toctree-l9 a:hover span.toctree-expand,.wy-menu-vertical li.toctree-l10 a:hover span.toctree-expand{color:grey}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a,.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a,.wy-menu-vertical li.toctree-l4.current li.toctree-l5>a,.wy-menu-vertical li.toctree-l5.current li.toctree-l6>a,.wy-menu-vertical li.toctree-l6.current li.toctree-l7>a,.wy-menu-vertical li.toctree-l7.current li.toctree-l8>a,.wy-menu-vertical li.toctree-l8.current li.toctree-l9>a,.wy-menu-vertical li.toctree-l9.current li.toctree-l10>a,.wy-menu-vertical li.toctree-l10.current li.toctree-l11>a{display:block}.wy-menu-vertical li.toctree-l2.current>a{padding:.4045em 2.427em}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a,.wy-menu-vertical li.toctree-l3.current>a{padding:.4045em 4.045em}.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a,.wy-menu-vertical li.toctree-l4.current>a{padding:.4045em 5.663em}.wy-menu-vertical li.toctree-l4.current li.toctree-l5>a,.wy-menu-vertical li.toctree-l5.current>a{padding:.4045em 7.281em}.wy-menu-vertical li.toctree-l5.current li.toctree-l6>a,.wy-menu-vertical li.toctree-l6.current>a{padding:.4045em 8.899em}.wy-menu-vertical li.toctree-l6.current li.toctree-l7>a,.wy-menu-vertical li.toctree-l7.current>a{padding:.4045em 10.517em}.wy-menu-vertical li.toctree-l7.current li.toctree-l8>a,.wy-menu-vertical li.toctree-l8.current>a{padding:.4045em 12.135em}.wy-menu-vertical li.toctree-l8.current li.toctree-l9>a,.wy-menu-vertical li.toctree-l9.current>a{padding:.4045em 13.753em}.wy-menu-vertical li.toctree-l9.current li.toctree-l10>a,.wy-menu-vertical li.toctree-l10.current>a{padding:.4045em 15.371em}.wy-menu-vertical li.toctree-l10.current li.toctree-l11>a{padding:.4045em 16.989em}.wy-menu-vertical li.toctree-l2.current>a,.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{background:#c9c9c9}.wy-menu-vertical li.toctree-l2 span.toctree-expand{color:#a3a3a3}.wy-menu-vertical li.toctree-l3.current>a,.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{background:#bdbdbd}.wy-menu-vertical li.toctree-l3 span.toctree-expand{color:#969696}.wy-menu-vertical li.current ul{display:block}.wy-menu-vertical li ul{margin-bottom:0;display:none}.wy-menu-vertical li ul li a{margin-bottom:0;color:#d9d9d9;font-weight:400}.wy-menu-vertical a{line-height:18px;padding:.4045em 1.618em;display:block;position:relative;font-size:90%;color:#d9d9d9}.wy-menu-vertical a:hover{background-color:#4e4a4a;cursor:pointer}.wy-menu-vertical a:hover span.toctree-expand{color:#d9d9d9}.wy-menu-vertical a:active{background-color:#2980b9;cursor:pointer;color:#fff}.wy-menu-vertical a:active span.toctree-expand{color:#fff}.wy-side-nav-search{display:block;width:300px;padding:.809em;margin-bottom:.809em;z-index:200;background-color:#2980b9;text-align:center;color:#fcfcfc}.wy-side-nav-search input[type=text]{width:100%;border-radius:50px;padding:6px 12px;border-color:#2472a4}.wy-side-nav-search img{display:block;margin:auto auto .809em;height:45px;width:45px;background-color:#2980b9;padding:5px;border-radius:100%}.wy-side-nav-search .wy-dropdown>a,.wy-side-nav-search>a{color:#fcfcfc;font-size:100%;font-weight:700;display:inline-block;padding:4px 6px;margin-bottom:.809em}.wy-side-nav-search .wy-dropdown>a:hover,.wy-side-nav-search>a:hover{background:hsla(0,0%,100%,.1)}.wy-side-nav-search .wy-dropdown>a img.logo,.wy-side-nav-search>a img.logo{display:block;margin:0 auto;height:auto;width:auto;border-radius:0;max-width:100%;background:transparent}.wy-side-nav-search .wy-dropdown>a.icon img.logo,.wy-side-nav-search>a.icon img.logo{margin-top:.85em}.wy-side-nav-search>div.version{margin-top:-.4045em;margin-bottom:.809em;font-weight:400;color:hsla(0,0%,100%,.3)}.wy-nav .wy-menu-vertical header{color:#2980b9}.wy-nav .wy-menu-vertical a{color:#b3b3b3}.wy-nav .wy-menu-vertical a:hover{background-color:#2980b9;color:#fff}[data-menu-wrap]{-webkit-transition:all .2s ease-in;-moz-transition:all .2s ease-in;transition:all .2s ease-in;position:absolute;opacity:1;width:100%;opacity:0}[data-menu-wrap].move-center{left:0;right:auto;opacity:1}[data-menu-wrap].move-left{right:auto;left:-100%;opacity:0}[data-menu-wrap].move-right{right:-100%;left:auto;opacity:0}.wy-body-for-nav{background:#fcfcfc}.wy-grid-for-nav{position:absolute;width:100%;height:100%}.wy-nav-side{position:fixed;top:0;bottom:0;left:0;padding-bottom:2em;width:300px;overflow-x:hidden;overflow-y:hidden;min-height:100%;color:#9b9b9b;background:#343131;z-index:200}.wy-side-scroll{width:320px;position:relative;overflow-x:hidden;overflow-y:scroll;height:100%}.wy-nav-top{display:none;background:#2980b9;color:#fff;padding:.4045em .809em;position:relative;line-height:50px;text-align:center;font-size:100%;*zoom:1}.wy-nav-top:after,.wy-nav-top:before{display:table;content:""}.wy-nav-top:after{clear:both}.wy-nav-top a{color:#fff;font-weight:700}.wy-nav-top img{margin-right:12px;height:45px;width:45px;background-color:#2980b9;padding:5px;border-radius:100%}.wy-nav-top i{font-size:30px;float:left;cursor:pointer;padding-top:inherit}.wy-nav-content-wrap{margin-left:300px;background:#fcfcfc;min-height:100%}.wy-nav-content{padding:1.618em 3.236em;height:100%;max-width:800px;margin:auto}.wy-body-mask{position:fixed;width:100%;height:100%;background:rgba(0,0,0,.2);display:none;z-index:499}.wy-body-mask.on{display:block}footer{color:grey}footer p{margin-bottom:12px}.rst-content footer span.commit tt,footer span.commit .rst-content tt,footer span.commit code{padding:0;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;font-size:1em;background:none;border:none;color:grey}.rst-footer-buttons{*zoom:1}.rst-footer-buttons:after,.rst-footer-buttons:before{width:100%;display:table;content:""}.rst-footer-buttons:after{clear:both}.rst-breadcrumbs-buttons{margin-top:12px;*zoom:1}.rst-breadcrumbs-buttons:after,.rst-breadcrumbs-buttons:before{display:table;content:""}.rst-breadcrumbs-buttons:after{clear:both}#search-results .search li{margin-bottom:24px;border-bottom:1px solid #e1e4e5;padding-bottom:24px}#search-results .search li:first-child{border-top:1px solid #e1e4e5;padding-top:24px}#search-results .search li a{font-size:120%;margin-bottom:12px;display:inline-block}#search-results .context{color:grey;font-size:90%}.genindextable li>ul{margin-left:24px}@media screen and (max-width:768px){.wy-body-for-nav{background:#fcfcfc}.wy-nav-top{display:block}.wy-nav-side{left:-300px}.wy-nav-side.shift{width:85%;left:0}.wy-menu.wy-menu-vertical,.wy-side-nav-search,.wy-side-scroll{width:auto}.wy-nav-content-wrap{margin-left:0}.wy-nav-content-wrap .wy-nav-content{padding:1.618em}.wy-nav-content-wrap.shift{position:fixed;min-width:100%;left:85%;top:0;height:100%;overflow:hidden}}@media screen and (min-width:1100px){.wy-nav-content-wrap{background:rgba(0,0,0,.05)}.wy-nav-content{margin:0;background:#fcfcfc}}@media print{.rst-versions,.wy-nav-side,footer{display:none}.wy-nav-content-wrap{margin-left:0}}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:Lato,proxima-nova,Helvetica Neue,Arial,sans-serif;z-index:400}.rst-versions a{color:#2980b9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27ae60;*zoom:1}.rst-versions .rst-current-version:after,.rst-versions .rst-current-version:before{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-content .code-block-caption .rst-versions .rst-current-version .headerlink,.rst-content .rst-versions .rst-current-version .admonition-title,.rst-content code.download .rst-versions .rst-current-version span:first-child,.rst-content dl dt .rst-versions .rst-current-version .headerlink,.rst-content h1 .rst-versions .rst-current-version .headerlink,.rst-content h2 .rst-versions .rst-current-version .headerlink,.rst-content h3 .rst-versions .rst-current-version .headerlink,.rst-content h4 .rst-versions .rst-current-version .headerlink,.rst-content h5 .rst-versions .rst-current-version .headerlink,.rst-content h6 .rst-versions .rst-current-version .headerlink,.rst-content p.caption .rst-versions .rst-current-version .headerlink,.rst-content table>caption .rst-versions .rst-current-version .headerlink,.rst-content tt.download .rst-versions .rst-current-version span:first-child,.rst-versions .rst-current-version .fa,.rst-versions .rst-current-version .icon,.rst-versions .rst-current-version .rst-content .admonition-title,.rst-versions .rst-current-version .rst-content .code-block-caption .headerlink,.rst-versions .rst-current-version .rst-content code.download span:first-child,.rst-versions .rst-current-version .rst-content dl dt .headerlink,.rst-versions .rst-current-version .rst-content h1 .headerlink,.rst-versions .rst-current-version .rst-content h2 .headerlink,.rst-versions .rst-current-version .rst-content h3 .headerlink,.rst-versions .rst-current-version .rst-content h4 .headerlink,.rst-versions .rst-current-version .rst-content h5 .headerlink,.rst-versions .rst-current-version .rst-content h6 .headerlink,.rst-versions .rst-current-version .rst-content p.caption .headerlink,.rst-versions .rst-current-version .rst-content table>caption .headerlink,.rst-versions .rst-current-version .rst-content tt.download span:first-child,.rst-versions .rst-current-version .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li .rst-versions .rst-current-version span.toctree-expand{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#e74c3c;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#f1c40f;color:#000}.rst-versions.shift-up{height:auto;max-height:100%;overflow-y:scroll}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:grey;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:1px solid #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px;max-height:90%}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none;line-height:30px}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge>.rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width:768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}}.rst-content img{max-width:100%;height:auto}.rst-content div.figure{margin-bottom:24px}.rst-content div.figure p.caption{font-style:italic}.rst-content div.figure p:last-child.caption{margin-bottom:0}.rst-content div.figure.align-center{text-align:center}.rst-content .section>a>img,.rst-content .section>img{margin-bottom:24px}.rst-content abbr[title]{text-decoration:none}.rst-content.style-external-links a.reference.external:after{font-family:FontAwesome;content:"\f08e";color:#b3b3b3;vertical-align:super;font-size:60%;margin:0 .2em}.rst-content blockquote{margin-left:24px;line-height:24px;margin-bottom:24px}.rst-content pre.literal-block{white-space:pre;margin:0;padding:12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;display:block;overflow:auto}.rst-content div[class^=highlight],.rst-content pre.literal-block{border:1px solid #e1e4e5;overflow-x:auto;margin:1px 0 24px}.rst-content div[class^=highlight] div[class^=highlight],.rst-content pre.literal-block div[class^=highlight]{padding:0;border:none;margin:0}.rst-content div[class^=highlight] td.code{width:100%}.rst-content .linenodiv pre{border-right:1px solid #e6e9ea;margin:0;padding:12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;user-select:none;pointer-events:none}.rst-content div[class^=highlight] pre{white-space:pre;margin:0;padding:12px;display:block;overflow:auto}.rst-content div[class^=highlight] pre .hll{display:block;margin:0 -12px;padding:0 12px}.rst-content .linenodiv pre,.rst-content div[class^=highlight] pre,.rst-content pre.literal-block{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;font-size:12px;line-height:1.4}.rst-content div.highlight .gp{user-select:none;pointer-events:none}.rst-content .code-block-caption{font-style:italic;font-size:85%;line-height:1;padding:1em 0;text-align:center}@media print{.rst-content .codeblock,.rst-content div[class^=highlight],.rst-content div[class^=highlight] pre{white-space:pre-wrap}}.rst-content .admonition,.rst-content .admonition-todo,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .note,.rst-content .seealso,.rst-content .tip,.rst-content .warning{clear:both}.rst-content .admonition-todo .last,.rst-content .admonition-todo>:last-child,.rst-content .admonition .last,.rst-content .admonition>:last-child,.rst-content .attention .last,.rst-content .attention>:last-child,.rst-content .caution .last,.rst-content .caution>:last-child,.rst-content .danger .last,.rst-content .danger>:last-child,.rst-content .error .last,.rst-content .error>:last-child,.rst-content .hint .last,.rst-content .hint>:last-child,.rst-content .important .last,.rst-content .important>:last-child,.rst-content .note .last,.rst-content .note>:last-child,.rst-content .seealso .last,.rst-content .seealso>:last-child,.rst-content .tip .last,.rst-content .tip>:last-child,.rst-content .warning .last,.rst-content .warning>:last-child{margin-bottom:0}.rst-content .admonition-title:before{margin-right:4px}.rst-content .admonition table{border-color:rgba(0,0,0,.1)}.rst-content .admonition table td,.rst-content .admonition table th{background:transparent!important;border-color:rgba(0,0,0,.1)!important}.rst-content .section ol.loweralpha,.rst-content .section ol.loweralpha>li{list-style:lower-alpha}.rst-content .section ol.upperalpha,.rst-content .section ol.upperalpha>li{list-style:upper-alpha}.rst-content .section ol li>*,.rst-content .section ul li>*{margin-top:12px;margin-bottom:12px}.rst-content .section ol li>:first-child,.rst-content .section ul li>:first-child{margin-top:0}.rst-content .section ol li>p,.rst-content .section ol li>p:last-child,.rst-content .section ul li>p,.rst-content .section ul li>p:last-child{margin-bottom:12px}.rst-content .section ol li>p:only-child,.rst-content .section ol li>p:only-child:last-child,.rst-content .section ul li>p:only-child,.rst-content .section ul li>p:only-child:last-child{margin-bottom:0}.rst-content .section ol li>ol,.rst-content .section ol li>ul,.rst-content .section ul li>ol,.rst-content .section ul li>ul{margin-bottom:12px}.rst-content .section ol.simple li>*,.rst-content .section ol.simple li ol,.rst-content .section ol.simple li ul,.rst-content .section ul.simple li>*,.rst-content .section ul.simple li ol,.rst-content .section ul.simple li ul{margin-top:0;margin-bottom:0}.rst-content .line-block{margin-left:0;margin-bottom:24px;line-height:24px}.rst-content .line-block .line-block{margin-left:24px;margin-bottom:0}.rst-content .topic-title{font-weight:700;margin-bottom:12px}.rst-content .toc-backref{color:#404040}.rst-content .align-right{float:right;margin:0 0 24px 24px}.rst-content .align-left{float:left;margin:0 24px 24px 0}.rst-content .align-center{margin:auto}.rst-content .align-center:not(table){display:block}.rst-content .code-block-caption .headerlink,.rst-content .toctree-wrapper>p.caption .headerlink,.rst-content dl dt .headerlink,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content p.caption .headerlink,.rst-content table>caption .headerlink{visibility:hidden;font-size:14px}.rst-content .code-block-caption .headerlink:after,.rst-content .toctree-wrapper>p.caption .headerlink:after,.rst-content dl dt .headerlink:after,.rst-content h1 .headerlink:after,.rst-content h2 .headerlink:after,.rst-content h3 .headerlink:after,.rst-content h4 .headerlink:after,.rst-content h5 .headerlink:after,.rst-content h6 .headerlink:after,.rst-content p.caption .headerlink:after,.rst-content table>caption .headerlink:after{content:"\f0c1";font-family:FontAwesome}.rst-content .code-block-caption:hover .headerlink:after,.rst-content .toctree-wrapper>p.caption:hover .headerlink:after,.rst-content dl dt:hover .headerlink:after,.rst-content h1:hover .headerlink:after,.rst-content h2:hover .headerlink:after,.rst-content h3:hover .headerlink:after,.rst-content h4:hover .headerlink:after,.rst-content h5:hover .headerlink:after,.rst-content h6:hover .headerlink:after,.rst-content p.caption:hover .headerlink:after,.rst-content table>caption:hover .headerlink:after{visibility:visible}.rst-content table>caption .headerlink:after{font-size:12px}.rst-content .centered{text-align:center}.rst-content .sidebar{float:right;width:40%;display:block;margin:0 0 24px 24px;padding:24px;background:#f3f6f6;border:1px solid #e1e4e5}.rst-content .sidebar dl,.rst-content .sidebar p,.rst-content .sidebar ul{font-size:90%}.rst-content .sidebar .last,.rst-content .sidebar>:last-child{margin-bottom:0}.rst-content .sidebar .sidebar-title{display:block;font-family:Roboto Slab,ff-tisa-web-pro,Georgia,Arial,sans-serif;font-weight:700;background:#e1e4e5;padding:6px 12px;margin:-24px -24px 24px;font-size:100%}.rst-content .highlighted{background:#f1c40f;box-shadow:0 0 0 2px #f1c40f;display:inline;font-weight:700}.rst-content .citation-reference,.rst-content .footnote-reference{vertical-align:baseline;position:relative;top:-.4em;line-height:0;font-size:90%}.rst-content .hlist{width:100%}html.writer-html4 .rst-content table.docutils.citation,html.writer-html4 .rst-content table.docutils.footnote{background:none;border:none}html.writer-html4 .rst-content table.docutils.citation td,html.writer-html4 .rst-content table.docutils.citation tr,html.writer-html4 .rst-content table.docutils.footnote td,html.writer-html4 .rst-content table.docutils.footnote tr{border:none;background-color:transparent!important;white-space:normal}html.writer-html4 .rst-content table.docutils.citation td.label,html.writer-html4 .rst-content table.docutils.footnote td.label{padding-left:0;padding-right:0;vertical-align:top}html.writer-html5 .rst-content dl dt span.classifier:before{content:" : "}html.writer-html5 .rst-content dl.field-list,html.writer-html5 .rst-content dl.footnote{display:grid;grid-template-columns:max-content auto}html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dt{padding-left:1rem}html.writer-html5 .rst-content dl.field-list>dt:after,html.writer-html5 .rst-content dl.footnote>dt:after{content:":"}html.writer-html5 .rst-content dl.field-list>dd,html.writer-html5 .rst-content dl.field-list>dt,html.writer-html5 .rst-content dl.footnote>dd,html.writer-html5 .rst-content dl.footnote>dt{margin-bottom:0}html.writer-html5 .rst-content dl.footnote{font-size:.9rem}html.writer-html5 .rst-content dl.footnote>dt{margin:0 .5rem .5rem 0;line-height:1.2rem;word-break:break-all;font-weight:400}html.writer-html5 .rst-content dl.footnote>dt>span.brackets{margin-right:.5rem}html.writer-html5 .rst-content dl.footnote>dt>span.brackets:before{content:"["}html.writer-html5 .rst-content dl.footnote>dt>span.brackets:after{content:"]"}html.writer-html5 .rst-content dl.footnote>dt>span.fn-backref{font-style:italic}html.writer-html5 .rst-content dl.footnote>dd{margin:0 0 .5rem;line-height:1.2rem}html.writer-html5 .rst-content dl.footnote>dd p,html.writer-html5 .rst-content dl.option-list kbd{font-size:.9rem}.rst-content table.docutils.footnote,html.writer-html4 .rst-content table.docutils.citation,html.writer-html5 .rst-content dl.footnote{color:grey}.rst-content table.docutils.footnote code,.rst-content table.docutils.footnote tt,html.writer-html4 .rst-content table.docutils.citation code,html.writer-html4 .rst-content table.docutils.citation tt,html.writer-html5 .rst-content dl.footnote code,html.writer-html5 .rst-content dl.footnote tt{color:#555}.rst-content .wy-table-responsive.citation,.rst-content .wy-table-responsive.footnote{margin-bottom:0}.rst-content .wy-table-responsive.citation+:not(.citation),.rst-content .wy-table-responsive.footnote+:not(.footnote){margin-top:24px}.rst-content .wy-table-responsive.citation:last-child,.rst-content .wy-table-responsive.footnote:last-child{margin-bottom:24px}.rst-content table.docutils th{border-color:#e1e4e5}html.writer-html5 .rst-content table.docutils th{border:1px solid #e1e4e5}html.writer-html5 .rst-content table.docutils td>p,html.writer-html5 .rst-content table.docutils th>p{line-height:1rem;margin-bottom:0;font-size:.9rem}.rst-content table.docutils td .last,.rst-content table.docutils td .last>:last-child{margin-bottom:0}.rst-content table.field-list,.rst-content table.field-list td{border:none}.rst-content table.field-list td p{font-size:inherit;line-height:inherit}.rst-content table.field-list td>strong{display:inline-block}.rst-content table.field-list .field-name{padding-right:10px;text-align:left;white-space:nowrap}.rst-content table.field-list .field-body{text-align:left}.rst-content code,.rst-content tt{color:#000;font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace;padding:2px 5px}.rst-content code big,.rst-content code em,.rst-content tt big,.rst-content tt em{font-size:100%!important;line-height:normal}.rst-content code.literal,.rst-content tt.literal{color:#e74c3c}.rst-content code.xref,.rst-content tt.xref,a .rst-content code,a .rst-content tt{font-weight:700;color:#404040}.rst-content kbd,.rst-content pre,.rst-content samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,Courier,monospace}.rst-content a code,.rst-content a tt{color:#2980b9}.rst-content dl{margin-bottom:24px}.rst-content dl dt{font-weight:700;margin-bottom:12px}.rst-content dl ol,.rst-content dl p,.rst-content dl table,.rst-content dl ul{margin-bottom:12px}.rst-content dl dd{margin:0 0 12px 24px;line-height:24px}html.writer-html4 .rst-content dl:not(.docutils),html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple){margin-bottom:24px}html.writer-html4 .rst-content dl:not(.docutils)>dt,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple)>dt{display:table;margin:6px 0;font-size:90%;line-height:normal;background:#e7f2fa;color:#2980b9;border-top:3px solid #6ab0de;padding:6px;position:relative}html.writer-html4 .rst-content dl:not(.docutils)>dt:before,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple)>dt:before{color:#6ab0de}html.writer-html4 .rst-content dl:not(.docutils)>dt .headerlink,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple)>dt .headerlink{color:#404040;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils) dl:not(.field-list)>dt,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) dl:not(.field-list)>dt{margin-bottom:6px;border:none;border-left:3px solid #ccc;background:#f0f0f0;color:#555}html.writer-html4 .rst-content dl:not(.docutils) dl:not(.field-list)>dt .headerlink,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) dl:not(.field-list)>dt .headerlink{color:#404040;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils)>dt:first-child,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple)>dt:first-child{margin-top:0}html.writer-html4 .rst-content dl:not(.docutils) code,html.writer-html4 .rst-content dl:not(.docutils) tt,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) code,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) tt{font-weight:700}html.writer-html4 .rst-content dl:not(.docutils) code.descclassname,html.writer-html4 .rst-content dl:not(.docutils) code.descname,html.writer-html4 .rst-content dl:not(.docutils) tt.descclassname,html.writer-html4 .rst-content dl:not(.docutils) tt.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) code.descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) code.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) tt.descclassname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) tt.descname{background-color:transparent;border:none;padding:0;font-size:100%!important}html.writer-html4 .rst-content dl:not(.docutils) code.descname,html.writer-html4 .rst-content dl:not(.docutils) tt.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) code.descname,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) tt.descname{font-weight:700}html.writer-html4 .rst-content dl:not(.docutils) .optional,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .optional{display:inline-block;padding:0 4px;color:#000;font-weight:700}html.writer-html4 .rst-content dl:not(.docutils) .property,html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple) .property{display:inline-block;padding-right:8px}.rst-content .viewcode-back,.rst-content .viewcode-link{display:inline-block;color:#27ae60;font-size:80%;padding-left:24px}.rst-content .viewcode-back{display:block;float:right}.rst-content p.rubric{margin-bottom:12px;font-weight:700}.rst-content code.download,.rst-content tt.download{background:inherit;padding:inherit;font-weight:400;font-family:inherit;font-size:inherit;color:inherit;border:inherit;white-space:inherit}.rst-content code.download span:first-child,.rst-content tt.download span:first-child{-webkit-font-smoothing:subpixel-antialiased}.rst-content code.download span:first-child:before,.rst-content tt.download span:first-child:before{margin-right:4px}.rst-content .guilabel{border:1px solid #7fbbe3;background:#e7f2fa;font-size:80%;font-weight:700;border-radius:4px;padding:2.4px 6px;margin:auto 2px}.rst-content .versionmodified{font-style:italic}@media screen and (max-width:480px){.rst-content .sidebar{width:100%}}span[id*=MathJax-Span]{color:#404040}.math{text-align:center}@font-face{font-family:Lato;src:url(fonts/lato-normal.woff2?bd03a2cc277bbbc338d464e679fe9942) format("woff2"),url(fonts/lato-normal.woff?27bd77b9162d388cb8d4c4217c7c5e2a) format("woff");font-weight:400;font-style:normal;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-bold.woff2?cccb897485813c7c256901dbca54ecf2) format("woff2"),url(fonts/lato-bold.woff?d878b6c29b10beca227e9eef4246111b) format("woff");font-weight:700;font-style:normal;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-bold-italic.woff2?0b6bb6725576b072c5d0b02ecdd1900d) format("woff2"),url(fonts/lato-bold-italic.woff?9c7e4e9eb485b4a121c760e61bc3707c) format("woff");font-weight:700;font-style:italic;font-display:block}@font-face{font-family:Lato;src:url(fonts/lato-normal-italic.woff2?4eb103b4d12be57cb1d040ed5e162e9d) format("woff2"),url(fonts/lato-normal-italic.woff?f28f2d6482446544ef1ea1ccc6dd5892) format("woff");font-weight:400;font-style:italic;font-display:block}@font-face{font-family:Roboto Slab;font-style:normal;font-weight:400;src:url(fonts/Roboto-Slab-Regular.woff2?7abf5b8d04d26a2cafea937019bca958) format("woff2"),url(fonts/Roboto-Slab-Regular.woff?c1be9284088d487c5e3ff0a10a92e58c) format("woff");font-display:block}@font-face{font-family:Roboto Slab;font-style:normal;font-weight:700;src:url(fonts/Roboto-Slab-Bold.woff2?9984f4a9bda09be08e83f2506954adbe) format("woff2"),url(fonts/Roboto-Slab-Bold.woff?bed5564a116b05148e3b3bea6fb1162a) format("woff");font-display:block} ================================================ FILE: docs/_static/custom.css ================================================ /* This file intentionally left blank. */ ================================================ FILE: docs/_static/doctools.js ================================================ /* * doctools.js * ~~~~~~~~~~~ * * Sphinx JavaScript utilities for all documentation. * * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ /** * select a different prefix for underscore */ $u = _.noConflict(); /** * make the code below compatible with browsers without * an installed firebug like debugger if (!window.console || !console.firebug) { var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"]; window.console = {}; for (var i = 0; i < names.length; ++i) window.console[names[i]] = function() {}; } */ /** * small helper function to urldecode strings * * See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL */ jQuery.urldecode = function(x) { if (!x) { return x } return decodeURIComponent(x.replace(/\+/g, ' ')); }; /** * small helper function to urlencode strings */ jQuery.urlencode = encodeURIComponent; /** * This function returns the parsed url parameters of the * current request. Multiple values per key are supported, * it will always return arrays of strings for the value parts. */ jQuery.getQueryParameters = function(s) { if (typeof s === 'undefined') s = document.location.search; var parts = s.substr(s.indexOf('?') + 1).split('&'); var result = {}; for (var i = 0; i < parts.length; i++) { var tmp = parts[i].split('=', 2); var key = jQuery.urldecode(tmp[0]); var value = jQuery.urldecode(tmp[1]); if (key in result) result[key].push(value); else result[key] = [value]; } return result; }; /** * highlight a given string on a jquery object by wrapping it in * span elements with the given class name. */ jQuery.fn.highlightText = function(text, className) { function highlight(node, addItems) { if (node.nodeType === 3) { var val = node.nodeValue; var pos = val.toLowerCase().indexOf(text); if (pos >= 0 && !jQuery(node.parentNode).hasClass(className) && !jQuery(node.parentNode).hasClass("nohighlight")) { var span; var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg"); if (isInSVG) { span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); } else { span = document.createElement("span"); span.className = className; } span.appendChild(document.createTextNode(val.substr(pos, text.length))); node.parentNode.insertBefore(span, node.parentNode.insertBefore( document.createTextNode(val.substr(pos + text.length)), node.nextSibling)); node.nodeValue = val.substr(0, pos); if (isInSVG) { var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); var bbox = node.parentElement.getBBox(); rect.x.baseVal.value = bbox.x; rect.y.baseVal.value = bbox.y; rect.width.baseVal.value = bbox.width; rect.height.baseVal.value = bbox.height; rect.setAttribute('class', className); addItems.push({ "parent": node.parentNode, "target": rect}); } } } else if (!jQuery(node).is("button, select, textarea")) { jQuery.each(node.childNodes, function() { highlight(this, addItems); }); } } var addItems = []; var result = this.each(function() { highlight(this, addItems); }); for (var i = 0; i < addItems.length; ++i) { jQuery(addItems[i].parent).before(addItems[i].target); } return result; }; /* * backward compatibility for jQuery.browser * This will be supported until firefox bug is fixed. */ if (!jQuery.browser) { jQuery.uaMatch = function(ua) { ua = ua.toLowerCase(); var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || /(webkit)[ \/]([\w.]+)/.exec(ua) || /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || /(msie) ([\w.]+)/.exec(ua) || ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || []; return { browser: match[ 1 ] || "", version: match[ 2 ] || "0" }; }; jQuery.browser = {}; jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; } /** * Small JavaScript module for the documentation. */ var Documentation = { init : function() { this.fixFirefoxAnchorBug(); this.highlightSearchWords(); this.initIndexTable(); if (DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) { this.initOnKeyListeners(); } }, /** * i18n support */ TRANSLATIONS : {}, PLURAL_EXPR : function(n) { return n === 1 ? 0 : 1; }, LOCALE : 'unknown', // gettext and ngettext don't access this so that the functions // can safely bound to a different name (_ = Documentation.gettext) gettext : function(string) { var translated = Documentation.TRANSLATIONS[string]; if (typeof translated === 'undefined') return string; return (typeof translated === 'string') ? translated : translated[0]; }, ngettext : function(singular, plural, n) { var translated = Documentation.TRANSLATIONS[singular]; if (typeof translated === 'undefined') return (n == 1) ? singular : plural; return translated[Documentation.PLURALEXPR(n)]; }, addTranslations : function(catalog) { for (var key in catalog.messages) this.TRANSLATIONS[key] = catalog.messages[key]; this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); this.LOCALE = catalog.locale; }, /** * add context elements like header anchor links */ addContextElements : function() { $('div[id] > :header:first').each(function() { $('\u00B6'). attr('href', '#' + this.id). attr('title', _('Permalink to this headline')). appendTo(this); }); $('dt[id]').each(function() { $('\u00B6'). attr('href', '#' + this.id). attr('title', _('Permalink to this definition')). appendTo(this); }); }, /** * workaround a firefox stupidity * see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075 */ fixFirefoxAnchorBug : function() { if (document.location.hash && $.browser.mozilla) window.setTimeout(function() { document.location.href += ''; }, 10); }, /** * highlight the search words provided in the url in the text */ highlightSearchWords : function() { var params = $.getQueryParameters(); var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; if (terms.length) { var body = $('div.body'); if (!body.length) { body = $('body'); } window.setTimeout(function() { $.each(terms, function() { body.highlightText(this.toLowerCase(), 'highlighted'); }); }, 10); $('') .appendTo($('#searchbox')); } }, /** * init the domain index toggle buttons */ initIndexTable : function() { var togglers = $('img.toggler').click(function() { var src = $(this).attr('src'); var idnum = $(this).attr('id').substr(7); $('tr.cg-' + idnum).toggle(); if (src.substr(-9) === 'minus.png') $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); else $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); }).css('display', ''); if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { togglers.click(); } }, /** * helper function to hide the search marks again */ hideSearchWords : function() { $('#searchbox .highlight-link').fadeOut(300); $('span.highlighted').removeClass('highlighted'); }, /** * make the url absolute */ makeURL : function(relativeURL) { return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; }, /** * get the current relative url */ getCurrentURL : function() { var path = document.location.pathname; var parts = path.split(/\//); $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { if (this === '..') parts.pop(); }); var url = parts.join('/'); return path.substring(url.lastIndexOf('/') + 1, path.length - 1); }, initOnKeyListeners: function() { $(document).keydown(function(event) { var activeElementType = document.activeElement.tagName; // don't navigate when in search box, textarea, dropdown or button if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT' && activeElementType !== 'BUTTON' && !event.altKey && !event.ctrlKey && !event.metaKey && !event.shiftKey) { switch (event.keyCode) { case 37: // left var prevHref = $('link[rel="prev"]').prop('href'); if (prevHref) { window.location.href = prevHref; return false; } case 39: // right var nextHref = $('link[rel="next"]').prop('href'); if (nextHref) { window.location.href = nextHref; return false; } } } }); } }; // quick alias for translations _ = Documentation.gettext; $(document).ready(function() { Documentation.init(); }); ================================================ FILE: docs/_static/documentation_options.js ================================================ var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), VERSION: '0.5.1', LANGUAGE: 'None', COLLAPSE_INDEX: false, BUILDER: 'html', FILE_SUFFIX: '.html', LINK_SUFFIX: '.html', HAS_SOURCE: true, SOURCELINK_SUFFIX: '.txt', NAVIGATION_WITH_KEYS: false }; ================================================ FILE: docs/_static/jquery-3.4.1.js ================================================ /*! * jQuery JavaScript Library v3.4.1 * https://jquery.com/ * * Includes Sizzle.js * https://sizzlejs.com/ * * Copyright JS Foundation and other contributors * Released under the MIT license * https://jquery.org/license * * Date: 2019-05-01T21:04Z */ ( function( global, factory ) { "use strict"; if ( typeof module === "object" && typeof module.exports === "object" ) { // For CommonJS and CommonJS-like environments where a proper `window` // is present, execute the factory and get jQuery. // For environments that do not have a `window` with a `document` // (such as Node.js), expose a factory as module.exports. // This accentuates the need for the creation of a real `window`. // e.g. var jQuery = require("jquery")(window); // See ticket #14549 for more info. module.exports = global.document ? factory( global, true ) : function( w ) { if ( !w.document ) { throw new Error( "jQuery requires a window with a document" ); } return factory( w ); }; } else { factory( global ); } // Pass this if window is not defined yet } )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { // Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 // throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode // arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common // enough that all such attempts are guarded in a try block. "use strict"; var arr = []; var document = window.document; var getProto = Object.getPrototypeOf; var slice = arr.slice; var concat = arr.concat; var push = arr.push; var indexOf = arr.indexOf; var class2type = {}; var toString = class2type.toString; var hasOwn = class2type.hasOwnProperty; var fnToString = hasOwn.toString; var ObjectFunctionString = fnToString.call( Object ); var support = {}; var isFunction = function isFunction( obj ) { // Support: Chrome <=57, Firefox <=52 // In some browsers, typeof returns "function" for HTML elements // (i.e., `typeof document.createElement( "object" ) === "function"`). // We don't want to classify *any* DOM node as a function. return typeof obj === "function" && typeof obj.nodeType !== "number"; }; var isWindow = function isWindow( obj ) { return obj != null && obj === obj.window; }; var preservedScriptAttributes = { type: true, src: true, nonce: true, noModule: true }; function DOMEval( code, node, doc ) { doc = doc || document; var i, val, script = doc.createElement( "script" ); script.text = code; if ( node ) { for ( i in preservedScriptAttributes ) { // Support: Firefox 64+, Edge 18+ // Some browsers don't support the "nonce" property on scripts. // On the other hand, just using `getAttribute` is not enough as // the `nonce` attribute is reset to an empty string whenever it // becomes browsing-context connected. // See https://github.com/whatwg/html/issues/2369 // See https://html.spec.whatwg.org/#nonce-attributes // The `node.getAttribute` check was added for the sake of // `jQuery.globalEval` so that it can fake a nonce-containing node // via an object. val = node[ i ] || node.getAttribute && node.getAttribute( i ); if ( val ) { script.setAttribute( i, val ); } } } doc.head.appendChild( script ).parentNode.removeChild( script ); } function toType( obj ) { if ( obj == null ) { return obj + ""; } // Support: Android <=2.3 only (functionish RegExp) return typeof obj === "object" || typeof obj === "function" ? class2type[ toString.call( obj ) ] || "object" : typeof obj; } /* global Symbol */ // Defining this global in .eslintrc.json would create a danger of using the global // unguarded in another place, it seems safer to define global only for this module var version = "3.4.1", // Define a local copy of jQuery jQuery = function( selector, context ) { // The jQuery object is actually just the init constructor 'enhanced' // Need init if jQuery is called (just allow error to be thrown if not included) return new jQuery.fn.init( selector, context ); }, // Support: Android <=4.0 only // Make sure we trim BOM and NBSP rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g; jQuery.fn = jQuery.prototype = { // The current version of jQuery being used jquery: version, constructor: jQuery, // The default length of a jQuery object is 0 length: 0, toArray: function() { return slice.call( this ); }, // Get the Nth element in the matched element set OR // Get the whole matched element set as a clean array get: function( num ) { // Return all the elements in a clean array if ( num == null ) { return slice.call( this ); } // Return just the one element from the set return num < 0 ? this[ num + this.length ] : this[ num ]; }, // Take an array of elements and push it onto the stack // (returning the new matched element set) pushStack: function( elems ) { // Build a new jQuery matched element set var ret = jQuery.merge( this.constructor(), elems ); // Add the old object onto the stack (as a reference) ret.prevObject = this; // Return the newly-formed element set return ret; }, // Execute a callback for every element in the matched set. each: function( callback ) { return jQuery.each( this, callback ); }, map: function( callback ) { return this.pushStack( jQuery.map( this, function( elem, i ) { return callback.call( elem, i, elem ); } ) ); }, slice: function() { return this.pushStack( slice.apply( this, arguments ) ); }, first: function() { return this.eq( 0 ); }, last: function() { return this.eq( -1 ); }, eq: function( i ) { var len = this.length, j = +i + ( i < 0 ? len : 0 ); return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); }, end: function() { return this.prevObject || this.constructor(); }, // For internal use only. // Behaves like an Array's method, not like a jQuery method. push: push, sort: arr.sort, splice: arr.splice }; jQuery.extend = jQuery.fn.extend = function() { var options, name, src, copy, copyIsArray, clone, target = arguments[ 0 ] || {}, i = 1, length = arguments.length, deep = false; // Handle a deep copy situation if ( typeof target === "boolean" ) { deep = target; // Skip the boolean and the target target = arguments[ i ] || {}; i++; } // Handle case when target is a string or something (possible in deep copy) if ( typeof target !== "object" && !isFunction( target ) ) { target = {}; } // Extend jQuery itself if only one argument is passed if ( i === length ) { target = this; i--; } for ( ; i < length; i++ ) { // Only deal with non-null/undefined values if ( ( options = arguments[ i ] ) != null ) { // Extend the base object for ( name in options ) { copy = options[ name ]; // Prevent Object.prototype pollution // Prevent never-ending loop if ( name === "__proto__" || target === copy ) { continue; } // Recurse if we're merging plain objects or arrays if ( deep && copy && ( jQuery.isPlainObject( copy ) || ( copyIsArray = Array.isArray( copy ) ) ) ) { src = target[ name ]; // Ensure proper type for the source value if ( copyIsArray && !Array.isArray( src ) ) { clone = []; } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { clone = {}; } else { clone = src; } copyIsArray = false; // Never move original objects, clone them target[ name ] = jQuery.extend( deep, clone, copy ); // Don't bring in undefined values } else if ( copy !== undefined ) { target[ name ] = copy; } } } } // Return the modified object return target; }; jQuery.extend( { // Unique for each copy of jQuery on the page expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), // Assume jQuery is ready without the ready module isReady: true, error: function( msg ) { throw new Error( msg ); }, noop: function() {}, isPlainObject: function( obj ) { var proto, Ctor; // Detect obvious negatives // Use toString instead of jQuery.type to catch host objects if ( !obj || toString.call( obj ) !== "[object Object]" ) { return false; } proto = getProto( obj ); // Objects with no prototype (e.g., `Object.create( null )`) are plain if ( !proto ) { return true; } // Objects with prototype are plain iff they were constructed by a global Object function Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; }, isEmptyObject: function( obj ) { var name; for ( name in obj ) { return false; } return true; }, // Evaluates a script in a global context globalEval: function( code, options ) { DOMEval( code, { nonce: options && options.nonce } ); }, each: function( obj, callback ) { var length, i = 0; if ( isArrayLike( obj ) ) { length = obj.length; for ( ; i < length; i++ ) { if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { break; } } } else { for ( i in obj ) { if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { break; } } } return obj; }, // Support: Android <=4.0 only trim: function( text ) { return text == null ? "" : ( text + "" ).replace( rtrim, "" ); }, // results is for internal usage only makeArray: function( arr, results ) { var ret = results || []; if ( arr != null ) { if ( isArrayLike( Object( arr ) ) ) { jQuery.merge( ret, typeof arr === "string" ? [ arr ] : arr ); } else { push.call( ret, arr ); } } return ret; }, inArray: function( elem, arr, i ) { return arr == null ? -1 : indexOf.call( arr, elem, i ); }, // Support: Android <=4.0 only, PhantomJS 1 only // push.apply(_, arraylike) throws on ancient WebKit merge: function( first, second ) { var len = +second.length, j = 0, i = first.length; for ( ; j < len; j++ ) { first[ i++ ] = second[ j ]; } first.length = i; return first; }, grep: function( elems, callback, invert ) { var callbackInverse, matches = [], i = 0, length = elems.length, callbackExpect = !invert; // Go through the array, only saving the items // that pass the validator function for ( ; i < length; i++ ) { callbackInverse = !callback( elems[ i ], i ); if ( callbackInverse !== callbackExpect ) { matches.push( elems[ i ] ); } } return matches; }, // arg is for internal usage only map: function( elems, callback, arg ) { var length, value, i = 0, ret = []; // Go through the array, translating each of the items to their new values if ( isArrayLike( elems ) ) { length = elems.length; for ( ; i < length; i++ ) { value = callback( elems[ i ], i, arg ); if ( value != null ) { ret.push( value ); } } // Go through every key on the object, } else { for ( i in elems ) { value = callback( elems[ i ], i, arg ); if ( value != null ) { ret.push( value ); } } } // Flatten any nested arrays return concat.apply( [], ret ); }, // A global GUID counter for objects guid: 1, // jQuery.support is not used in Core but other projects attach their // properties to it so it needs to exist. support: support } ); if ( typeof Symbol === "function" ) { jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; } // Populate the class2type map jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), function( i, name ) { class2type[ "[object " + name + "]" ] = name.toLowerCase(); } ); function isArrayLike( obj ) { // Support: real iOS 8.2 only (not reproducible in simulator) // `in` check used to prevent JIT error (gh-2145) // hasOwn isn't used here due to false negatives // regarding Nodelist length in IE var length = !!obj && "length" in obj && obj.length, type = toType( obj ); if ( isFunction( obj ) || isWindow( obj ) ) { return false; } return type === "array" || length === 0 || typeof length === "number" && length > 0 && ( length - 1 ) in obj; } var Sizzle = /*! * Sizzle CSS Selector Engine v2.3.4 * https://sizzlejs.com/ * * Copyright JS Foundation and other contributors * Released under the MIT license * https://js.foundation/ * * Date: 2019-04-08 */ (function( window ) { var i, support, Expr, getText, isXML, tokenize, compile, select, outermostContext, sortInput, hasDuplicate, // Local document vars setDocument, document, docElem, documentIsHTML, rbuggyQSA, rbuggyMatches, matches, contains, // Instance-specific data expando = "sizzle" + 1 * new Date(), preferredDoc = window.document, dirruns = 0, done = 0, classCache = createCache(), tokenCache = createCache(), compilerCache = createCache(), nonnativeSelectorCache = createCache(), sortOrder = function( a, b ) { if ( a === b ) { hasDuplicate = true; } return 0; }, // Instance methods hasOwn = ({}).hasOwnProperty, arr = [], pop = arr.pop, push_native = arr.push, push = arr.push, slice = arr.slice, // Use a stripped-down indexOf as it's faster than native // https://jsperf.com/thor-indexof-vs-for/5 indexOf = function( list, elem ) { var i = 0, len = list.length; for ( ; i < len; i++ ) { if ( list[i] === elem ) { return i; } } return -1; }, booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", // Regular expressions // http://www.w3.org/TR/css3-selectors/#whitespace whitespace = "[\\x20\\t\\r\\n\\f]", // http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+", // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + // Operator (capture 2) "*([*^$|!~]?=)" + whitespace + // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + "*\\]", pseudos = ":(" + identifier + ")(?:\\((" + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: // 1. quoted (capture 3; capture 4 or capture 5) "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + // 2. simple (capture 6) "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + // 3. anything else (capture 2) ".*" + ")\\)|)", // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter rwhitespace = new RegExp( whitespace + "+", "g" ), rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), rdescend = new RegExp( whitespace + "|>" ), rpseudo = new RegExp( pseudos ), ridentifier = new RegExp( "^" + identifier + "$" ), matchExpr = { "ID": new RegExp( "^#(" + identifier + ")" ), "CLASS": new RegExp( "^\\.(" + identifier + ")" ), "TAG": new RegExp( "^(" + identifier + "|[*])" ), "ATTR": new RegExp( "^" + attributes ), "PSEUDO": new RegExp( "^" + pseudos ), "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), // For use in libraries implementing .is() // We use this for POS matching in `select` "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) }, rhtml = /HTML$/i, rinputs = /^(?:input|select|textarea|button)$/i, rheader = /^h\d$/i, rnative = /^[^{]+\{\s*\[native \w/, // Easily-parseable/retrievable ID or TAG or CLASS selectors rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, rsibling = /[+~]/, // CSS escapes // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), funescape = function( _, escaped, escapedWhitespace ) { var high = "0x" + escaped - 0x10000; // NaN means non-codepoint // Support: Firefox<24 // Workaround erroneous numeric interpretation of +"0x" return high !== high || escapedWhitespace ? escaped : high < 0 ? // BMP codepoint String.fromCharCode( high + 0x10000 ) : // Supplemental Plane codepoint (surrogate pair) String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); }, // CSS string/identifier serialization // https://drafts.csswg.org/cssom/#common-serializing-idioms rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, fcssescape = function( ch, asCodePoint ) { if ( asCodePoint ) { // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER if ( ch === "\0" ) { return "\uFFFD"; } // Control characters and (dependent upon position) numbers get escaped as code points return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; } // Other potentially-special ASCII characters get backslash-escaped return "\\" + ch; }, // Used for iframes // See setDocument() // Removing the function wrapper causes a "Permission Denied" // error in IE unloadHandler = function() { setDocument(); }, inDisabledFieldset = addCombinator( function( elem ) { return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; }, { dir: "parentNode", next: "legend" } ); // Optimize for push.apply( _, NodeList ) try { push.apply( (arr = slice.call( preferredDoc.childNodes )), preferredDoc.childNodes ); // Support: Android<4.0 // Detect silently failing push.apply arr[ preferredDoc.childNodes.length ].nodeType; } catch ( e ) { push = { apply: arr.length ? // Leverage slice if possible function( target, els ) { push_native.apply( target, slice.call(els) ); } : // Support: IE<9 // Otherwise append directly function( target, els ) { var j = target.length, i = 0; // Can't trust NodeList.length while ( (target[j++] = els[i++]) ) {} target.length = j - 1; } }; } function Sizzle( selector, context, results, seed ) { var m, i, elem, nid, match, groups, newSelector, newContext = context && context.ownerDocument, // nodeType defaults to 9, since context defaults to document nodeType = context ? context.nodeType : 9; results = results || []; // Return early from calls with invalid selector or context if ( typeof selector !== "string" || !selector || nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { return results; } // Try to shortcut find operations (as opposed to filters) in HTML documents if ( !seed ) { if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { setDocument( context ); } context = context || document; if ( documentIsHTML ) { // If the selector is sufficiently simple, try using a "get*By*" DOM method // (excepting DocumentFragment context, where the methods don't exist) if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { // ID selector if ( (m = match[1]) ) { // Document context if ( nodeType === 9 ) { if ( (elem = context.getElementById( m )) ) { // Support: IE, Opera, Webkit // TODO: identify versions // getElementById can match elements by name instead of ID if ( elem.id === m ) { results.push( elem ); return results; } } else { return results; } // Element context } else { // Support: IE, Opera, Webkit // TODO: identify versions // getElementById can match elements by name instead of ID if ( newContext && (elem = newContext.getElementById( m )) && contains( context, elem ) && elem.id === m ) { results.push( elem ); return results; } } // Type selector } else if ( match[2] ) { push.apply( results, context.getElementsByTagName( selector ) ); return results; // Class selector } else if ( (m = match[3]) && support.getElementsByClassName && context.getElementsByClassName ) { push.apply( results, context.getElementsByClassName( m ) ); return results; } } // Take advantage of querySelectorAll if ( support.qsa && !nonnativeSelectorCache[ selector + " " ] && (!rbuggyQSA || !rbuggyQSA.test( selector )) && // Support: IE 8 only // Exclude object elements (nodeType !== 1 || context.nodeName.toLowerCase() !== "object") ) { newSelector = selector; newContext = context; // qSA considers elements outside a scoping root when evaluating child or // descendant combinators, which is not what we want. // In such cases, we work around the behavior by prefixing every selector in the // list with an ID selector referencing the scope context. // Thanks to Andrew Dupont for this technique. if ( nodeType === 1 && rdescend.test( selector ) ) { // Capture the context ID, setting it first if necessary if ( (nid = context.getAttribute( "id" )) ) { nid = nid.replace( rcssescape, fcssescape ); } else { context.setAttribute( "id", (nid = expando) ); } // Prefix every selector in the list groups = tokenize( selector ); i = groups.length; while ( i-- ) { groups[i] = "#" + nid + " " + toSelector( groups[i] ); } newSelector = groups.join( "," ); // Expand context for sibling selectors newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context; } try { push.apply( results, newContext.querySelectorAll( newSelector ) ); return results; } catch ( qsaError ) { nonnativeSelectorCache( selector, true ); } finally { if ( nid === expando ) { context.removeAttribute( "id" ); } } } } } // All others return select( selector.replace( rtrim, "$1" ), context, results, seed ); } /** * Create key-value caches of limited size * @returns {function(string, object)} Returns the Object data after storing it on itself with * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) * deleting the oldest entry */ function createCache() { var keys = []; function cache( key, value ) { // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) if ( keys.push( key + " " ) > Expr.cacheLength ) { // Only keep the most recent entries delete cache[ keys.shift() ]; } return (cache[ key + " " ] = value); } return cache; } /** * Mark a function for special use by Sizzle * @param {Function} fn The function to mark */ function markFunction( fn ) { fn[ expando ] = true; return fn; } /** * Support testing using an element * @param {Function} fn Passed the created element and returns a boolean result */ function assert( fn ) { var el = document.createElement("fieldset"); try { return !!fn( el ); } catch (e) { return false; } finally { // Remove from its parent by default if ( el.parentNode ) { el.parentNode.removeChild( el ); } // release memory in IE el = null; } } /** * Adds the same handler for all of the specified attrs * @param {String} attrs Pipe-separated list of attributes * @param {Function} handler The method that will be applied */ function addHandle( attrs, handler ) { var arr = attrs.split("|"), i = arr.length; while ( i-- ) { Expr.attrHandle[ arr[i] ] = handler; } } /** * Checks document order of two siblings * @param {Element} a * @param {Element} b * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b */ function siblingCheck( a, b ) { var cur = b && a, diff = cur && a.nodeType === 1 && b.nodeType === 1 && a.sourceIndex - b.sourceIndex; // Use IE sourceIndex if available on both nodes if ( diff ) { return diff; } // Check if b follows a if ( cur ) { while ( (cur = cur.nextSibling) ) { if ( cur === b ) { return -1; } } } return a ? 1 : -1; } /** * Returns a function to use in pseudos for input types * @param {String} type */ function createInputPseudo( type ) { return function( elem ) { var name = elem.nodeName.toLowerCase(); return name === "input" && elem.type === type; }; } /** * Returns a function to use in pseudos for buttons * @param {String} type */ function createButtonPseudo( type ) { return function( elem ) { var name = elem.nodeName.toLowerCase(); return (name === "input" || name === "button") && elem.type === type; }; } /** * Returns a function to use in pseudos for :enabled/:disabled * @param {Boolean} disabled true for :disabled; false for :enabled */ function createDisabledPseudo( disabled ) { // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable return function( elem ) { // Only certain elements can match :enabled or :disabled // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled if ( "form" in elem ) { // Check for inherited disabledness on relevant non-disabled elements: // * listed form-associated elements in a disabled fieldset // https://html.spec.whatwg.org/multipage/forms.html#category-listed // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled // * option elements in a disabled optgroup // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled // All such elements have a "form" property. if ( elem.parentNode && elem.disabled === false ) { // Option elements defer to a parent optgroup if present if ( "label" in elem ) { if ( "label" in elem.parentNode ) { return elem.parentNode.disabled === disabled; } else { return elem.disabled === disabled; } } // Support: IE 6 - 11 // Use the isDisabled shortcut property to check for disabled fieldset ancestors return elem.isDisabled === disabled || // Where there is no isDisabled, check manually /* jshint -W018 */ elem.isDisabled !== !disabled && inDisabledFieldset( elem ) === disabled; } return elem.disabled === disabled; // Try to winnow out elements that can't be disabled before trusting the disabled property. // Some victims get caught in our net (label, legend, menu, track), but it shouldn't // even exist on them, let alone have a boolean value. } else if ( "label" in elem ) { return elem.disabled === disabled; } // Remaining elements are neither :enabled nor :disabled return false; }; } /** * Returns a function to use in pseudos for positionals * @param {Function} fn */ function createPositionalPseudo( fn ) { return markFunction(function( argument ) { argument = +argument; return markFunction(function( seed, matches ) { var j, matchIndexes = fn( [], seed.length, argument ), i = matchIndexes.length; // Match elements found at the specified indexes while ( i-- ) { if ( seed[ (j = matchIndexes[i]) ] ) { seed[j] = !(matches[j] = seed[j]); } } }); }); } /** * Checks a node for validity as a Sizzle context * @param {Element|Object=} context * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value */ function testContext( context ) { return context && typeof context.getElementsByTagName !== "undefined" && context; } // Expose support vars for convenience support = Sizzle.support = {}; /** * Detects XML nodes * @param {Element|Object} elem An element or a document * @returns {Boolean} True iff elem is a non-HTML XML node */ isXML = Sizzle.isXML = function( elem ) { var namespace = elem.namespaceURI, docElem = (elem.ownerDocument || elem).documentElement; // Support: IE <=8 // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes // https://bugs.jquery.com/ticket/4833 return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); }; /** * Sets document-related variables once based on the current document * @param {Element|Object} [doc] An element or document object to use to set the document * @returns {Object} Returns the current document */ setDocument = Sizzle.setDocument = function( node ) { var hasCompare, subWindow, doc = node ? node.ownerDocument || node : preferredDoc; // Return early if doc is invalid or already selected if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { return document; } // Update global variables document = doc; docElem = document.documentElement; documentIsHTML = !isXML( document ); // Support: IE 9-11, Edge // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) if ( preferredDoc !== document && (subWindow = document.defaultView) && subWindow.top !== subWindow ) { // Support: IE 11, Edge if ( subWindow.addEventListener ) { subWindow.addEventListener( "unload", unloadHandler, false ); // Support: IE 9 - 10 only } else if ( subWindow.attachEvent ) { subWindow.attachEvent( "onunload", unloadHandler ); } } /* Attributes ---------------------------------------------------------------------- */ // Support: IE<8 // Verify that getAttribute really returns attributes and not properties // (excepting IE8 booleans) support.attributes = assert(function( el ) { el.className = "i"; return !el.getAttribute("className"); }); /* getElement(s)By* ---------------------------------------------------------------------- */ // Check if getElementsByTagName("*") returns only elements support.getElementsByTagName = assert(function( el ) { el.appendChild( document.createComment("") ); return !el.getElementsByTagName("*").length; }); // Support: IE<9 support.getElementsByClassName = rnative.test( document.getElementsByClassName ); // Support: IE<10 // Check if getElementById returns elements by name // The broken getElementById methods don't pick up programmatically-set names, // so use a roundabout getElementsByName test support.getById = assert(function( el ) { docElem.appendChild( el ).id = expando; return !document.getElementsByName || !document.getElementsByName( expando ).length; }); // ID filter and find if ( support.getById ) { Expr.filter["ID"] = function( id ) { var attrId = id.replace( runescape, funescape ); return function( elem ) { return elem.getAttribute("id") === attrId; }; }; Expr.find["ID"] = function( id, context ) { if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { var elem = context.getElementById( id ); return elem ? [ elem ] : []; } }; } else { Expr.filter["ID"] = function( id ) { var attrId = id.replace( runescape, funescape ); return function( elem ) { var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); return node && node.value === attrId; }; }; // Support: IE 6 - 7 only // getElementById is not reliable as a find shortcut Expr.find["ID"] = function( id, context ) { if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { var node, i, elems, elem = context.getElementById( id ); if ( elem ) { // Verify the id attribute node = elem.getAttributeNode("id"); if ( node && node.value === id ) { return [ elem ]; } // Fall back on getElementsByName elems = context.getElementsByName( id ); i = 0; while ( (elem = elems[i++]) ) { node = elem.getAttributeNode("id"); if ( node && node.value === id ) { return [ elem ]; } } } return []; } }; } // Tag Expr.find["TAG"] = support.getElementsByTagName ? function( tag, context ) { if ( typeof context.getElementsByTagName !== "undefined" ) { return context.getElementsByTagName( tag ); // DocumentFragment nodes don't have gEBTN } else if ( support.qsa ) { return context.querySelectorAll( tag ); } } : function( tag, context ) { var elem, tmp = [], i = 0, // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too results = context.getElementsByTagName( tag ); // Filter out possible comments if ( tag === "*" ) { while ( (elem = results[i++]) ) { if ( elem.nodeType === 1 ) { tmp.push( elem ); } } return tmp; } return results; }; // Class Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { return context.getElementsByClassName( className ); } }; /* QSA/matchesSelector ---------------------------------------------------------------------- */ // QSA and matchesSelector support // matchesSelector(:active) reports false when true (IE9/Opera 11.5) rbuggyMatches = []; // qSa(:focus) reports false when true (Chrome 21) // We allow this because of a bug in IE8/9 that throws an error // whenever `document.activeElement` is accessed on an iframe // So, we allow :focus to pass through QSA all the time to avoid the IE error // See https://bugs.jquery.com/ticket/13378 rbuggyQSA = []; if ( (support.qsa = rnative.test( document.querySelectorAll )) ) { // Build QSA regex // Regex strategy adopted from Diego Perini assert(function( el ) { // Select is set to empty string on purpose // This is to test IE's treatment of not explicitly // setting a boolean content attribute, // since its presence should be enough // https://bugs.jquery.com/ticket/12359 docElem.appendChild( el ).innerHTML = "" + ""; // Support: IE8, Opera 11-12.16 // Nothing should be selected when empty strings follow ^= or $= or *= // The test attribute must be unknown in Opera but "safe" for WinRT // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section if ( el.querySelectorAll("[msallowcapture^='']").length ) { rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); } // Support: IE8 // Boolean attributes and "value" are not treated correctly if ( !el.querySelectorAll("[selected]").length ) { rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); } // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { rbuggyQSA.push("~="); } // Webkit/Opera - :checked should return selected option elements // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked // IE8 throws error here and will not see later tests if ( !el.querySelectorAll(":checked").length ) { rbuggyQSA.push(":checked"); } // Support: Safari 8+, iOS 8+ // https://bugs.webkit.org/show_bug.cgi?id=136851 // In-page `selector#id sibling-combinator selector` fails if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { rbuggyQSA.push(".#.+[+~]"); } }); assert(function( el ) { el.innerHTML = "" + ""; // Support: Windows 8 Native Apps // The type and name attributes are restricted during .innerHTML assignment var input = document.createElement("input"); input.setAttribute( "type", "hidden" ); el.appendChild( input ).setAttribute( "name", "D" ); // Support: IE8 // Enforce case-sensitivity of name attribute if ( el.querySelectorAll("[name=d]").length ) { rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); } // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) // IE8 throws error here and will not see later tests if ( el.querySelectorAll(":enabled").length !== 2 ) { rbuggyQSA.push( ":enabled", ":disabled" ); } // Support: IE9-11+ // IE's :disabled selector does not pick up the children of disabled fieldsets docElem.appendChild( el ).disabled = true; if ( el.querySelectorAll(":disabled").length !== 2 ) { rbuggyQSA.push( ":enabled", ":disabled" ); } // Opera 10-11 does not throw on post-comma invalid pseudos el.querySelectorAll("*,:x"); rbuggyQSA.push(",.*:"); }); } if ( (support.matchesSelector = rnative.test( (matches = docElem.matches || docElem.webkitMatchesSelector || docElem.mozMatchesSelector || docElem.oMatchesSelector || docElem.msMatchesSelector) )) ) { assert(function( el ) { // Check to see if it's possible to do matchesSelector // on a disconnected node (IE 9) support.disconnectedMatch = matches.call( el, "*" ); // This should fail with an exception // Gecko does not error, returns false instead matches.call( el, "[s!='']:x" ); rbuggyMatches.push( "!=", pseudos ); }); } rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join("|") ); /* Contains ---------------------------------------------------------------------- */ hasCompare = rnative.test( docElem.compareDocumentPosition ); // Element contains another // Purposefully self-exclusive // As in, an element does not contain itself contains = hasCompare || rnative.test( docElem.contains ) ? function( a, b ) { var adown = a.nodeType === 9 ? a.documentElement : a, bup = b && b.parentNode; return a === bup || !!( bup && bup.nodeType === 1 && ( adown.contains ? adown.contains( bup ) : a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 )); } : function( a, b ) { if ( b ) { while ( (b = b.parentNode) ) { if ( b === a ) { return true; } } } return false; }; /* Sorting ---------------------------------------------------------------------- */ // Document order sorting sortOrder = hasCompare ? function( a, b ) { // Flag for duplicate removal if ( a === b ) { hasDuplicate = true; return 0; } // Sort on method existence if only one input has compareDocumentPosition var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; if ( compare ) { return compare; } // Calculate position if both inputs belong to the same document compare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ? a.compareDocumentPosition( b ) : // Otherwise we know they are disconnected 1; // Disconnected nodes if ( compare & 1 || (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { // Choose the first element that is related to our preferred document if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { return -1; } if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { return 1; } // Maintain original order return sortInput ? ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : 0; } return compare & 4 ? -1 : 1; } : function( a, b ) { // Exit early if the nodes are identical if ( a === b ) { hasDuplicate = true; return 0; } var cur, i = 0, aup = a.parentNode, bup = b.parentNode, ap = [ a ], bp = [ b ]; // Parentless nodes are either documents or disconnected if ( !aup || !bup ) { return a === document ? -1 : b === document ? 1 : aup ? -1 : bup ? 1 : sortInput ? ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : 0; // If the nodes are siblings, we can do a quick check } else if ( aup === bup ) { return siblingCheck( a, b ); } // Otherwise we need full lists of their ancestors for comparison cur = a; while ( (cur = cur.parentNode) ) { ap.unshift( cur ); } cur = b; while ( (cur = cur.parentNode) ) { bp.unshift( cur ); } // Walk down the tree looking for a discrepancy while ( ap[i] === bp[i] ) { i++; } return i ? // Do a sibling check if the nodes have a common ancestor siblingCheck( ap[i], bp[i] ) : // Otherwise nodes in our document sort first ap[i] === preferredDoc ? -1 : bp[i] === preferredDoc ? 1 : 0; }; return document; }; Sizzle.matches = function( expr, elements ) { return Sizzle( expr, null, null, elements ); }; Sizzle.matchesSelector = function( elem, expr ) { // Set document vars if needed if ( ( elem.ownerDocument || elem ) !== document ) { setDocument( elem ); } if ( support.matchesSelector && documentIsHTML && !nonnativeSelectorCache[ expr + " " ] && ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { try { var ret = matches.call( elem, expr ); // IE 9's matchesSelector returns false on disconnected nodes if ( ret || support.disconnectedMatch || // As well, disconnected nodes are said to be in a document // fragment in IE 9 elem.document && elem.document.nodeType !== 11 ) { return ret; } } catch (e) { nonnativeSelectorCache( expr, true ); } } return Sizzle( expr, document, null, [ elem ] ).length > 0; }; Sizzle.contains = function( context, elem ) { // Set document vars if needed if ( ( context.ownerDocument || context ) !== document ) { setDocument( context ); } return contains( context, elem ); }; Sizzle.attr = function( elem, name ) { // Set document vars if needed if ( ( elem.ownerDocument || elem ) !== document ) { setDocument( elem ); } var fn = Expr.attrHandle[ name.toLowerCase() ], // Don't get fooled by Object.prototype properties (jQuery #13807) val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? fn( elem, name, !documentIsHTML ) : undefined; return val !== undefined ? val : support.attributes || !documentIsHTML ? elem.getAttribute( name ) : (val = elem.getAttributeNode(name)) && val.specified ? val.value : null; }; Sizzle.escape = function( sel ) { return (sel + "").replace( rcssescape, fcssescape ); }; Sizzle.error = function( msg ) { throw new Error( "Syntax error, unrecognized expression: " + msg ); }; /** * Document sorting and removing duplicates * @param {ArrayLike} results */ Sizzle.uniqueSort = function( results ) { var elem, duplicates = [], j = 0, i = 0; // Unless we *know* we can detect duplicates, assume their presence hasDuplicate = !support.detectDuplicates; sortInput = !support.sortStable && results.slice( 0 ); results.sort( sortOrder ); if ( hasDuplicate ) { while ( (elem = results[i++]) ) { if ( elem === results[ i ] ) { j = duplicates.push( i ); } } while ( j-- ) { results.splice( duplicates[ j ], 1 ); } } // Clear input after sorting to release objects // See https://github.com/jquery/sizzle/pull/225 sortInput = null; return results; }; /** * Utility function for retrieving the text value of an array of DOM nodes * @param {Array|Element} elem */ getText = Sizzle.getText = function( elem ) { var node, ret = "", i = 0, nodeType = elem.nodeType; if ( !nodeType ) { // If no nodeType, this is expected to be an array while ( (node = elem[i++]) ) { // Do not traverse comment nodes ret += getText( node ); } } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { // Use textContent for elements // innerText usage removed for consistency of new lines (jQuery #11153) if ( typeof elem.textContent === "string" ) { return elem.textContent; } else { // Traverse its children for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { ret += getText( elem ); } } } else if ( nodeType === 3 || nodeType === 4 ) { return elem.nodeValue; } // Do not include comment or processing instruction nodes return ret; }; Expr = Sizzle.selectors = { // Can be adjusted by the user cacheLength: 50, createPseudo: markFunction, match: matchExpr, attrHandle: {}, find: {}, relative: { ">": { dir: "parentNode", first: true }, " ": { dir: "parentNode" }, "+": { dir: "previousSibling", first: true }, "~": { dir: "previousSibling" } }, preFilter: { "ATTR": function( match ) { match[1] = match[1].replace( runescape, funescape ); // Move the given value to match[3] whether quoted or unquoted match[3] = ( match[3] || match[4] || match[5] || "" ).replace( runescape, funescape ); if ( match[2] === "~=" ) { match[3] = " " + match[3] + " "; } return match.slice( 0, 4 ); }, "CHILD": function( match ) { /* matches from matchExpr["CHILD"] 1 type (only|nth|...) 2 what (child|of-type) 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) 4 xn-component of xn+y argument ([+-]?\d*n|) 5 sign of xn-component 6 x of xn-component 7 sign of y-component 8 y of y-component */ match[1] = match[1].toLowerCase(); if ( match[1].slice( 0, 3 ) === "nth" ) { // nth-* requires argument if ( !match[3] ) { Sizzle.error( match[0] ); } // numeric x and y parameters for Expr.filter.CHILD // remember that false/true cast respectively to 0/1 match[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === "even" || match[3] === "odd" ) ); match[5] = +( ( match[7] + match[8] ) || match[3] === "odd" ); // other types prohibit arguments } else if ( match[3] ) { Sizzle.error( match[0] ); } return match; }, "PSEUDO": function( match ) { var excess, unquoted = !match[6] && match[2]; if ( matchExpr["CHILD"].test( match[0] ) ) { return null; } // Accept quoted arguments as-is if ( match[3] ) { match[2] = match[4] || match[5] || ""; // Strip excess characters from unquoted arguments } else if ( unquoted && rpseudo.test( unquoted ) && // Get excess from tokenize (recursively) (excess = tokenize( unquoted, true )) && // advance to the next closing parenthesis (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { // excess is a negative index match[0] = match[0].slice( 0, excess ); match[2] = unquoted.slice( 0, excess ); } // Return only captures needed by the pseudo filter method (type and argument) return match.slice( 0, 3 ); } }, filter: { "TAG": function( nodeNameSelector ) { var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); return nodeNameSelector === "*" ? function() { return true; } : function( elem ) { return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; }; }, "CLASS": function( className ) { var pattern = classCache[ className + " " ]; return pattern || (pattern = new RegExp( "(^|" + whitespace + ")" + className + "(" + whitespace + "|$)" )) && classCache( className, function( elem ) { return pattern.test( typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "" ); }); }, "ATTR": function( name, operator, check ) { return function( elem ) { var result = Sizzle.attr( elem, name ); if ( result == null ) { return operator === "!="; } if ( !operator ) { return true; } result += ""; return operator === "=" ? result === check : operator === "!=" ? result !== check : operator === "^=" ? check && result.indexOf( check ) === 0 : operator === "*=" ? check && result.indexOf( check ) > -1 : operator === "$=" ? check && result.slice( -check.length ) === check : operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : false; }; }, "CHILD": function( type, what, argument, first, last ) { var simple = type.slice( 0, 3 ) !== "nth", forward = type.slice( -4 ) !== "last", ofType = what === "of-type"; return first === 1 && last === 0 ? // Shortcut for :nth-*(n) function( elem ) { return !!elem.parentNode; } : function( elem, context, xml ) { var cache, uniqueCache, outerCache, node, nodeIndex, start, dir = simple !== forward ? "nextSibling" : "previousSibling", parent = elem.parentNode, name = ofType && elem.nodeName.toLowerCase(), useCache = !xml && !ofType, diff = false; if ( parent ) { // :(first|last|only)-(child|of-type) if ( simple ) { while ( dir ) { node = elem; while ( (node = node[ dir ]) ) { if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { return false; } } // Reverse direction for :only-* (if we haven't yet done so) start = dir = type === "only" && !start && "nextSibling"; } return true; } start = [ forward ? parent.firstChild : parent.lastChild ]; // non-xml :nth-child(...) stores cache data on `parent` if ( forward && useCache ) { // Seek `elem` from a previously-cached index // ...in a gzip-friendly way node = parent; outerCache = node[ expando ] || (node[ expando ] = {}); // Support: IE <9 only // Defend against cloned attroperties (jQuery gh-1709) uniqueCache = outerCache[ node.uniqueID ] || (outerCache[ node.uniqueID ] = {}); cache = uniqueCache[ type ] || []; nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; diff = nodeIndex && cache[ 2 ]; node = nodeIndex && parent.childNodes[ nodeIndex ]; while ( (node = ++nodeIndex && node && node[ dir ] || // Fallback to seeking `elem` from the start (diff = nodeIndex = 0) || start.pop()) ) { // When found, cache indexes on `parent` and break if ( node.nodeType === 1 && ++diff && node === elem ) { uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; break; } } } else { // Use previously-cached element index if available if ( useCache ) { // ...in a gzip-friendly way node = elem; outerCache = node[ expando ] || (node[ expando ] = {}); // Support: IE <9 only // Defend against cloned attroperties (jQuery gh-1709) uniqueCache = outerCache[ node.uniqueID ] || (outerCache[ node.uniqueID ] = {}); cache = uniqueCache[ type ] || []; nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; diff = nodeIndex; } // xml :nth-child(...) // or :nth-last-child(...) or :nth(-last)?-of-type(...) if ( diff === false ) { // Use the same loop as above to seek `elem` from the start while ( (node = ++nodeIndex && node && node[ dir ] || (diff = nodeIndex = 0) || start.pop()) ) { if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { // Cache the index of each encountered element if ( useCache ) { outerCache = node[ expando ] || (node[ expando ] = {}); // Support: IE <9 only // Defend against cloned attroperties (jQuery gh-1709) uniqueCache = outerCache[ node.uniqueID ] || (outerCache[ node.uniqueID ] = {}); uniqueCache[ type ] = [ dirruns, diff ]; } if ( node === elem ) { break; } } } } } // Incorporate the offset, then check against cycle size diff -= last; return diff === first || ( diff % first === 0 && diff / first >= 0 ); } }; }, "PSEUDO": function( pseudo, argument ) { // pseudo-class names are case-insensitive // http://www.w3.org/TR/selectors/#pseudo-classes // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters // Remember that setFilters inherits from pseudos var args, fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || Sizzle.error( "unsupported pseudo: " + pseudo ); // The user may use createPseudo to indicate that // arguments are needed to create the filter function // just as Sizzle does if ( fn[ expando ] ) { return fn( argument ); } // But maintain support for old signatures if ( fn.length > 1 ) { args = [ pseudo, pseudo, "", argument ]; return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? markFunction(function( seed, matches ) { var idx, matched = fn( seed, argument ), i = matched.length; while ( i-- ) { idx = indexOf( seed, matched[i] ); seed[ idx ] = !( matches[ idx ] = matched[i] ); } }) : function( elem ) { return fn( elem, 0, args ); }; } return fn; } }, pseudos: { // Potentially complex pseudos "not": markFunction(function( selector ) { // Trim the selector passed to compile // to avoid treating leading and trailing // spaces as combinators var input = [], results = [], matcher = compile( selector.replace( rtrim, "$1" ) ); return matcher[ expando ] ? markFunction(function( seed, matches, context, xml ) { var elem, unmatched = matcher( seed, null, xml, [] ), i = seed.length; // Match elements unmatched by `matcher` while ( i-- ) { if ( (elem = unmatched[i]) ) { seed[i] = !(matches[i] = elem); } } }) : function( elem, context, xml ) { input[0] = elem; matcher( input, null, xml, results ); // Don't keep the element (issue #299) input[0] = null; return !results.pop(); }; }), "has": markFunction(function( selector ) { return function( elem ) { return Sizzle( selector, elem ).length > 0; }; }), "contains": markFunction(function( text ) { text = text.replace( runescape, funescape ); return function( elem ) { return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; }; }), // "Whether an element is represented by a :lang() selector // is based solely on the element's language value // being equal to the identifier C, // or beginning with the identifier C immediately followed by "-". // The matching of C against the element's language value is performed case-insensitively. // The identifier C does not have to be a valid language name." // http://www.w3.org/TR/selectors/#lang-pseudo "lang": markFunction( function( lang ) { // lang value must be a valid identifier if ( !ridentifier.test(lang || "") ) { Sizzle.error( "unsupported lang: " + lang ); } lang = lang.replace( runescape, funescape ).toLowerCase(); return function( elem ) { var elemLang; do { if ( (elemLang = documentIsHTML ? elem.lang : elem.getAttribute("xml:lang") || elem.getAttribute("lang")) ) { elemLang = elemLang.toLowerCase(); return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; } } while ( (elem = elem.parentNode) && elem.nodeType === 1 ); return false; }; }), // Miscellaneous "target": function( elem ) { var hash = window.location && window.location.hash; return hash && hash.slice( 1 ) === elem.id; }, "root": function( elem ) { return elem === docElem; }, "focus": function( elem ) { return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); }, // Boolean properties "enabled": createDisabledPseudo( false ), "disabled": createDisabledPseudo( true ), "checked": function( elem ) { // In CSS3, :checked should return both checked and selected elements // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked var nodeName = elem.nodeName.toLowerCase(); return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); }, "selected": function( elem ) { // Accessing this property makes selected-by-default // options in Safari work properly if ( elem.parentNode ) { elem.parentNode.selectedIndex; } return elem.selected === true; }, // Contents "empty": function( elem ) { // http://www.w3.org/TR/selectors/#empty-pseudo // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), // but not by others (comment: 8; processing instruction: 7; etc.) // nodeType < 6 works because attributes (2) do not appear as children for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { if ( elem.nodeType < 6 ) { return false; } } return true; }, "parent": function( elem ) { return !Expr.pseudos["empty"]( elem ); }, // Element/input types "header": function( elem ) { return rheader.test( elem.nodeName ); }, "input": function( elem ) { return rinputs.test( elem.nodeName ); }, "button": function( elem ) { var name = elem.nodeName.toLowerCase(); return name === "input" && elem.type === "button" || name === "button"; }, "text": function( elem ) { var attr; return elem.nodeName.toLowerCase() === "input" && elem.type === "text" && // Support: IE<8 // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text" ); }, // Position-in-collection "first": createPositionalPseudo(function() { return [ 0 ]; }), "last": createPositionalPseudo(function( matchIndexes, length ) { return [ length - 1 ]; }), "eq": createPositionalPseudo(function( matchIndexes, length, argument ) { return [ argument < 0 ? argument + length : argument ]; }), "even": createPositionalPseudo(function( matchIndexes, length ) { var i = 0; for ( ; i < length; i += 2 ) { matchIndexes.push( i ); } return matchIndexes; }), "odd": createPositionalPseudo(function( matchIndexes, length ) { var i = 1; for ( ; i < length; i += 2 ) { matchIndexes.push( i ); } return matchIndexes; }), "lt": createPositionalPseudo(function( matchIndexes, length, argument ) { var i = argument < 0 ? argument + length : argument > length ? length : argument; for ( ; --i >= 0; ) { matchIndexes.push( i ); } return matchIndexes; }), "gt": createPositionalPseudo(function( matchIndexes, length, argument ) { var i = argument < 0 ? argument + length : argument; for ( ; ++i < length; ) { matchIndexes.push( i ); } return matchIndexes; }) } }; Expr.pseudos["nth"] = Expr.pseudos["eq"]; // Add button/input type pseudos for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { Expr.pseudos[ i ] = createInputPseudo( i ); } for ( i in { submit: true, reset: true } ) { Expr.pseudos[ i ] = createButtonPseudo( i ); } // Easy API for creating new setFilters function setFilters() {} setFilters.prototype = Expr.filters = Expr.pseudos; Expr.setFilters = new setFilters(); tokenize = Sizzle.tokenize = function( selector, parseOnly ) { var matched, match, tokens, type, soFar, groups, preFilters, cached = tokenCache[ selector + " " ]; if ( cached ) { return parseOnly ? 0 : cached.slice( 0 ); } soFar = selector; groups = []; preFilters = Expr.preFilter; while ( soFar ) { // Comma and first run if ( !matched || (match = rcomma.exec( soFar )) ) { if ( match ) { // Don't consume trailing commas as valid soFar = soFar.slice( match[0].length ) || soFar; } groups.push( (tokens = []) ); } matched = false; // Combinators if ( (match = rcombinators.exec( soFar )) ) { matched = match.shift(); tokens.push({ value: matched, // Cast descendant combinators to space type: match[0].replace( rtrim, " " ) }); soFar = soFar.slice( matched.length ); } // Filters for ( type in Expr.filter ) { if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || (match = preFilters[ type ]( match ))) ) { matched = match.shift(); tokens.push({ value: matched, type: type, matches: match }); soFar = soFar.slice( matched.length ); } } if ( !matched ) { break; } } // Return the length of the invalid excess // if we're just parsing // Otherwise, throw an error or return tokens return parseOnly ? soFar.length : soFar ? Sizzle.error( selector ) : // Cache the tokens tokenCache( selector, groups ).slice( 0 ); }; function toSelector( tokens ) { var i = 0, len = tokens.length, selector = ""; for ( ; i < len; i++ ) { selector += tokens[i].value; } return selector; } function addCombinator( matcher, combinator, base ) { var dir = combinator.dir, skip = combinator.next, key = skip || dir, checkNonElements = base && key === "parentNode", doneName = done++; return combinator.first ? // Check against closest ancestor/preceding element function( elem, context, xml ) { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { return matcher( elem, context, xml ); } } return false; } : // Check against all ancestor/preceding elements function( elem, context, xml ) { var oldCache, uniqueCache, outerCache, newCache = [ dirruns, doneName ]; // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching if ( xml ) { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { if ( matcher( elem, context, xml ) ) { return true; } } } } else { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { outerCache = elem[ expando ] || (elem[ expando ] = {}); // Support: IE <9 only // Defend against cloned attroperties (jQuery gh-1709) uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {}); if ( skip && skip === elem.nodeName.toLowerCase() ) { elem = elem[ dir ] || elem; } else if ( (oldCache = uniqueCache[ key ]) && oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { // Assign to newCache so results back-propagate to previous elements return (newCache[ 2 ] = oldCache[ 2 ]); } else { // Reuse newcache so results back-propagate to previous elements uniqueCache[ key ] = newCache; // A match means we're done; a fail means we have to keep checking if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { return true; } } } } } return false; }; } function elementMatcher( matchers ) { return matchers.length > 1 ? function( elem, context, xml ) { var i = matchers.length; while ( i-- ) { if ( !matchers[i]( elem, context, xml ) ) { return false; } } return true; } : matchers[0]; } function multipleContexts( selector, contexts, results ) { var i = 0, len = contexts.length; for ( ; i < len; i++ ) { Sizzle( selector, contexts[i], results ); } return results; } function condense( unmatched, map, filter, context, xml ) { var elem, newUnmatched = [], i = 0, len = unmatched.length, mapped = map != null; for ( ; i < len; i++ ) { if ( (elem = unmatched[i]) ) { if ( !filter || filter( elem, context, xml ) ) { newUnmatched.push( elem ); if ( mapped ) { map.push( i ); } } } } return newUnmatched; } function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { if ( postFilter && !postFilter[ expando ] ) { postFilter = setMatcher( postFilter ); } if ( postFinder && !postFinder[ expando ] ) { postFinder = setMatcher( postFinder, postSelector ); } return markFunction(function( seed, results, context, xml ) { var temp, i, elem, preMap = [], postMap = [], preexisting = results.length, // Get initial elements from seed or context elems = seed || multipleContexts( selector || "*", context.nodeType ? [ context ] : context, [] ), // Prefilter to get matcher input, preserving a map for seed-results synchronization matcherIn = preFilter && ( seed || !selector ) ? condense( elems, preMap, preFilter, context, xml ) : elems, matcherOut = matcher ? // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, postFinder || ( seed ? preFilter : preexisting || postFilter ) ? // ...intermediate processing is necessary [] : // ...otherwise use results directly results : matcherIn; // Find primary matches if ( matcher ) { matcher( matcherIn, matcherOut, context, xml ); } // Apply postFilter if ( postFilter ) { temp = condense( matcherOut, postMap ); postFilter( temp, [], context, xml ); // Un-match failing elements by moving them back to matcherIn i = temp.length; while ( i-- ) { if ( (elem = temp[i]) ) { matcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem); } } } if ( seed ) { if ( postFinder || preFilter ) { if ( postFinder ) { // Get the final matcherOut by condensing this intermediate into postFinder contexts temp = []; i = matcherOut.length; while ( i-- ) { if ( (elem = matcherOut[i]) ) { // Restore matcherIn since elem is not yet a final match temp.push( (matcherIn[i] = elem) ); } } postFinder( null, (matcherOut = []), temp, xml ); } // Move matched elements from seed to results to keep them synchronized i = matcherOut.length; while ( i-- ) { if ( (elem = matcherOut[i]) && (temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) { seed[temp] = !(results[temp] = elem); } } } // Add elements to results, through postFinder if defined } else { matcherOut = condense( matcherOut === results ? matcherOut.splice( preexisting, matcherOut.length ) : matcherOut ); if ( postFinder ) { postFinder( null, results, matcherOut, xml ); } else { push.apply( results, matcherOut ); } } }); } function matcherFromTokens( tokens ) { var checkContext, matcher, j, len = tokens.length, leadingRelative = Expr.relative[ tokens[0].type ], implicitRelative = leadingRelative || Expr.relative[" "], i = leadingRelative ? 1 : 0, // The foundational matcher ensures that elements are reachable from top-level context(s) matchContext = addCombinator( function( elem ) { return elem === checkContext; }, implicitRelative, true ), matchAnyContext = addCombinator( function( elem ) { return indexOf( checkContext, elem ) > -1; }, implicitRelative, true ), matchers = [ function( elem, context, xml ) { var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( (checkContext = context).nodeType ? matchContext( elem, context, xml ) : matchAnyContext( elem, context, xml ) ); // Avoid hanging onto element (issue #299) checkContext = null; return ret; } ]; for ( ; i < len; i++ ) { if ( (matcher = Expr.relative[ tokens[i].type ]) ) { matchers = [ addCombinator(elementMatcher( matchers ), matcher) ]; } else { matcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches ); // Return special upon seeing a positional matcher if ( matcher[ expando ] ) { // Find the next relative operator (if any) for proper handling j = ++i; for ( ; j < len; j++ ) { if ( Expr.relative[ tokens[j].type ] ) { break; } } return setMatcher( i > 1 && elementMatcher( matchers ), i > 1 && toSelector( // If the preceding token was a descendant combinator, insert an implicit any-element `*` tokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === " " ? "*" : "" }) ).replace( rtrim, "$1" ), matcher, i < j && matcherFromTokens( tokens.slice( i, j ) ), j < len && matcherFromTokens( (tokens = tokens.slice( j )) ), j < len && toSelector( tokens ) ); } matchers.push( matcher ); } } return elementMatcher( matchers ); } function matcherFromGroupMatchers( elementMatchers, setMatchers ) { var bySet = setMatchers.length > 0, byElement = elementMatchers.length > 0, superMatcher = function( seed, context, xml, results, outermost ) { var elem, j, matcher, matchedCount = 0, i = "0", unmatched = seed && [], setMatched = [], contextBackup = outermostContext, // We must always have either seed elements or outermost context elems = seed || byElement && Expr.find["TAG"]( "*", outermost ), // Use integer dirruns iff this is the outermost matcher dirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1), len = elems.length; if ( outermost ) { outermostContext = context === document || context || outermost; } // Add elements passing elementMatchers directly to results // Support: IE<9, Safari // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id for ( ; i !== len && (elem = elems[i]) != null; i++ ) { if ( byElement && elem ) { j = 0; if ( !context && elem.ownerDocument !== document ) { setDocument( elem ); xml = !documentIsHTML; } while ( (matcher = elementMatchers[j++]) ) { if ( matcher( elem, context || document, xml) ) { results.push( elem ); break; } } if ( outermost ) { dirruns = dirrunsUnique; } } // Track unmatched elements for set filters if ( bySet ) { // They will have gone through all possible matchers if ( (elem = !matcher && elem) ) { matchedCount--; } // Lengthen the array for every element, matched or not if ( seed ) { unmatched.push( elem ); } } } // `i` is now the count of elements visited above, and adding it to `matchedCount` // makes the latter nonnegative. matchedCount += i; // Apply set filters to unmatched elements // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` // equals `i`), unless we didn't visit _any_ elements in the above loop because we have // no element matchers and no seed. // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that // case, which will result in a "00" `matchedCount` that differs from `i` but is also // numerically zero. if ( bySet && i !== matchedCount ) { j = 0; while ( (matcher = setMatchers[j++]) ) { matcher( unmatched, setMatched, context, xml ); } if ( seed ) { // Reintegrate element matches to eliminate the need for sorting if ( matchedCount > 0 ) { while ( i-- ) { if ( !(unmatched[i] || setMatched[i]) ) { setMatched[i] = pop.call( results ); } } } // Discard index placeholder values to get only actual matches setMatched = condense( setMatched ); } // Add matches to results push.apply( results, setMatched ); // Seedless set matches succeeding multiple successful matchers stipulate sorting if ( outermost && !seed && setMatched.length > 0 && ( matchedCount + setMatchers.length ) > 1 ) { Sizzle.uniqueSort( results ); } } // Override manipulation of globals by nested matchers if ( outermost ) { dirruns = dirrunsUnique; outermostContext = contextBackup; } return unmatched; }; return bySet ? markFunction( superMatcher ) : superMatcher; } compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { var i, setMatchers = [], elementMatchers = [], cached = compilerCache[ selector + " " ]; if ( !cached ) { // Generate a function of recursive functions that can be used to check each element if ( !match ) { match = tokenize( selector ); } i = match.length; while ( i-- ) { cached = matcherFromTokens( match[i] ); if ( cached[ expando ] ) { setMatchers.push( cached ); } else { elementMatchers.push( cached ); } } // Cache the compiled function cached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) ); // Save selector and tokenization cached.selector = selector; } return cached; }; /** * A low-level selection function that works with Sizzle's compiled * selector functions * @param {String|Function} selector A selector or a pre-compiled * selector function built with Sizzle.compile * @param {Element} context * @param {Array} [results] * @param {Array} [seed] A set of elements to match against */ select = Sizzle.select = function( selector, context, results, seed ) { var i, tokens, token, type, find, compiled = typeof selector === "function" && selector, match = !seed && tokenize( (selector = compiled.selector || selector) ); results = results || []; // Try to minimize operations if there is only one selector in the list and no seed // (the latter of which guarantees us context) if ( match.length === 1 ) { // Reduce context if the leading compound selector is an ID tokens = match[0] = match[0].slice( 0 ); if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) { context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; if ( !context ) { return results; // Precompiled matchers will still verify ancestry, so step up a level } else if ( compiled ) { context = context.parentNode; } selector = selector.slice( tokens.shift().value.length ); } // Fetch a seed set for right-to-left matching i = matchExpr["needsContext"].test( selector ) ? 0 : tokens.length; while ( i-- ) { token = tokens[i]; // Abort if we hit a combinator if ( Expr.relative[ (type = token.type) ] ) { break; } if ( (find = Expr.find[ type ]) ) { // Search, expanding context for leading sibling combinators if ( (seed = find( token.matches[0].replace( runescape, funescape ), rsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context )) ) { // If seed is empty or no tokens remain, we can return early tokens.splice( i, 1 ); selector = seed.length && toSelector( tokens ); if ( !selector ) { push.apply( results, seed ); return results; } break; } } } } // Compile and execute a filtering function if one is not provided // Provide `match` to avoid retokenization if we modified the selector above ( compiled || compile( selector, match ) )( seed, context, !documentIsHTML, results, !context || rsibling.test( selector ) && testContext( context.parentNode ) || context ); return results; }; // One-time assignments // Sort stability support.sortStable = expando.split("").sort( sortOrder ).join("") === expando; // Support: Chrome 14-35+ // Always assume duplicates if they aren't passed to the comparison function support.detectDuplicates = !!hasDuplicate; // Initialize against the default document setDocument(); // Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) // Detached nodes confoundingly follow *each other* support.sortDetached = assert(function( el ) { // Should return 1, but returns 4 (following) return el.compareDocumentPosition( document.createElement("fieldset") ) & 1; }); // Support: IE<8 // Prevent attribute/property "interpolation" // https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx if ( !assert(function( el ) { el.innerHTML = ""; return el.firstChild.getAttribute("href") === "#" ; }) ) { addHandle( "type|href|height|width", function( elem, name, isXML ) { if ( !isXML ) { return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); } }); } // Support: IE<9 // Use defaultValue in place of getAttribute("value") if ( !support.attributes || !assert(function( el ) { el.innerHTML = ""; el.firstChild.setAttribute( "value", "" ); return el.firstChild.getAttribute( "value" ) === ""; }) ) { addHandle( "value", function( elem, name, isXML ) { if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { return elem.defaultValue; } }); } // Support: IE<9 // Use getAttributeNode to fetch booleans when getAttribute lies if ( !assert(function( el ) { return el.getAttribute("disabled") == null; }) ) { addHandle( booleans, function( elem, name, isXML ) { var val; if ( !isXML ) { return elem[ name ] === true ? name.toLowerCase() : (val = elem.getAttributeNode( name )) && val.specified ? val.value : null; } }); } return Sizzle; })( window ); jQuery.find = Sizzle; jQuery.expr = Sizzle.selectors; // Deprecated jQuery.expr[ ":" ] = jQuery.expr.pseudos; jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; jQuery.text = Sizzle.getText; jQuery.isXMLDoc = Sizzle.isXML; jQuery.contains = Sizzle.contains; jQuery.escapeSelector = Sizzle.escape; var dir = function( elem, dir, until ) { var matched = [], truncate = until !== undefined; while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { if ( elem.nodeType === 1 ) { if ( truncate && jQuery( elem ).is( until ) ) { break; } matched.push( elem ); } } return matched; }; var siblings = function( n, elem ) { var matched = []; for ( ; n; n = n.nextSibling ) { if ( n.nodeType === 1 && n !== elem ) { matched.push( n ); } } return matched; }; var rneedsContext = jQuery.expr.match.needsContext; function nodeName( elem, name ) { return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); }; var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); // Implement the identical functionality for filter and not function winnow( elements, qualifier, not ) { if ( isFunction( qualifier ) ) { return jQuery.grep( elements, function( elem, i ) { return !!qualifier.call( elem, i, elem ) !== not; } ); } // Single element if ( qualifier.nodeType ) { return jQuery.grep( elements, function( elem ) { return ( elem === qualifier ) !== not; } ); } // Arraylike of elements (jQuery, arguments, Array) if ( typeof qualifier !== "string" ) { return jQuery.grep( elements, function( elem ) { return ( indexOf.call( qualifier, elem ) > -1 ) !== not; } ); } // Filtered directly for both simple and complex selectors return jQuery.filter( qualifier, elements, not ); } jQuery.filter = function( expr, elems, not ) { var elem = elems[ 0 ]; if ( not ) { expr = ":not(" + expr + ")"; } if ( elems.length === 1 && elem.nodeType === 1 ) { return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; } return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { return elem.nodeType === 1; } ) ); }; jQuery.fn.extend( { find: function( selector ) { var i, ret, len = this.length, self = this; if ( typeof selector !== "string" ) { return this.pushStack( jQuery( selector ).filter( function() { for ( i = 0; i < len; i++ ) { if ( jQuery.contains( self[ i ], this ) ) { return true; } } } ) ); } ret = this.pushStack( [] ); for ( i = 0; i < len; i++ ) { jQuery.find( selector, self[ i ], ret ); } return len > 1 ? jQuery.uniqueSort( ret ) : ret; }, filter: function( selector ) { return this.pushStack( winnow( this, selector || [], false ) ); }, not: function( selector ) { return this.pushStack( winnow( this, selector || [], true ) ); }, is: function( selector ) { return !!winnow( this, // If this is a positional/relative selector, check membership in the returned set // so $("p:first").is("p:last") won't return true for a doc with two "p". typeof selector === "string" && rneedsContext.test( selector ) ? jQuery( selector ) : selector || [], false ).length; } } ); // Initialize a jQuery object // A central reference to the root jQuery(document) var rootjQuery, // A simple way to check for HTML strings // Prioritize #id over to avoid XSS via location.hash (#9521) // Strict HTML recognition (#11290: must start with <) // Shortcut simple #id case for speed rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, init = jQuery.fn.init = function( selector, context, root ) { var match, elem; // HANDLE: $(""), $(null), $(undefined), $(false) if ( !selector ) { return this; } // Method init() accepts an alternate rootjQuery // so migrate can support jQuery.sub (gh-2101) root = root || rootjQuery; // Handle HTML strings if ( typeof selector === "string" ) { if ( selector[ 0 ] === "<" && selector[ selector.length - 1 ] === ">" && selector.length >= 3 ) { // Assume that strings that start and end with <> are HTML and skip the regex check match = [ null, selector, null ]; } else { match = rquickExpr.exec( selector ); } // Match html or make sure no context is specified for #id if ( match && ( match[ 1 ] || !context ) ) { // HANDLE: $(html) -> $(array) if ( match[ 1 ] ) { context = context instanceof jQuery ? context[ 0 ] : context; // Option to run scripts is true for back-compat // Intentionally let the error be thrown if parseHTML is not present jQuery.merge( this, jQuery.parseHTML( match[ 1 ], context && context.nodeType ? context.ownerDocument || context : document, true ) ); // HANDLE: $(html, props) if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { for ( match in context ) { // Properties of context are called as methods if possible if ( isFunction( this[ match ] ) ) { this[ match ]( context[ match ] ); // ...and otherwise set as attributes } else { this.attr( match, context[ match ] ); } } } return this; // HANDLE: $(#id) } else { elem = document.getElementById( match[ 2 ] ); if ( elem ) { // Inject the element directly into the jQuery object this[ 0 ] = elem; this.length = 1; } return this; } // HANDLE: $(expr, $(...)) } else if ( !context || context.jquery ) { return ( context || root ).find( selector ); // HANDLE: $(expr, context) // (which is just equivalent to: $(context).find(expr) } else { return this.constructor( context ).find( selector ); } // HANDLE: $(DOMElement) } else if ( selector.nodeType ) { this[ 0 ] = selector; this.length = 1; return this; // HANDLE: $(function) // Shortcut for document ready } else if ( isFunction( selector ) ) { return root.ready !== undefined ? root.ready( selector ) : // Execute immediately if ready is not present selector( jQuery ); } return jQuery.makeArray( selector, this ); }; // Give the init function the jQuery prototype for later instantiation init.prototype = jQuery.fn; // Initialize central reference rootjQuery = jQuery( document ); var rparentsprev = /^(?:parents|prev(?:Until|All))/, // Methods guaranteed to produce a unique set when starting from a unique set guaranteedUnique = { children: true, contents: true, next: true, prev: true }; jQuery.fn.extend( { has: function( target ) { var targets = jQuery( target, this ), l = targets.length; return this.filter( function() { var i = 0; for ( ; i < l; i++ ) { if ( jQuery.contains( this, targets[ i ] ) ) { return true; } } } ); }, closest: function( selectors, context ) { var cur, i = 0, l = this.length, matched = [], targets = typeof selectors !== "string" && jQuery( selectors ); // Positional selectors never match, since there's no _selection_ context if ( !rneedsContext.test( selectors ) ) { for ( ; i < l; i++ ) { for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { // Always skip document fragments if ( cur.nodeType < 11 && ( targets ? targets.index( cur ) > -1 : // Don't pass non-elements to Sizzle cur.nodeType === 1 && jQuery.find.matchesSelector( cur, selectors ) ) ) { matched.push( cur ); break; } } } } return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); }, // Determine the position of an element within the set index: function( elem ) { // No argument, return index in parent if ( !elem ) { return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; } // Index in selector if ( typeof elem === "string" ) { return indexOf.call( jQuery( elem ), this[ 0 ] ); } // Locate the position of the desired element return indexOf.call( this, // If it receives a jQuery object, the first element is used elem.jquery ? elem[ 0 ] : elem ); }, add: function( selector, context ) { return this.pushStack( jQuery.uniqueSort( jQuery.merge( this.get(), jQuery( selector, context ) ) ) ); }, addBack: function( selector ) { return this.add( selector == null ? this.prevObject : this.prevObject.filter( selector ) ); } } ); function sibling( cur, dir ) { while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} return cur; } jQuery.each( { parent: function( elem ) { var parent = elem.parentNode; return parent && parent.nodeType !== 11 ? parent : null; }, parents: function( elem ) { return dir( elem, "parentNode" ); }, parentsUntil: function( elem, i, until ) { return dir( elem, "parentNode", until ); }, next: function( elem ) { return sibling( elem, "nextSibling" ); }, prev: function( elem ) { return sibling( elem, "previousSibling" ); }, nextAll: function( elem ) { return dir( elem, "nextSibling" ); }, prevAll: function( elem ) { return dir( elem, "previousSibling" ); }, nextUntil: function( elem, i, until ) { return dir( elem, "nextSibling", until ); }, prevUntil: function( elem, i, until ) { return dir( elem, "previousSibling", until ); }, siblings: function( elem ) { return siblings( ( elem.parentNode || {} ).firstChild, elem ); }, children: function( elem ) { return siblings( elem.firstChild ); }, contents: function( elem ) { if ( typeof elem.contentDocument !== "undefined" ) { return elem.contentDocument; } // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only // Treat the template element as a regular one in browsers that // don't support it. if ( nodeName( elem, "template" ) ) { elem = elem.content || elem; } return jQuery.merge( [], elem.childNodes ); } }, function( name, fn ) { jQuery.fn[ name ] = function( until, selector ) { var matched = jQuery.map( this, fn, until ); if ( name.slice( -5 ) !== "Until" ) { selector = until; } if ( selector && typeof selector === "string" ) { matched = jQuery.filter( selector, matched ); } if ( this.length > 1 ) { // Remove duplicates if ( !guaranteedUnique[ name ] ) { jQuery.uniqueSort( matched ); } // Reverse order for parents* and prev-derivatives if ( rparentsprev.test( name ) ) { matched.reverse(); } } return this.pushStack( matched ); }; } ); var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); // Convert String-formatted options into Object-formatted ones function createOptions( options ) { var object = {}; jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { object[ flag ] = true; } ); return object; } /* * Create a callback list using the following parameters: * * options: an optional list of space-separated options that will change how * the callback list behaves or a more traditional option object * * By default a callback list will act like an event callback list and can be * "fired" multiple times. * * Possible options: * * once: will ensure the callback list can only be fired once (like a Deferred) * * memory: will keep track of previous values and will call any callback added * after the list has been fired right away with the latest "memorized" * values (like a Deferred) * * unique: will ensure a callback can only be added once (no duplicate in the list) * * stopOnFalse: interrupt callings when a callback returns false * */ jQuery.Callbacks = function( options ) { // Convert options from String-formatted to Object-formatted if needed // (we check in cache first) options = typeof options === "string" ? createOptions( options ) : jQuery.extend( {}, options ); var // Flag to know if list is currently firing firing, // Last fire value for non-forgettable lists memory, // Flag to know if list was already fired fired, // Flag to prevent firing locked, // Actual callback list list = [], // Queue of execution data for repeatable lists queue = [], // Index of currently firing callback (modified by add/remove as needed) firingIndex = -1, // Fire callbacks fire = function() { // Enforce single-firing locked = locked || options.once; // Execute callbacks for all pending executions, // respecting firingIndex overrides and runtime changes fired = firing = true; for ( ; queue.length; firingIndex = -1 ) { memory = queue.shift(); while ( ++firingIndex < list.length ) { // Run callback and check for early termination if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && options.stopOnFalse ) { // Jump to end and forget the data so .add doesn't re-fire firingIndex = list.length; memory = false; } } } // Forget the data if we're done with it if ( !options.memory ) { memory = false; } firing = false; // Clean up if we're done firing for good if ( locked ) { // Keep an empty list if we have data for future add calls if ( memory ) { list = []; // Otherwise, this object is spent } else { list = ""; } } }, // Actual Callbacks object self = { // Add a callback or a collection of callbacks to the list add: function() { if ( list ) { // If we have memory from a past run, we should fire after adding if ( memory && !firing ) { firingIndex = list.length - 1; queue.push( memory ); } ( function add( args ) { jQuery.each( args, function( _, arg ) { if ( isFunction( arg ) ) { if ( !options.unique || !self.has( arg ) ) { list.push( arg ); } } else if ( arg && arg.length && toType( arg ) !== "string" ) { // Inspect recursively add( arg ); } } ); } )( arguments ); if ( memory && !firing ) { fire(); } } return this; }, // Remove a callback from the list remove: function() { jQuery.each( arguments, function( _, arg ) { var index; while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { list.splice( index, 1 ); // Handle firing indexes if ( index <= firingIndex ) { firingIndex--; } } } ); return this; }, // Check if a given callback is in the list. // If no argument is given, return whether or not list has callbacks attached. has: function( fn ) { return fn ? jQuery.inArray( fn, list ) > -1 : list.length > 0; }, // Remove all callbacks from the list empty: function() { if ( list ) { list = []; } return this; }, // Disable .fire and .add // Abort any current/pending executions // Clear all callbacks and values disable: function() { locked = queue = []; list = memory = ""; return this; }, disabled: function() { return !list; }, // Disable .fire // Also disable .add unless we have memory (since it would have no effect) // Abort any pending executions lock: function() { locked = queue = []; if ( !memory && !firing ) { list = memory = ""; } return this; }, locked: function() { return !!locked; }, // Call all callbacks with the given context and arguments fireWith: function( context, args ) { if ( !locked ) { args = args || []; args = [ context, args.slice ? args.slice() : args ]; queue.push( args ); if ( !firing ) { fire(); } } return this; }, // Call all the callbacks with the given arguments fire: function() { self.fireWith( this, arguments ); return this; }, // To know if the callbacks have already been called at least once fired: function() { return !!fired; } }; return self; }; function Identity( v ) { return v; } function Thrower( ex ) { throw ex; } function adoptValue( value, resolve, reject, noValue ) { var method; try { // Check for promise aspect first to privilege synchronous behavior if ( value && isFunction( ( method = value.promise ) ) ) { method.call( value ).done( resolve ).fail( reject ); // Other thenables } else if ( value && isFunction( ( method = value.then ) ) ) { method.call( value, resolve, reject ); // Other non-thenables } else { // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: // * false: [ value ].slice( 0 ) => resolve( value ) // * true: [ value ].slice( 1 ) => resolve() resolve.apply( undefined, [ value ].slice( noValue ) ); } // For Promises/A+, convert exceptions into rejections // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in // Deferred#then to conditionally suppress rejection. } catch ( value ) { // Support: Android 4.0 only // Strict mode functions invoked without .call/.apply get global-object context reject.apply( undefined, [ value ] ); } } jQuery.extend( { Deferred: function( func ) { var tuples = [ // action, add listener, callbacks, // ... .then handlers, argument index, [final state] [ "notify", "progress", jQuery.Callbacks( "memory" ), jQuery.Callbacks( "memory" ), 2 ], [ "resolve", "done", jQuery.Callbacks( "once memory" ), jQuery.Callbacks( "once memory" ), 0, "resolved" ], [ "reject", "fail", jQuery.Callbacks( "once memory" ), jQuery.Callbacks( "once memory" ), 1, "rejected" ] ], state = "pending", promise = { state: function() { return state; }, always: function() { deferred.done( arguments ).fail( arguments ); return this; }, "catch": function( fn ) { return promise.then( null, fn ); }, // Keep pipe for back-compat pipe: function( /* fnDone, fnFail, fnProgress */ ) { var fns = arguments; return jQuery.Deferred( function( newDefer ) { jQuery.each( tuples, function( i, tuple ) { // Map tuples (progress, done, fail) to arguments (done, fail, progress) var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; // deferred.progress(function() { bind to newDefer or newDefer.notify }) // deferred.done(function() { bind to newDefer or newDefer.resolve }) // deferred.fail(function() { bind to newDefer or newDefer.reject }) deferred[ tuple[ 1 ] ]( function() { var returned = fn && fn.apply( this, arguments ); if ( returned && isFunction( returned.promise ) ) { returned.promise() .progress( newDefer.notify ) .done( newDefer.resolve ) .fail( newDefer.reject ); } else { newDefer[ tuple[ 0 ] + "With" ]( this, fn ? [ returned ] : arguments ); } } ); } ); fns = null; } ).promise(); }, then: function( onFulfilled, onRejected, onProgress ) { var maxDepth = 0; function resolve( depth, deferred, handler, special ) { return function() { var that = this, args = arguments, mightThrow = function() { var returned, then; // Support: Promises/A+ section 2.3.3.3.3 // https://promisesaplus.com/#point-59 // Ignore double-resolution attempts if ( depth < maxDepth ) { return; } returned = handler.apply( that, args ); // Support: Promises/A+ section 2.3.1 // https://promisesaplus.com/#point-48 if ( returned === deferred.promise() ) { throw new TypeError( "Thenable self-resolution" ); } // Support: Promises/A+ sections 2.3.3.1, 3.5 // https://promisesaplus.com/#point-54 // https://promisesaplus.com/#point-75 // Retrieve `then` only once then = returned && // Support: Promises/A+ section 2.3.4 // https://promisesaplus.com/#point-64 // Only check objects and functions for thenability ( typeof returned === "object" || typeof returned === "function" ) && returned.then; // Handle a returned thenable if ( isFunction( then ) ) { // Special processors (notify) just wait for resolution if ( special ) { then.call( returned, resolve( maxDepth, deferred, Identity, special ), resolve( maxDepth, deferred, Thrower, special ) ); // Normal processors (resolve) also hook into progress } else { // ...and disregard older resolution values maxDepth++; then.call( returned, resolve( maxDepth, deferred, Identity, special ), resolve( maxDepth, deferred, Thrower, special ), resolve( maxDepth, deferred, Identity, deferred.notifyWith ) ); } // Handle all other returned values } else { // Only substitute handlers pass on context // and multiple values (non-spec behavior) if ( handler !== Identity ) { that = undefined; args = [ returned ]; } // Process the value(s) // Default process is resolve ( special || deferred.resolveWith )( that, args ); } }, // Only normal processors (resolve) catch and reject exceptions process = special ? mightThrow : function() { try { mightThrow(); } catch ( e ) { if ( jQuery.Deferred.exceptionHook ) { jQuery.Deferred.exceptionHook( e, process.stackTrace ); } // Support: Promises/A+ section 2.3.3.3.4.1 // https://promisesaplus.com/#point-61 // Ignore post-resolution exceptions if ( depth + 1 >= maxDepth ) { // Only substitute handlers pass on context // and multiple values (non-spec behavior) if ( handler !== Thrower ) { that = undefined; args = [ e ]; } deferred.rejectWith( that, args ); } } }; // Support: Promises/A+ section 2.3.3.3.1 // https://promisesaplus.com/#point-57 // Re-resolve promises immediately to dodge false rejection from // subsequent errors if ( depth ) { process(); } else { // Call an optional hook to record the stack, in case of exception // since it's otherwise lost when execution goes async if ( jQuery.Deferred.getStackHook ) { process.stackTrace = jQuery.Deferred.getStackHook(); } window.setTimeout( process ); } }; } return jQuery.Deferred( function( newDefer ) { // progress_handlers.add( ... ) tuples[ 0 ][ 3 ].add( resolve( 0, newDefer, isFunction( onProgress ) ? onProgress : Identity, newDefer.notifyWith ) ); // fulfilled_handlers.add( ... ) tuples[ 1 ][ 3 ].add( resolve( 0, newDefer, isFunction( onFulfilled ) ? onFulfilled : Identity ) ); // rejected_handlers.add( ... ) tuples[ 2 ][ 3 ].add( resolve( 0, newDefer, isFunction( onRejected ) ? onRejected : Thrower ) ); } ).promise(); }, // Get a promise for this deferred // If obj is provided, the promise aspect is added to the object promise: function( obj ) { return obj != null ? jQuery.extend( obj, promise ) : promise; } }, deferred = {}; // Add list-specific methods jQuery.each( tuples, function( i, tuple ) { var list = tuple[ 2 ], stateString = tuple[ 5 ]; // promise.progress = list.add // promise.done = list.add // promise.fail = list.add promise[ tuple[ 1 ] ] = list.add; // Handle state if ( stateString ) { list.add( function() { // state = "resolved" (i.e., fulfilled) // state = "rejected" state = stateString; }, // rejected_callbacks.disable // fulfilled_callbacks.disable tuples[ 3 - i ][ 2 ].disable, // rejected_handlers.disable // fulfilled_handlers.disable tuples[ 3 - i ][ 3 ].disable, // progress_callbacks.lock tuples[ 0 ][ 2 ].lock, // progress_handlers.lock tuples[ 0 ][ 3 ].lock ); } // progress_handlers.fire // fulfilled_handlers.fire // rejected_handlers.fire list.add( tuple[ 3 ].fire ); // deferred.notify = function() { deferred.notifyWith(...) } // deferred.resolve = function() { deferred.resolveWith(...) } // deferred.reject = function() { deferred.rejectWith(...) } deferred[ tuple[ 0 ] ] = function() { deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); return this; }; // deferred.notifyWith = list.fireWith // deferred.resolveWith = list.fireWith // deferred.rejectWith = list.fireWith deferred[ tuple[ 0 ] + "With" ] = list.fireWith; } ); // Make the deferred a promise promise.promise( deferred ); // Call given func if any if ( func ) { func.call( deferred, deferred ); } // All done! return deferred; }, // Deferred helper when: function( singleValue ) { var // count of uncompleted subordinates remaining = arguments.length, // count of unprocessed arguments i = remaining, // subordinate fulfillment data resolveContexts = Array( i ), resolveValues = slice.call( arguments ), // the master Deferred master = jQuery.Deferred(), // subordinate callback factory updateFunc = function( i ) { return function( value ) { resolveContexts[ i ] = this; resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; if ( !( --remaining ) ) { master.resolveWith( resolveContexts, resolveValues ); } }; }; // Single- and empty arguments are adopted like Promise.resolve if ( remaining <= 1 ) { adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, !remaining ); // Use .then() to unwrap secondary thenables (cf. gh-3000) if ( master.state() === "pending" || isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { return master.then(); } } // Multiple arguments are aggregated like Promise.all array elements while ( i-- ) { adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); } return master.promise(); } } ); // These usually indicate a programmer mistake during development, // warn about them ASAP rather than swallowing them by default. var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; jQuery.Deferred.exceptionHook = function( error, stack ) { // Support: IE 8 - 9 only // Console exists when dev tools are open, which can happen at any time if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); } }; jQuery.readyException = function( error ) { window.setTimeout( function() { throw error; } ); }; // The deferred used on DOM ready var readyList = jQuery.Deferred(); jQuery.fn.ready = function( fn ) { readyList .then( fn ) // Wrap jQuery.readyException in a function so that the lookup // happens at the time of error handling instead of callback // registration. .catch( function( error ) { jQuery.readyException( error ); } ); return this; }; jQuery.extend( { // Is the DOM ready to be used? Set to true once it occurs. isReady: false, // A counter to track how many items to wait for before // the ready event fires. See #6781 readyWait: 1, // Handle when the DOM is ready ready: function( wait ) { // Abort if there are pending holds or we're already ready if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { return; } // Remember that the DOM is ready jQuery.isReady = true; // If a normal DOM Ready event fired, decrement, and wait if need be if ( wait !== true && --jQuery.readyWait > 0 ) { return; } // If there are functions bound, to execute readyList.resolveWith( document, [ jQuery ] ); } } ); jQuery.ready.then = readyList.then; // The ready event handler and self cleanup method function completed() { document.removeEventListener( "DOMContentLoaded", completed ); window.removeEventListener( "load", completed ); jQuery.ready(); } // Catch cases where $(document).ready() is called // after the browser event has already occurred. // Support: IE <=9 - 10 only // Older IE sometimes signals "interactive" too soon if ( document.readyState === "complete" || ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { // Handle it asynchronously to allow scripts the opportunity to delay ready window.setTimeout( jQuery.ready ); } else { // Use the handy event callback document.addEventListener( "DOMContentLoaded", completed ); // A fallback to window.onload, that will always work window.addEventListener( "load", completed ); } // Multifunctional method to get and set values of a collection // The value/s can optionally be executed if it's a function var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { var i = 0, len = elems.length, bulk = key == null; // Sets many values if ( toType( key ) === "object" ) { chainable = true; for ( i in key ) { access( elems, fn, i, key[ i ], true, emptyGet, raw ); } // Sets one value } else if ( value !== undefined ) { chainable = true; if ( !isFunction( value ) ) { raw = true; } if ( bulk ) { // Bulk operations run against the entire set if ( raw ) { fn.call( elems, value ); fn = null; // ...except when executing function values } else { bulk = fn; fn = function( elem, key, value ) { return bulk.call( jQuery( elem ), value ); }; } } if ( fn ) { for ( ; i < len; i++ ) { fn( elems[ i ], key, raw ? value : value.call( elems[ i ], i, fn( elems[ i ], key ) ) ); } } } if ( chainable ) { return elems; } // Gets if ( bulk ) { return fn.call( elems ); } return len ? fn( elems[ 0 ], key ) : emptyGet; }; // Matches dashed string for camelizing var rmsPrefix = /^-ms-/, rdashAlpha = /-([a-z])/g; // Used by camelCase as callback to replace() function fcamelCase( all, letter ) { return letter.toUpperCase(); } // Convert dashed to camelCase; used by the css and data modules // Support: IE <=9 - 11, Edge 12 - 15 // Microsoft forgot to hump their vendor prefix (#9572) function camelCase( string ) { return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); } var acceptData = function( owner ) { // Accepts only: // - Node // - Node.ELEMENT_NODE // - Node.DOCUMENT_NODE // - Object // - Any return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); }; function Data() { this.expando = jQuery.expando + Data.uid++; } Data.uid = 1; Data.prototype = { cache: function( owner ) { // Check if the owner object already has a cache var value = owner[ this.expando ]; // If not, create one if ( !value ) { value = {}; // We can accept data for non-element nodes in modern browsers, // but we should not, see #8335. // Always return an empty object. if ( acceptData( owner ) ) { // If it is a node unlikely to be stringify-ed or looped over // use plain assignment if ( owner.nodeType ) { owner[ this.expando ] = value; // Otherwise secure it in a non-enumerable property // configurable must be true to allow the property to be // deleted when data is removed } else { Object.defineProperty( owner, this.expando, { value: value, configurable: true } ); } } } return value; }, set: function( owner, data, value ) { var prop, cache = this.cache( owner ); // Handle: [ owner, key, value ] args // Always use camelCase key (gh-2257) if ( typeof data === "string" ) { cache[ camelCase( data ) ] = value; // Handle: [ owner, { properties } ] args } else { // Copy the properties one-by-one to the cache object for ( prop in data ) { cache[ camelCase( prop ) ] = data[ prop ]; } } return cache; }, get: function( owner, key ) { return key === undefined ? this.cache( owner ) : // Always use camelCase key (gh-2257) owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; }, access: function( owner, key, value ) { // In cases where either: // // 1. No key was specified // 2. A string key was specified, but no value provided // // Take the "read" path and allow the get method to determine // which value to return, respectively either: // // 1. The entire cache object // 2. The data stored at the key // if ( key === undefined || ( ( key && typeof key === "string" ) && value === undefined ) ) { return this.get( owner, key ); } // When the key is not a string, or both a key and value // are specified, set or extend (existing objects) with either: // // 1. An object of properties // 2. A key and value // this.set( owner, key, value ); // Since the "set" path can have two possible entry points // return the expected data based on which path was taken[*] return value !== undefined ? value : key; }, remove: function( owner, key ) { var i, cache = owner[ this.expando ]; if ( cache === undefined ) { return; } if ( key !== undefined ) { // Support array or space separated string of keys if ( Array.isArray( key ) ) { // If key is an array of keys... // We always set camelCase keys, so remove that. key = key.map( camelCase ); } else { key = camelCase( key ); // If a key with the spaces exists, use it. // Otherwise, create an array by matching non-whitespace key = key in cache ? [ key ] : ( key.match( rnothtmlwhite ) || [] ); } i = key.length; while ( i-- ) { delete cache[ key[ i ] ]; } } // Remove the expando if there's no more data if ( key === undefined || jQuery.isEmptyObject( cache ) ) { // Support: Chrome <=35 - 45 // Webkit & Blink performance suffers when deleting properties // from DOM nodes, so set to undefined instead // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) if ( owner.nodeType ) { owner[ this.expando ] = undefined; } else { delete owner[ this.expando ]; } } }, hasData: function( owner ) { var cache = owner[ this.expando ]; return cache !== undefined && !jQuery.isEmptyObject( cache ); } }; var dataPriv = new Data(); var dataUser = new Data(); // Implementation Summary // // 1. Enforce API surface and semantic compatibility with 1.9.x branch // 2. Improve the module's maintainability by reducing the storage // paths to a single mechanism. // 3. Use the same single mechanism to support "private" and "user" data. // 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) // 5. Avoid exposing implementation details on user objects (eg. expando properties) // 6. Provide a clear path for implementation upgrade to WeakMap in 2014 var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, rmultiDash = /[A-Z]/g; function getData( data ) { if ( data === "true" ) { return true; } if ( data === "false" ) { return false; } if ( data === "null" ) { return null; } // Only convert to a number if it doesn't change the string if ( data === +data + "" ) { return +data; } if ( rbrace.test( data ) ) { return JSON.parse( data ); } return data; } function dataAttr( elem, key, data ) { var name; // If nothing was found internally, try to fetch any // data from the HTML5 data-* attribute if ( data === undefined && elem.nodeType === 1 ) { name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); data = elem.getAttribute( name ); if ( typeof data === "string" ) { try { data = getData( data ); } catch ( e ) {} // Make sure we set the data so it isn't changed later dataUser.set( elem, key, data ); } else { data = undefined; } } return data; } jQuery.extend( { hasData: function( elem ) { return dataUser.hasData( elem ) || dataPriv.hasData( elem ); }, data: function( elem, name, data ) { return dataUser.access( elem, name, data ); }, removeData: function( elem, name ) { dataUser.remove( elem, name ); }, // TODO: Now that all calls to _data and _removeData have been replaced // with direct calls to dataPriv methods, these can be deprecated. _data: function( elem, name, data ) { return dataPriv.access( elem, name, data ); }, _removeData: function( elem, name ) { dataPriv.remove( elem, name ); } } ); jQuery.fn.extend( { data: function( key, value ) { var i, name, data, elem = this[ 0 ], attrs = elem && elem.attributes; // Gets all values if ( key === undefined ) { if ( this.length ) { data = dataUser.get( elem ); if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { i = attrs.length; while ( i-- ) { // Support: IE 11 only // The attrs elements can be null (#14894) if ( attrs[ i ] ) { name = attrs[ i ].name; if ( name.indexOf( "data-" ) === 0 ) { name = camelCase( name.slice( 5 ) ); dataAttr( elem, name, data[ name ] ); } } } dataPriv.set( elem, "hasDataAttrs", true ); } } return data; } // Sets multiple values if ( typeof key === "object" ) { return this.each( function() { dataUser.set( this, key ); } ); } return access( this, function( value ) { var data; // The calling jQuery object (element matches) is not empty // (and therefore has an element appears at this[ 0 ]) and the // `value` parameter was not undefined. An empty jQuery object // will result in `undefined` for elem = this[ 0 ] which will // throw an exception if an attempt to read a data cache is made. if ( elem && value === undefined ) { // Attempt to get data from the cache // The key will always be camelCased in Data data = dataUser.get( elem, key ); if ( data !== undefined ) { return data; } // Attempt to "discover" the data in // HTML5 custom data-* attrs data = dataAttr( elem, key ); if ( data !== undefined ) { return data; } // We tried really hard, but the data doesn't exist. return; } // Set the data... this.each( function() { // We always store the camelCased key dataUser.set( this, key, value ); } ); }, null, value, arguments.length > 1, null, true ); }, removeData: function( key ) { return this.each( function() { dataUser.remove( this, key ); } ); } } ); jQuery.extend( { queue: function( elem, type, data ) { var queue; if ( elem ) { type = ( type || "fx" ) + "queue"; queue = dataPriv.get( elem, type ); // Speed up dequeue by getting out quickly if this is just a lookup if ( data ) { if ( !queue || Array.isArray( data ) ) { queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); } else { queue.push( data ); } } return queue || []; } }, dequeue: function( elem, type ) { type = type || "fx"; var queue = jQuery.queue( elem, type ), startLength = queue.length, fn = queue.shift(), hooks = jQuery._queueHooks( elem, type ), next = function() { jQuery.dequeue( elem, type ); }; // If the fx queue is dequeued, always remove the progress sentinel if ( fn === "inprogress" ) { fn = queue.shift(); startLength--; } if ( fn ) { // Add a progress sentinel to prevent the fx queue from being // automatically dequeued if ( type === "fx" ) { queue.unshift( "inprogress" ); } // Clear up the last queue stop function delete hooks.stop; fn.call( elem, next, hooks ); } if ( !startLength && hooks ) { hooks.empty.fire(); } }, // Not public - generate a queueHooks object, or return the current one _queueHooks: function( elem, type ) { var key = type + "queueHooks"; return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { empty: jQuery.Callbacks( "once memory" ).add( function() { dataPriv.remove( elem, [ type + "queue", key ] ); } ) } ); } } ); jQuery.fn.extend( { queue: function( type, data ) { var setter = 2; if ( typeof type !== "string" ) { data = type; type = "fx"; setter--; } if ( arguments.length < setter ) { return jQuery.queue( this[ 0 ], type ); } return data === undefined ? this : this.each( function() { var queue = jQuery.queue( this, type, data ); // Ensure a hooks for this queue jQuery._queueHooks( this, type ); if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { jQuery.dequeue( this, type ); } } ); }, dequeue: function( type ) { return this.each( function() { jQuery.dequeue( this, type ); } ); }, clearQueue: function( type ) { return this.queue( type || "fx", [] ); }, // Get a promise resolved when queues of a certain type // are emptied (fx is the type by default) promise: function( type, obj ) { var tmp, count = 1, defer = jQuery.Deferred(), elements = this, i = this.length, resolve = function() { if ( !( --count ) ) { defer.resolveWith( elements, [ elements ] ); } }; if ( typeof type !== "string" ) { obj = type; type = undefined; } type = type || "fx"; while ( i-- ) { tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); if ( tmp && tmp.empty ) { count++; tmp.empty.add( resolve ); } } resolve(); return defer.promise( obj ); } } ); var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; var documentElement = document.documentElement; var isAttached = function( elem ) { return jQuery.contains( elem.ownerDocument, elem ); }, composed = { composed: true }; // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only // Check attachment across shadow DOM boundaries when possible (gh-3504) // Support: iOS 10.0-10.2 only // Early iOS 10 versions support `attachShadow` but not `getRootNode`, // leading to errors. We need to check for `getRootNode`. if ( documentElement.getRootNode ) { isAttached = function( elem ) { return jQuery.contains( elem.ownerDocument, elem ) || elem.getRootNode( composed ) === elem.ownerDocument; }; } var isHiddenWithinTree = function( elem, el ) { // isHiddenWithinTree might be called from jQuery#filter function; // in that case, element will be second argument elem = el || elem; // Inline style trumps all return elem.style.display === "none" || elem.style.display === "" && // Otherwise, check computed style // Support: Firefox <=43 - 45 // Disconnected elements can have computed display: none, so first confirm that elem is // in the document. isAttached( elem ) && jQuery.css( elem, "display" ) === "none"; }; var swap = function( elem, options, callback, args ) { var ret, name, old = {}; // Remember the old values, and insert the new ones for ( name in options ) { old[ name ] = elem.style[ name ]; elem.style[ name ] = options[ name ]; } ret = callback.apply( elem, args || [] ); // Revert the old values for ( name in options ) { elem.style[ name ] = old[ name ]; } return ret; }; function adjustCSS( elem, prop, valueParts, tween ) { var adjusted, scale, maxIterations = 20, currentValue = tween ? function() { return tween.cur(); } : function() { return jQuery.css( elem, prop, "" ); }, initial = currentValue(), unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), // Starting value computation is required for potential unit mismatches initialInUnit = elem.nodeType && ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && rcssNum.exec( jQuery.css( elem, prop ) ); if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { // Support: Firefox <=54 // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) initial = initial / 2; // Trust units reported by jQuery.css unit = unit || initialInUnit[ 3 ]; // Iteratively approximate from a nonzero starting point initialInUnit = +initial || 1; while ( maxIterations-- ) { // Evaluate and update our best guess (doubling guesses that zero out). // Finish if the scale equals or crosses 1 (making the old*new product non-positive). jQuery.style( elem, prop, initialInUnit + unit ); if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { maxIterations = 0; } initialInUnit = initialInUnit / scale; } initialInUnit = initialInUnit * 2; jQuery.style( elem, prop, initialInUnit + unit ); // Make sure we update the tween properties later on valueParts = valueParts || []; } if ( valueParts ) { initialInUnit = +initialInUnit || +initial || 0; // Apply relative offset (+=/-=) if specified adjusted = valueParts[ 1 ] ? initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : +valueParts[ 2 ]; if ( tween ) { tween.unit = unit; tween.start = initialInUnit; tween.end = adjusted; } } return adjusted; } var defaultDisplayMap = {}; function getDefaultDisplay( elem ) { var temp, doc = elem.ownerDocument, nodeName = elem.nodeName, display = defaultDisplayMap[ nodeName ]; if ( display ) { return display; } temp = doc.body.appendChild( doc.createElement( nodeName ) ); display = jQuery.css( temp, "display" ); temp.parentNode.removeChild( temp ); if ( display === "none" ) { display = "block"; } defaultDisplayMap[ nodeName ] = display; return display; } function showHide( elements, show ) { var display, elem, values = [], index = 0, length = elements.length; // Determine new display value for elements that need to change for ( ; index < length; index++ ) { elem = elements[ index ]; if ( !elem.style ) { continue; } display = elem.style.display; if ( show ) { // Since we force visibility upon cascade-hidden elements, an immediate (and slow) // check is required in this first loop unless we have a nonempty display value (either // inline or about-to-be-restored) if ( display === "none" ) { values[ index ] = dataPriv.get( elem, "display" ) || null; if ( !values[ index ] ) { elem.style.display = ""; } } if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { values[ index ] = getDefaultDisplay( elem ); } } else { if ( display !== "none" ) { values[ index ] = "none"; // Remember what we're overwriting dataPriv.set( elem, "display", display ); } } } // Set the display of the elements in a second loop to avoid constant reflow for ( index = 0; index < length; index++ ) { if ( values[ index ] != null ) { elements[ index ].style.display = values[ index ]; } } return elements; } jQuery.fn.extend( { show: function() { return showHide( this, true ); }, hide: function() { return showHide( this ); }, toggle: function( state ) { if ( typeof state === "boolean" ) { return state ? this.show() : this.hide(); } return this.each( function() { if ( isHiddenWithinTree( this ) ) { jQuery( this ).show(); } else { jQuery( this ).hide(); } } ); } } ); var rcheckableType = ( /^(?:checkbox|radio)$/i ); var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); // We have to close these tags to support XHTML (#13200) var wrapMap = { // Support: IE <=9 only option: [ 1, "" ], // XHTML parsers do not magically insert elements in the // same way that tag soup parsers do. So we cannot shorten // this by omitting or other required elements. thead: [ 1, "", "
" ], col: [ 2, "", "
" ], tr: [ 2, "", "
" ], td: [ 3, "", "
" ], _default: [ 0, "", "" ] }; // Support: IE <=9 only wrapMap.optgroup = wrapMap.option; wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; wrapMap.th = wrapMap.td; function getAll( context, tag ) { // Support: IE <=9 - 11 only // Use typeof to avoid zero-argument method invocation on host objects (#15151) var ret; if ( typeof context.getElementsByTagName !== "undefined" ) { ret = context.getElementsByTagName( tag || "*" ); } else if ( typeof context.querySelectorAll !== "undefined" ) { ret = context.querySelectorAll( tag || "*" ); } else { ret = []; } if ( tag === undefined || tag && nodeName( context, tag ) ) { return jQuery.merge( [ context ], ret ); } return ret; } // Mark scripts as having already been evaluated function setGlobalEval( elems, refElements ) { var i = 0, l = elems.length; for ( ; i < l; i++ ) { dataPriv.set( elems[ i ], "globalEval", !refElements || dataPriv.get( refElements[ i ], "globalEval" ) ); } } var rhtml = /<|&#?\w+;/; function buildFragment( elems, context, scripts, selection, ignored ) { var elem, tmp, tag, wrap, attached, j, fragment = context.createDocumentFragment(), nodes = [], i = 0, l = elems.length; for ( ; i < l; i++ ) { elem = elems[ i ]; if ( elem || elem === 0 ) { // Add nodes directly if ( toType( elem ) === "object" ) { // Support: Android <=4.0 only, PhantomJS 1 only // push.apply(_, arraylike) throws on ancient WebKit jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); // Convert non-html into a text node } else if ( !rhtml.test( elem ) ) { nodes.push( context.createTextNode( elem ) ); // Convert html into DOM nodes } else { tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); // Deserialize a standard representation tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); wrap = wrapMap[ tag ] || wrapMap._default; tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; // Descend through wrappers to the right content j = wrap[ 0 ]; while ( j-- ) { tmp = tmp.lastChild; } // Support: Android <=4.0 only, PhantomJS 1 only // push.apply(_, arraylike) throws on ancient WebKit jQuery.merge( nodes, tmp.childNodes ); // Remember the top-level container tmp = fragment.firstChild; // Ensure the created nodes are orphaned (#12392) tmp.textContent = ""; } } } // Remove wrapper from fragment fragment.textContent = ""; i = 0; while ( ( elem = nodes[ i++ ] ) ) { // Skip elements already in the context collection (trac-4087) if ( selection && jQuery.inArray( elem, selection ) > -1 ) { if ( ignored ) { ignored.push( elem ); } continue; } attached = isAttached( elem ); // Append to fragment tmp = getAll( fragment.appendChild( elem ), "script" ); // Preserve script evaluation history if ( attached ) { setGlobalEval( tmp ); } // Capture executables if ( scripts ) { j = 0; while ( ( elem = tmp[ j++ ] ) ) { if ( rscriptType.test( elem.type || "" ) ) { scripts.push( elem ); } } } } return fragment; } ( function() { var fragment = document.createDocumentFragment(), div = fragment.appendChild( document.createElement( "div" ) ), input = document.createElement( "input" ); // Support: Android 4.0 - 4.3 only // Check state lost if the name is set (#11217) // Support: Windows Web Apps (WWA) // `name` and `type` must use .setAttribute for WWA (#14901) input.setAttribute( "type", "radio" ); input.setAttribute( "checked", "checked" ); input.setAttribute( "name", "t" ); div.appendChild( input ); // Support: Android <=4.1 only // Older WebKit doesn't clone checked state correctly in fragments support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; // Support: IE <=11 only // Make sure textarea (and checkbox) defaultValue is properly cloned div.innerHTML = ""; support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; } )(); var rkeyEvent = /^key/, rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, rtypenamespace = /^([^.]*)(?:\.(.+)|)/; function returnTrue() { return true; } function returnFalse() { return false; } // Support: IE <=9 - 11+ // focus() and blur() are asynchronous, except when they are no-op. // So expect focus to be synchronous when the element is already active, // and blur to be synchronous when the element is not already active. // (focus and blur are always synchronous in other supported browsers, // this just defines when we can count on it). function expectSync( elem, type ) { return ( elem === safeActiveElement() ) === ( type === "focus" ); } // Support: IE <=9 only // Accessing document.activeElement can throw unexpectedly // https://bugs.jquery.com/ticket/13393 function safeActiveElement() { try { return document.activeElement; } catch ( err ) { } } function on( elem, types, selector, data, fn, one ) { var origFn, type; // Types can be a map of types/handlers if ( typeof types === "object" ) { // ( types-Object, selector, data ) if ( typeof selector !== "string" ) { // ( types-Object, data ) data = data || selector; selector = undefined; } for ( type in types ) { on( elem, type, selector, data, types[ type ], one ); } return elem; } if ( data == null && fn == null ) { // ( types, fn ) fn = selector; data = selector = undefined; } else if ( fn == null ) { if ( typeof selector === "string" ) { // ( types, selector, fn ) fn = data; data = undefined; } else { // ( types, data, fn ) fn = data; data = selector; selector = undefined; } } if ( fn === false ) { fn = returnFalse; } else if ( !fn ) { return elem; } if ( one === 1 ) { origFn = fn; fn = function( event ) { // Can use an empty set, since event contains the info jQuery().off( event ); return origFn.apply( this, arguments ); }; // Use same guid so caller can remove using origFn fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); } return elem.each( function() { jQuery.event.add( this, types, fn, data, selector ); } ); } /* * Helper functions for managing events -- not part of the public interface. * Props to Dean Edwards' addEvent library for many of the ideas. */ jQuery.event = { global: {}, add: function( elem, types, handler, data, selector ) { var handleObjIn, eventHandle, tmp, events, t, handleObj, special, handlers, type, namespaces, origType, elemData = dataPriv.get( elem ); // Don't attach events to noData or text/comment nodes (but allow plain objects) if ( !elemData ) { return; } // Caller can pass in an object of custom data in lieu of the handler if ( handler.handler ) { handleObjIn = handler; handler = handleObjIn.handler; selector = handleObjIn.selector; } // Ensure that invalid selectors throw exceptions at attach time // Evaluate against documentElement in case elem is a non-element node (e.g., document) if ( selector ) { jQuery.find.matchesSelector( documentElement, selector ); } // Make sure that the handler has a unique ID, used to find/remove it later if ( !handler.guid ) { handler.guid = jQuery.guid++; } // Init the element's event structure and main handler, if this is the first if ( !( events = elemData.events ) ) { events = elemData.events = {}; } if ( !( eventHandle = elemData.handle ) ) { eventHandle = elemData.handle = function( e ) { // Discard the second event of a jQuery.event.trigger() and // when an event is called after a page has unloaded return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? jQuery.event.dispatch.apply( elem, arguments ) : undefined; }; } // Handle multiple events separated by a space types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; t = types.length; while ( t-- ) { tmp = rtypenamespace.exec( types[ t ] ) || []; type = origType = tmp[ 1 ]; namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); // There *must* be a type, no attaching namespace-only handlers if ( !type ) { continue; } // If event changes its type, use the special event handlers for the changed type special = jQuery.event.special[ type ] || {}; // If selector defined, determine special event api type, otherwise given type type = ( selector ? special.delegateType : special.bindType ) || type; // Update special based on newly reset type special = jQuery.event.special[ type ] || {}; // handleObj is passed to all event handlers handleObj = jQuery.extend( { type: type, origType: origType, data: data, handler: handler, guid: handler.guid, selector: selector, needsContext: selector && jQuery.expr.match.needsContext.test( selector ), namespace: namespaces.join( "." ) }, handleObjIn ); // Init the event handler queue if we're the first if ( !( handlers = events[ type ] ) ) { handlers = events[ type ] = []; handlers.delegateCount = 0; // Only use addEventListener if the special events handler returns false if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { if ( elem.addEventListener ) { elem.addEventListener( type, eventHandle ); } } } if ( special.add ) { special.add.call( elem, handleObj ); if ( !handleObj.handler.guid ) { handleObj.handler.guid = handler.guid; } } // Add to the element's handler list, delegates in front if ( selector ) { handlers.splice( handlers.delegateCount++, 0, handleObj ); } else { handlers.push( handleObj ); } // Keep track of which events have ever been used, for event optimization jQuery.event.global[ type ] = true; } }, // Detach an event or set of events from an element remove: function( elem, types, handler, selector, mappedTypes ) { var j, origCount, tmp, events, t, handleObj, special, handlers, type, namespaces, origType, elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); if ( !elemData || !( events = elemData.events ) ) { return; } // Once for each type.namespace in types; type may be omitted types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; t = types.length; while ( t-- ) { tmp = rtypenamespace.exec( types[ t ] ) || []; type = origType = tmp[ 1 ]; namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); // Unbind all events (on this namespace, if provided) for the element if ( !type ) { for ( type in events ) { jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); } continue; } special = jQuery.event.special[ type ] || {}; type = ( selector ? special.delegateType : special.bindType ) || type; handlers = events[ type ] || []; tmp = tmp[ 2 ] && new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); // Remove matching events origCount = j = handlers.length; while ( j-- ) { handleObj = handlers[ j ]; if ( ( mappedTypes || origType === handleObj.origType ) && ( !handler || handler.guid === handleObj.guid ) && ( !tmp || tmp.test( handleObj.namespace ) ) && ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { handlers.splice( j, 1 ); if ( handleObj.selector ) { handlers.delegateCount--; } if ( special.remove ) { special.remove.call( elem, handleObj ); } } } // Remove generic event handler if we removed something and no more handlers exist // (avoids potential for endless recursion during removal of special event handlers) if ( origCount && !handlers.length ) { if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { jQuery.removeEvent( elem, type, elemData.handle ); } delete events[ type ]; } } // Remove data and the expando if it's no longer used if ( jQuery.isEmptyObject( events ) ) { dataPriv.remove( elem, "handle events" ); } }, dispatch: function( nativeEvent ) { // Make a writable jQuery.Event from the native event object var event = jQuery.event.fix( nativeEvent ); var i, j, ret, matched, handleObj, handlerQueue, args = new Array( arguments.length ), handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [], special = jQuery.event.special[ event.type ] || {}; // Use the fix-ed jQuery.Event rather than the (read-only) native event args[ 0 ] = event; for ( i = 1; i < arguments.length; i++ ) { args[ i ] = arguments[ i ]; } event.delegateTarget = this; // Call the preDispatch hook for the mapped type, and let it bail if desired if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { return; } // Determine handlers handlerQueue = jQuery.event.handlers.call( this, event, handlers ); // Run delegates first; they may want to stop propagation beneath us i = 0; while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { event.currentTarget = matched.elem; j = 0; while ( ( handleObj = matched.handlers[ j++ ] ) && !event.isImmediatePropagationStopped() ) { // If the event is namespaced, then each handler is only invoked if it is // specially universal or its namespaces are a superset of the event's. if ( !event.rnamespace || handleObj.namespace === false || event.rnamespace.test( handleObj.namespace ) ) { event.handleObj = handleObj; event.data = handleObj.data; ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || handleObj.handler ).apply( matched.elem, args ); if ( ret !== undefined ) { if ( ( event.result = ret ) === false ) { event.preventDefault(); event.stopPropagation(); } } } } } // Call the postDispatch hook for the mapped type if ( special.postDispatch ) { special.postDispatch.call( this, event ); } return event.result; }, handlers: function( event, handlers ) { var i, handleObj, sel, matchedHandlers, matchedSelectors, handlerQueue = [], delegateCount = handlers.delegateCount, cur = event.target; // Find delegate handlers if ( delegateCount && // Support: IE <=9 // Black-hole SVG instance trees (trac-13180) cur.nodeType && // Support: Firefox <=42 // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click // Support: IE 11 only // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) !( event.type === "click" && event.button >= 1 ) ) { for ( ; cur !== this; cur = cur.parentNode || this ) { // Don't check non-elements (#13208) // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { matchedHandlers = []; matchedSelectors = {}; for ( i = 0; i < delegateCount; i++ ) { handleObj = handlers[ i ]; // Don't conflict with Object.prototype properties (#13203) sel = handleObj.selector + " "; if ( matchedSelectors[ sel ] === undefined ) { matchedSelectors[ sel ] = handleObj.needsContext ? jQuery( sel, this ).index( cur ) > -1 : jQuery.find( sel, this, null, [ cur ] ).length; } if ( matchedSelectors[ sel ] ) { matchedHandlers.push( handleObj ); } } if ( matchedHandlers.length ) { handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); } } } } // Add the remaining (directly-bound) handlers cur = this; if ( delegateCount < handlers.length ) { handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); } return handlerQueue; }, addProp: function( name, hook ) { Object.defineProperty( jQuery.Event.prototype, name, { enumerable: true, configurable: true, get: isFunction( hook ) ? function() { if ( this.originalEvent ) { return hook( this.originalEvent ); } } : function() { if ( this.originalEvent ) { return this.originalEvent[ name ]; } }, set: function( value ) { Object.defineProperty( this, name, { enumerable: true, configurable: true, writable: true, value: value } ); } } ); }, fix: function( originalEvent ) { return originalEvent[ jQuery.expando ] ? originalEvent : new jQuery.Event( originalEvent ); }, special: { load: { // Prevent triggered image.load events from bubbling to window.load noBubble: true }, click: { // Utilize native event to ensure correct state for checkable inputs setup: function( data ) { // For mutual compressibility with _default, replace `this` access with a local var. // `|| data` is dead code meant only to preserve the variable through minification. var el = this || data; // Claim the first handler if ( rcheckableType.test( el.type ) && el.click && nodeName( el, "input" ) ) { // dataPriv.set( el, "click", ... ) leverageNative( el, "click", returnTrue ); } // Return false to allow normal processing in the caller return false; }, trigger: function( data ) { // For mutual compressibility with _default, replace `this` access with a local var. // `|| data` is dead code meant only to preserve the variable through minification. var el = this || data; // Force setup before triggering a click if ( rcheckableType.test( el.type ) && el.click && nodeName( el, "input" ) ) { leverageNative( el, "click" ); } // Return non-false to allow normal event-path propagation return true; }, // For cross-browser consistency, suppress native .click() on links // Also prevent it if we're currently inside a leveraged native-event stack _default: function( event ) { var target = event.target; return rcheckableType.test( target.type ) && target.click && nodeName( target, "input" ) && dataPriv.get( target, "click" ) || nodeName( target, "a" ); } }, beforeunload: { postDispatch: function( event ) { // Support: Firefox 20+ // Firefox doesn't alert if the returnValue field is not set. if ( event.result !== undefined && event.originalEvent ) { event.originalEvent.returnValue = event.result; } } } } }; // Ensure the presence of an event listener that handles manually-triggered // synthetic events by interrupting progress until reinvoked in response to // *native* events that it fires directly, ensuring that state changes have // already occurred before other listeners are invoked. function leverageNative( el, type, expectSync ) { // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add if ( !expectSync ) { if ( dataPriv.get( el, type ) === undefined ) { jQuery.event.add( el, type, returnTrue ); } return; } // Register the controller as a special universal handler for all event namespaces dataPriv.set( el, type, false ); jQuery.event.add( el, type, { namespace: false, handler: function( event ) { var notAsync, result, saved = dataPriv.get( this, type ); if ( ( event.isTrigger & 1 ) && this[ type ] ) { // Interrupt processing of the outer synthetic .trigger()ed event // Saved data should be false in such cases, but might be a leftover capture object // from an async native handler (gh-4350) if ( !saved.length ) { // Store arguments for use when handling the inner native event // There will always be at least one argument (an event object), so this array // will not be confused with a leftover capture object. saved = slice.call( arguments ); dataPriv.set( this, type, saved ); // Trigger the native event and capture its result // Support: IE <=9 - 11+ // focus() and blur() are asynchronous notAsync = expectSync( this, type ); this[ type ](); result = dataPriv.get( this, type ); if ( saved !== result || notAsync ) { dataPriv.set( this, type, false ); } else { result = {}; } if ( saved !== result ) { // Cancel the outer synthetic event event.stopImmediatePropagation(); event.preventDefault(); return result.value; } // If this is an inner synthetic event for an event with a bubbling surrogate // (focus or blur), assume that the surrogate already propagated from triggering the // native event and prevent that from happening again here. // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the // bubbling surrogate propagates *after* the non-bubbling base), but that seems // less bad than duplication. } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { event.stopPropagation(); } // If this is a native event triggered above, everything is now in order // Fire an inner synthetic event with the original arguments } else if ( saved.length ) { // ...and capture the result dataPriv.set( this, type, { value: jQuery.event.trigger( // Support: IE <=9 - 11+ // Extend with the prototype to reset the above stopImmediatePropagation() jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), saved.slice( 1 ), this ) } ); // Abort handling of the native event event.stopImmediatePropagation(); } } } ); } jQuery.removeEvent = function( elem, type, handle ) { // This "if" is needed for plain objects if ( elem.removeEventListener ) { elem.removeEventListener( type, handle ); } }; jQuery.Event = function( src, props ) { // Allow instantiation without the 'new' keyword if ( !( this instanceof jQuery.Event ) ) { return new jQuery.Event( src, props ); } // Event object if ( src && src.type ) { this.originalEvent = src; this.type = src.type; // Events bubbling up the document may have been marked as prevented // by a handler lower down the tree; reflect the correct value. this.isDefaultPrevented = src.defaultPrevented || src.defaultPrevented === undefined && // Support: Android <=2.3 only src.returnValue === false ? returnTrue : returnFalse; // Create target properties // Support: Safari <=6 - 7 only // Target should not be a text node (#504, #13143) this.target = ( src.target && src.target.nodeType === 3 ) ? src.target.parentNode : src.target; this.currentTarget = src.currentTarget; this.relatedTarget = src.relatedTarget; // Event type } else { this.type = src; } // Put explicitly provided properties onto the event object if ( props ) { jQuery.extend( this, props ); } // Create a timestamp if incoming event doesn't have one this.timeStamp = src && src.timeStamp || Date.now(); // Mark it as fixed this[ jQuery.expando ] = true; }; // jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding // https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html jQuery.Event.prototype = { constructor: jQuery.Event, isDefaultPrevented: returnFalse, isPropagationStopped: returnFalse, isImmediatePropagationStopped: returnFalse, isSimulated: false, preventDefault: function() { var e = this.originalEvent; this.isDefaultPrevented = returnTrue; if ( e && !this.isSimulated ) { e.preventDefault(); } }, stopPropagation: function() { var e = this.originalEvent; this.isPropagationStopped = returnTrue; if ( e && !this.isSimulated ) { e.stopPropagation(); } }, stopImmediatePropagation: function() { var e = this.originalEvent; this.isImmediatePropagationStopped = returnTrue; if ( e && !this.isSimulated ) { e.stopImmediatePropagation(); } this.stopPropagation(); } }; // Includes all common event props including KeyEvent and MouseEvent specific props jQuery.each( { altKey: true, bubbles: true, cancelable: true, changedTouches: true, ctrlKey: true, detail: true, eventPhase: true, metaKey: true, pageX: true, pageY: true, shiftKey: true, view: true, "char": true, code: true, charCode: true, key: true, keyCode: true, button: true, buttons: true, clientX: true, clientY: true, offsetX: true, offsetY: true, pointerId: true, pointerType: true, screenX: true, screenY: true, targetTouches: true, toElement: true, touches: true, which: function( event ) { var button = event.button; // Add which for key events if ( event.which == null && rkeyEvent.test( event.type ) ) { return event.charCode != null ? event.charCode : event.keyCode; } // Add which for click: 1 === left; 2 === middle; 3 === right if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { if ( button & 1 ) { return 1; } if ( button & 2 ) { return 3; } if ( button & 4 ) { return 2; } return 0; } return event.which; } }, jQuery.event.addProp ); jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { jQuery.event.special[ type ] = { // Utilize native event if possible so blur/focus sequence is correct setup: function() { // Claim the first handler // dataPriv.set( this, "focus", ... ) // dataPriv.set( this, "blur", ... ) leverageNative( this, type, expectSync ); // Return false to allow normal processing in the caller return false; }, trigger: function() { // Force setup before trigger leverageNative( this, type ); // Return non-false to allow normal event-path propagation return true; }, delegateType: delegateType }; } ); // Create mouseenter/leave events using mouseover/out and event-time checks // so that event delegation works in jQuery. // Do the same for pointerenter/pointerleave and pointerover/pointerout // // Support: Safari 7 only // Safari sends mouseenter too often; see: // https://bugs.chromium.org/p/chromium/issues/detail?id=470258 // for the description of the bug (it existed in older Chrome versions as well). jQuery.each( { mouseenter: "mouseover", mouseleave: "mouseout", pointerenter: "pointerover", pointerleave: "pointerout" }, function( orig, fix ) { jQuery.event.special[ orig ] = { delegateType: fix, bindType: fix, handle: function( event ) { var ret, target = this, related = event.relatedTarget, handleObj = event.handleObj; // For mouseenter/leave call the handler if related is outside the target. // NB: No relatedTarget if the mouse left/entered the browser window if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { event.type = handleObj.origType; ret = handleObj.handler.apply( this, arguments ); event.type = fix; } return ret; } }; } ); jQuery.fn.extend( { on: function( types, selector, data, fn ) { return on( this, types, selector, data, fn ); }, one: function( types, selector, data, fn ) { return on( this, types, selector, data, fn, 1 ); }, off: function( types, selector, fn ) { var handleObj, type; if ( types && types.preventDefault && types.handleObj ) { // ( event ) dispatched jQuery.Event handleObj = types.handleObj; jQuery( types.delegateTarget ).off( handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, handleObj.selector, handleObj.handler ); return this; } if ( typeof types === "object" ) { // ( types-object [, selector] ) for ( type in types ) { this.off( type, selector, types[ type ] ); } return this; } if ( selector === false || typeof selector === "function" ) { // ( types [, fn] ) fn = selector; selector = undefined; } if ( fn === false ) { fn = returnFalse; } return this.each( function() { jQuery.event.remove( this, types, fn, selector ); } ); } } ); var /* eslint-disable max-len */ // See https://github.com/eslint/eslint/issues/3229 rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi, /* eslint-enable */ // Support: IE <=10 - 11, Edge 12 - 13 only // In IE/Edge using regex groups here causes severe slowdowns. // See https://connect.microsoft.com/IE/feedback/details/1736512/ rnoInnerhtml = /\s*$/g; // Prefer a tbody over its parent table for containing new rows function manipulationTarget( elem, content ) { if ( nodeName( elem, "table" ) && nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { return jQuery( elem ).children( "tbody" )[ 0 ] || elem; } return elem; } // Replace/restore the type attribute of script elements for safe DOM manipulation function disableScript( elem ) { elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; return elem; } function restoreScript( elem ) { if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { elem.type = elem.type.slice( 5 ); } else { elem.removeAttribute( "type" ); } return elem; } function cloneCopyEvent( src, dest ) { var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events; if ( dest.nodeType !== 1 ) { return; } // 1. Copy private data: events, handlers, etc. if ( dataPriv.hasData( src ) ) { pdataOld = dataPriv.access( src ); pdataCur = dataPriv.set( dest, pdataOld ); events = pdataOld.events; if ( events ) { delete pdataCur.handle; pdataCur.events = {}; for ( type in events ) { for ( i = 0, l = events[ type ].length; i < l; i++ ) { jQuery.event.add( dest, type, events[ type ][ i ] ); } } } } // 2. Copy user data if ( dataUser.hasData( src ) ) { udataOld = dataUser.access( src ); udataCur = jQuery.extend( {}, udataOld ); dataUser.set( dest, udataCur ); } } // Fix IE bugs, see support tests function fixInput( src, dest ) { var nodeName = dest.nodeName.toLowerCase(); // Fails to persist the checked state of a cloned checkbox or radio button. if ( nodeName === "input" && rcheckableType.test( src.type ) ) { dest.checked = src.checked; // Fails to return the selected option to the default selected state when cloning options } else if ( nodeName === "input" || nodeName === "textarea" ) { dest.defaultValue = src.defaultValue; } } function domManip( collection, args, callback, ignored ) { // Flatten any nested arrays args = concat.apply( [], args ); var fragment, first, scripts, hasScripts, node, doc, i = 0, l = collection.length, iNoClone = l - 1, value = args[ 0 ], valueIsFunction = isFunction( value ); // We can't cloneNode fragments that contain checked, in WebKit if ( valueIsFunction || ( l > 1 && typeof value === "string" && !support.checkClone && rchecked.test( value ) ) ) { return collection.each( function( index ) { var self = collection.eq( index ); if ( valueIsFunction ) { args[ 0 ] = value.call( this, index, self.html() ); } domManip( self, args, callback, ignored ); } ); } if ( l ) { fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); first = fragment.firstChild; if ( fragment.childNodes.length === 1 ) { fragment = first; } // Require either new content or an interest in ignored elements to invoke the callback if ( first || ignored ) { scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); hasScripts = scripts.length; // Use the original fragment for the last item // instead of the first because it can end up // being emptied incorrectly in certain situations (#8070). for ( ; i < l; i++ ) { node = fragment; if ( i !== iNoClone ) { node = jQuery.clone( node, true, true ); // Keep references to cloned scripts for later restoration if ( hasScripts ) { // Support: Android <=4.0 only, PhantomJS 1 only // push.apply(_, arraylike) throws on ancient WebKit jQuery.merge( scripts, getAll( node, "script" ) ); } } callback.call( collection[ i ], node, i ); } if ( hasScripts ) { doc = scripts[ scripts.length - 1 ].ownerDocument; // Reenable scripts jQuery.map( scripts, restoreScript ); // Evaluate executable scripts on first document insertion for ( i = 0; i < hasScripts; i++ ) { node = scripts[ i ]; if ( rscriptType.test( node.type || "" ) && !dataPriv.access( node, "globalEval" ) && jQuery.contains( doc, node ) ) { if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { // Optional AJAX dependency, but won't run scripts if not present if ( jQuery._evalUrl && !node.noModule ) { jQuery._evalUrl( node.src, { nonce: node.nonce || node.getAttribute( "nonce" ) } ); } } else { DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); } } } } } } return collection; } function remove( elem, selector, keepData ) { var node, nodes = selector ? jQuery.filter( selector, elem ) : elem, i = 0; for ( ; ( node = nodes[ i ] ) != null; i++ ) { if ( !keepData && node.nodeType === 1 ) { jQuery.cleanData( getAll( node ) ); } if ( node.parentNode ) { if ( keepData && isAttached( node ) ) { setGlobalEval( getAll( node, "script" ) ); } node.parentNode.removeChild( node ); } } return elem; } jQuery.extend( { htmlPrefilter: function( html ) { return html.replace( rxhtmlTag, "<$1>" ); }, clone: function( elem, dataAndEvents, deepDataAndEvents ) { var i, l, srcElements, destElements, clone = elem.cloneNode( true ), inPage = isAttached( elem ); // Fix IE cloning issues if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && !jQuery.isXMLDoc( elem ) ) { // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 destElements = getAll( clone ); srcElements = getAll( elem ); for ( i = 0, l = srcElements.length; i < l; i++ ) { fixInput( srcElements[ i ], destElements[ i ] ); } } // Copy the events from the original to the clone if ( dataAndEvents ) { if ( deepDataAndEvents ) { srcElements = srcElements || getAll( elem ); destElements = destElements || getAll( clone ); for ( i = 0, l = srcElements.length; i < l; i++ ) { cloneCopyEvent( srcElements[ i ], destElements[ i ] ); } } else { cloneCopyEvent( elem, clone ); } } // Preserve script evaluation history destElements = getAll( clone, "script" ); if ( destElements.length > 0 ) { setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); } // Return the cloned set return clone; }, cleanData: function( elems ) { var data, elem, type, special = jQuery.event.special, i = 0; for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { if ( acceptData( elem ) ) { if ( ( data = elem[ dataPriv.expando ] ) ) { if ( data.events ) { for ( type in data.events ) { if ( special[ type ] ) { jQuery.event.remove( elem, type ); // This is a shortcut to avoid jQuery.event.remove's overhead } else { jQuery.removeEvent( elem, type, data.handle ); } } } // Support: Chrome <=35 - 45+ // Assign undefined instead of using delete, see Data#remove elem[ dataPriv.expando ] = undefined; } if ( elem[ dataUser.expando ] ) { // Support: Chrome <=35 - 45+ // Assign undefined instead of using delete, see Data#remove elem[ dataUser.expando ] = undefined; } } } } } ); jQuery.fn.extend( { detach: function( selector ) { return remove( this, selector, true ); }, remove: function( selector ) { return remove( this, selector ); }, text: function( value ) { return access( this, function( value ) { return value === undefined ? jQuery.text( this ) : this.empty().each( function() { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { this.textContent = value; } } ); }, null, value, arguments.length ); }, append: function() { return domManip( this, arguments, function( elem ) { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { var target = manipulationTarget( this, elem ); target.appendChild( elem ); } } ); }, prepend: function() { return domManip( this, arguments, function( elem ) { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { var target = manipulationTarget( this, elem ); target.insertBefore( elem, target.firstChild ); } } ); }, before: function() { return domManip( this, arguments, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this ); } } ); }, after: function() { return domManip( this, arguments, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this.nextSibling ); } } ); }, empty: function() { var elem, i = 0; for ( ; ( elem = this[ i ] ) != null; i++ ) { if ( elem.nodeType === 1 ) { // Prevent memory leaks jQuery.cleanData( getAll( elem, false ) ); // Remove any remaining nodes elem.textContent = ""; } } return this; }, clone: function( dataAndEvents, deepDataAndEvents ) { dataAndEvents = dataAndEvents == null ? false : dataAndEvents; deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; return this.map( function() { return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); } ); }, html: function( value ) { return access( this, function( value ) { var elem = this[ 0 ] || {}, i = 0, l = this.length; if ( value === undefined && elem.nodeType === 1 ) { return elem.innerHTML; } // See if we can take a shortcut and just use innerHTML if ( typeof value === "string" && !rnoInnerhtml.test( value ) && !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { value = jQuery.htmlPrefilter( value ); try { for ( ; i < l; i++ ) { elem = this[ i ] || {}; // Remove element nodes and prevent memory leaks if ( elem.nodeType === 1 ) { jQuery.cleanData( getAll( elem, false ) ); elem.innerHTML = value; } } elem = 0; // If using innerHTML throws an exception, use the fallback method } catch ( e ) {} } if ( elem ) { this.empty().append( value ); } }, null, value, arguments.length ); }, replaceWith: function() { var ignored = []; // Make the changes, replacing each non-ignored context element with the new content return domManip( this, arguments, function( elem ) { var parent = this.parentNode; if ( jQuery.inArray( this, ignored ) < 0 ) { jQuery.cleanData( getAll( this ) ); if ( parent ) { parent.replaceChild( elem, this ); } } // Force callback invocation }, ignored ); } } ); jQuery.each( { appendTo: "append", prependTo: "prepend", insertBefore: "before", insertAfter: "after", replaceAll: "replaceWith" }, function( name, original ) { jQuery.fn[ name ] = function( selector ) { var elems, ret = [], insert = jQuery( selector ), last = insert.length - 1, i = 0; for ( ; i <= last; i++ ) { elems = i === last ? this : this.clone( true ); jQuery( insert[ i ] )[ original ]( elems ); // Support: Android <=4.0 only, PhantomJS 1 only // .get() because push.apply(_, arraylike) throws on ancient WebKit push.apply( ret, elems.get() ); } return this.pushStack( ret ); }; } ); var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); var getStyles = function( elem ) { // Support: IE <=11 only, Firefox <=30 (#15098, #14150) // IE throws on elements created in popups // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" var view = elem.ownerDocument.defaultView; if ( !view || !view.opener ) { view = window; } return view.getComputedStyle( elem ); }; var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); ( function() { // Executing both pixelPosition & boxSizingReliable tests require only one layout // so they're executed at the same time to save the second computation. function computeStyleTests() { // This is a singleton, we need to execute it only once if ( !div ) { return; } container.style.cssText = "position:absolute;left:-11111px;width:60px;" + "margin-top:1px;padding:0;border:0"; div.style.cssText = "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + "margin:auto;border:1px;padding:1px;" + "width:60%;top:1%"; documentElement.appendChild( container ).appendChild( div ); var divStyle = window.getComputedStyle( div ); pixelPositionVal = divStyle.top !== "1%"; // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 // Some styles come back with percentage values, even though they shouldn't div.style.right = "60%"; pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; // Support: IE 9 - 11 only // Detect misreporting of content dimensions for box-sizing:border-box elements boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; // Support: IE 9 only // Detect overflow:scroll screwiness (gh-3699) // Support: Chrome <=64 // Don't get tricked when zoom affects offsetWidth (gh-4029) div.style.position = "absolute"; scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; documentElement.removeChild( container ); // Nullify the div so it wouldn't be stored in the memory and // it will also be a sign that checks already performed div = null; } function roundPixelMeasures( measure ) { return Math.round( parseFloat( measure ) ); } var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, reliableMarginLeftVal, container = document.createElement( "div" ), div = document.createElement( "div" ); // Finish early in limited (non-browser) environments if ( !div.style ) { return; } // Support: IE <=9 - 11 only // Style of cloned element affects source element cloned (#8908) div.style.backgroundClip = "content-box"; div.cloneNode( true ).style.backgroundClip = ""; support.clearCloneStyle = div.style.backgroundClip === "content-box"; jQuery.extend( support, { boxSizingReliable: function() { computeStyleTests(); return boxSizingReliableVal; }, pixelBoxStyles: function() { computeStyleTests(); return pixelBoxStylesVal; }, pixelPosition: function() { computeStyleTests(); return pixelPositionVal; }, reliableMarginLeft: function() { computeStyleTests(); return reliableMarginLeftVal; }, scrollboxSize: function() { computeStyleTests(); return scrollboxSizeVal; } } ); } )(); function curCSS( elem, name, computed ) { var width, minWidth, maxWidth, ret, // Support: Firefox 51+ // Retrieving style before computed somehow // fixes an issue with getting wrong values // on detached elements style = elem.style; computed = computed || getStyles( elem ); // getPropertyValue is needed for: // .css('filter') (IE 9 only, #12537) // .css('--customProperty) (#3144) if ( computed ) { ret = computed.getPropertyValue( name ) || computed[ name ]; if ( ret === "" && !isAttached( elem ) ) { ret = jQuery.style( elem, name ); } // A tribute to the "awesome hack by Dean Edwards" // Android Browser returns percentage for some values, // but width seems to be reliably pixels. // This is against the CSSOM draft spec: // https://drafts.csswg.org/cssom/#resolved-values if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { // Remember the original values width = style.width; minWidth = style.minWidth; maxWidth = style.maxWidth; // Put in the new values to get a computed value out style.minWidth = style.maxWidth = style.width = ret; ret = computed.width; // Revert the changed values style.width = width; style.minWidth = minWidth; style.maxWidth = maxWidth; } } return ret !== undefined ? // Support: IE <=9 - 11 only // IE returns zIndex value as an integer. ret + "" : ret; } function addGetHookIf( conditionFn, hookFn ) { // Define the hook, we'll check on the first run if it's really needed. return { get: function() { if ( conditionFn() ) { // Hook not needed (or it's not possible to use it due // to missing dependency), remove it. delete this.get; return; } // Hook needed; redefine it so that the support test is not executed again. return ( this.get = hookFn ).apply( this, arguments ); } }; } var cssPrefixes = [ "Webkit", "Moz", "ms" ], emptyStyle = document.createElement( "div" ).style, vendorProps = {}; // Return a vendor-prefixed property or undefined function vendorPropName( name ) { // Check for vendor prefixed names var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), i = cssPrefixes.length; while ( i-- ) { name = cssPrefixes[ i ] + capName; if ( name in emptyStyle ) { return name; } } } // Return a potentially-mapped jQuery.cssProps or vendor prefixed property function finalPropName( name ) { var final = jQuery.cssProps[ name ] || vendorProps[ name ]; if ( final ) { return final; } if ( name in emptyStyle ) { return name; } return vendorProps[ name ] = vendorPropName( name ) || name; } var // Swappable if display is none or starts with table // except "table", "table-cell", or "table-caption" // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display rdisplayswap = /^(none|table(?!-c[ea]).+)/, rcustomProp = /^--/, cssShow = { position: "absolute", visibility: "hidden", display: "block" }, cssNormalTransform = { letterSpacing: "0", fontWeight: "400" }; function setPositiveNumber( elem, value, subtract ) { // Any relative (+/-) values have already been // normalized at this point var matches = rcssNum.exec( value ); return matches ? // Guard against undefined "subtract", e.g., when used as in cssHooks Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : value; } function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { var i = dimension === "width" ? 1 : 0, extra = 0, delta = 0; // Adjustment may not be necessary if ( box === ( isBorderBox ? "border" : "content" ) ) { return 0; } for ( ; i < 4; i += 2 ) { // Both box models exclude margin if ( box === "margin" ) { delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); } // If we get here with a content-box, we're seeking "padding" or "border" or "margin" if ( !isBorderBox ) { // Add padding delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); // For "border" or "margin", add border if ( box !== "padding" ) { delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); // But still keep track of it otherwise } else { extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); } // If we get here with a border-box (content + padding + border), we're seeking "content" or // "padding" or "margin" } else { // For "content", subtract padding if ( box === "content" ) { delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); } // For "content" or "padding", subtract border if ( box !== "margin" ) { delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); } } } // Account for positive content-box scroll gutter when requested by providing computedVal if ( !isBorderBox && computedVal >= 0 ) { // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border // Assuming integer scroll gutter, subtract the rest and round down delta += Math.max( 0, Math.ceil( elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - computedVal - delta - extra - 0.5 // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter // Use an explicit zero to avoid NaN (gh-3964) ) ) || 0; } return delta; } function getWidthOrHeight( elem, dimension, extra ) { // Start with computed style var styles = getStyles( elem ), // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). // Fake content-box until we know it's needed to know the true value. boxSizingNeeded = !support.boxSizingReliable() || extra, isBorderBox = boxSizingNeeded && jQuery.css( elem, "boxSizing", false, styles ) === "border-box", valueIsBorderBox = isBorderBox, val = curCSS( elem, dimension, styles ), offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); // Support: Firefox <=54 // Return a confounding non-pixel value or feign ignorance, as appropriate. if ( rnumnonpx.test( val ) ) { if ( !extra ) { return val; } val = "auto"; } // Fall back to offsetWidth/offsetHeight when value is "auto" // This happens for inline elements with no explicit setting (gh-3571) // Support: Android <=4.1 - 4.3 only // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) // Support: IE 9-11 only // Also use offsetWidth/offsetHeight for when box sizing is unreliable // We use getClientRects() to check for hidden/disconnected. // In those cases, the computed value can be trusted to be border-box if ( ( !support.boxSizingReliable() && isBorderBox || val === "auto" || !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && elem.getClientRects().length ) { isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; // Where available, offsetWidth/offsetHeight approximate border box dimensions. // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the // retrieved value as a content box dimension. valueIsBorderBox = offsetProp in elem; if ( valueIsBorderBox ) { val = elem[ offsetProp ]; } } // Normalize "" and auto val = parseFloat( val ) || 0; // Adjust for the element's box model return ( val + boxModelAdjustment( elem, dimension, extra || ( isBorderBox ? "border" : "content" ), valueIsBorderBox, styles, // Provide the current computed size to request scroll gutter calculation (gh-3589) val ) ) + "px"; } jQuery.extend( { // Add in style property hooks for overriding the default // behavior of getting and setting a style property cssHooks: { opacity: { get: function( elem, computed ) { if ( computed ) { // We should always get a number back from opacity var ret = curCSS( elem, "opacity" ); return ret === "" ? "1" : ret; } } } }, // Don't automatically add "px" to these possibly-unitless properties cssNumber: { "animationIterationCount": true, "columnCount": true, "fillOpacity": true, "flexGrow": true, "flexShrink": true, "fontWeight": true, "gridArea": true, "gridColumn": true, "gridColumnEnd": true, "gridColumnStart": true, "gridRow": true, "gridRowEnd": true, "gridRowStart": true, "lineHeight": true, "opacity": true, "order": true, "orphans": true, "widows": true, "zIndex": true, "zoom": true }, // Add in properties whose names you wish to fix before // setting or getting the value cssProps: {}, // Get and set the style property on a DOM Node style: function( elem, name, value, extra ) { // Don't set styles on text and comment nodes if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { return; } // Make sure that we're working with the right name var ret, type, hooks, origName = camelCase( name ), isCustomProp = rcustomProp.test( name ), style = elem.style; // Make sure that we're working with the right name. We don't // want to query the value if it is a CSS custom property // since they are user-defined. if ( !isCustomProp ) { name = finalPropName( origName ); } // Gets hook for the prefixed version, then unprefixed version hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; // Check if we're setting a value if ( value !== undefined ) { type = typeof value; // Convert "+=" or "-=" to relative numbers (#7345) if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { value = adjustCSS( elem, name, ret ); // Fixes bug #9237 type = "number"; } // Make sure that null and NaN values aren't set (#7116) if ( value == null || value !== value ) { return; } // If a number was passed in, add the unit (except for certain CSS properties) // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append // "px" to a few hardcoded values. if ( type === "number" && !isCustomProp ) { value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); } // background-* props affect original clone's values if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { style[ name ] = "inherit"; } // If a hook was provided, use that value, otherwise just set the specified value if ( !hooks || !( "set" in hooks ) || ( value = hooks.set( elem, value, extra ) ) !== undefined ) { if ( isCustomProp ) { style.setProperty( name, value ); } else { style[ name ] = value; } } } else { // If a hook was provided get the non-computed value from there if ( hooks && "get" in hooks && ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { return ret; } // Otherwise just get the value from the style object return style[ name ]; } }, css: function( elem, name, extra, styles ) { var val, num, hooks, origName = camelCase( name ), isCustomProp = rcustomProp.test( name ); // Make sure that we're working with the right name. We don't // want to modify the value if it is a CSS custom property // since they are user-defined. if ( !isCustomProp ) { name = finalPropName( origName ); } // Try prefixed name followed by the unprefixed name hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; // If a hook was provided get the computed value from there if ( hooks && "get" in hooks ) { val = hooks.get( elem, true, extra ); } // Otherwise, if a way to get the computed value exists, use that if ( val === undefined ) { val = curCSS( elem, name, styles ); } // Convert "normal" to computed value if ( val === "normal" && name in cssNormalTransform ) { val = cssNormalTransform[ name ]; } // Make numeric if forced or a qualifier was provided and val looks numeric if ( extra === "" || extra ) { num = parseFloat( val ); return extra === true || isFinite( num ) ? num || 0 : val; } return val; } } ); jQuery.each( [ "height", "width" ], function( i, dimension ) { jQuery.cssHooks[ dimension ] = { get: function( elem, computed, extra ) { if ( computed ) { // Certain elements can have dimension info if we invisibly show them // but it must have a current display style that would benefit return rdisplayswap.test( jQuery.css( elem, "display" ) ) && // Support: Safari 8+ // Table columns in Safari have non-zero offsetWidth & zero // getBoundingClientRect().width unless display is changed. // Support: IE <=11 only // Running getBoundingClientRect on a disconnected node // in IE throws an error. ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? swap( elem, cssShow, function() { return getWidthOrHeight( elem, dimension, extra ); } ) : getWidthOrHeight( elem, dimension, extra ); } }, set: function( elem, value, extra ) { var matches, styles = getStyles( elem ), // Only read styles.position if the test has a chance to fail // to avoid forcing a reflow. scrollboxSizeBuggy = !support.scrollboxSize() && styles.position === "absolute", // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) boxSizingNeeded = scrollboxSizeBuggy || extra, isBorderBox = boxSizingNeeded && jQuery.css( elem, "boxSizing", false, styles ) === "border-box", subtract = extra ? boxModelAdjustment( elem, dimension, extra, isBorderBox, styles ) : 0; // Account for unreliable border-box dimensions by comparing offset* to computed and // faking a content-box to get border and padding (gh-3699) if ( isBorderBox && scrollboxSizeBuggy ) { subtract -= Math.ceil( elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - parseFloat( styles[ dimension ] ) - boxModelAdjustment( elem, dimension, "border", false, styles ) - 0.5 ); } // Convert to pixels if value adjustment is needed if ( subtract && ( matches = rcssNum.exec( value ) ) && ( matches[ 3 ] || "px" ) !== "px" ) { elem.style[ dimension ] = value; value = jQuery.css( elem, dimension ); } return setPositiveNumber( elem, value, subtract ); } }; } ); jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, function( elem, computed ) { if ( computed ) { return ( parseFloat( curCSS( elem, "marginLeft" ) ) || elem.getBoundingClientRect().left - swap( elem, { marginLeft: 0 }, function() { return elem.getBoundingClientRect().left; } ) ) + "px"; } } ); // These hooks are used by animate to expand properties jQuery.each( { margin: "", padding: "", border: "Width" }, function( prefix, suffix ) { jQuery.cssHooks[ prefix + suffix ] = { expand: function( value ) { var i = 0, expanded = {}, // Assumes a single number if not a string parts = typeof value === "string" ? value.split( " " ) : [ value ]; for ( ; i < 4; i++ ) { expanded[ prefix + cssExpand[ i ] + suffix ] = parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; } return expanded; } }; if ( prefix !== "margin" ) { jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; } } ); jQuery.fn.extend( { css: function( name, value ) { return access( this, function( elem, name, value ) { var styles, len, map = {}, i = 0; if ( Array.isArray( name ) ) { styles = getStyles( elem ); len = name.length; for ( ; i < len; i++ ) { map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); } return map; } return value !== undefined ? jQuery.style( elem, name, value ) : jQuery.css( elem, name ); }, name, value, arguments.length > 1 ); } } ); function Tween( elem, options, prop, end, easing ) { return new Tween.prototype.init( elem, options, prop, end, easing ); } jQuery.Tween = Tween; Tween.prototype = { constructor: Tween, init: function( elem, options, prop, end, easing, unit ) { this.elem = elem; this.prop = prop; this.easing = easing || jQuery.easing._default; this.options = options; this.start = this.now = this.cur(); this.end = end; this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); }, cur: function() { var hooks = Tween.propHooks[ this.prop ]; return hooks && hooks.get ? hooks.get( this ) : Tween.propHooks._default.get( this ); }, run: function( percent ) { var eased, hooks = Tween.propHooks[ this.prop ]; if ( this.options.duration ) { this.pos = eased = jQuery.easing[ this.easing ]( percent, this.options.duration * percent, 0, 1, this.options.duration ); } else { this.pos = eased = percent; } this.now = ( this.end - this.start ) * eased + this.start; if ( this.options.step ) { this.options.step.call( this.elem, this.now, this ); } if ( hooks && hooks.set ) { hooks.set( this ); } else { Tween.propHooks._default.set( this ); } return this; } }; Tween.prototype.init.prototype = Tween.prototype; Tween.propHooks = { _default: { get: function( tween ) { var result; // Use a property on the element directly when it is not a DOM element, // or when there is no matching style property that exists. if ( tween.elem.nodeType !== 1 || tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { return tween.elem[ tween.prop ]; } // Passing an empty string as a 3rd parameter to .css will automatically // attempt a parseFloat and fallback to a string if the parse fails. // Simple values such as "10px" are parsed to Float; // complex values such as "rotate(1rad)" are returned as-is. result = jQuery.css( tween.elem, tween.prop, "" ); // Empty strings, null, undefined and "auto" are converted to 0. return !result || result === "auto" ? 0 : result; }, set: function( tween ) { // Use step hook for back compat. // Use cssHook if its there. // Use .style if available and use plain properties where available. if ( jQuery.fx.step[ tween.prop ] ) { jQuery.fx.step[ tween.prop ]( tween ); } else if ( tween.elem.nodeType === 1 && ( jQuery.cssHooks[ tween.prop ] || tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); } else { tween.elem[ tween.prop ] = tween.now; } } } }; // Support: IE <=9 only // Panic based approach to setting things on disconnected nodes Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { set: function( tween ) { if ( tween.elem.nodeType && tween.elem.parentNode ) { tween.elem[ tween.prop ] = tween.now; } } }; jQuery.easing = { linear: function( p ) { return p; }, swing: function( p ) { return 0.5 - Math.cos( p * Math.PI ) / 2; }, _default: "swing" }; jQuery.fx = Tween.prototype.init; // Back compat <1.8 extension point jQuery.fx.step = {}; var fxNow, inProgress, rfxtypes = /^(?:toggle|show|hide)$/, rrun = /queueHooks$/; function schedule() { if ( inProgress ) { if ( document.hidden === false && window.requestAnimationFrame ) { window.requestAnimationFrame( schedule ); } else { window.setTimeout( schedule, jQuery.fx.interval ); } jQuery.fx.tick(); } } // Animations created synchronously will run synchronously function createFxNow() { window.setTimeout( function() { fxNow = undefined; } ); return ( fxNow = Date.now() ); } // Generate parameters to create a standard animation function genFx( type, includeWidth ) { var which, i = 0, attrs = { height: type }; // If we include width, step value is 1 to do all cssExpand values, // otherwise step value is 2 to skip over Left and Right includeWidth = includeWidth ? 1 : 0; for ( ; i < 4; i += 2 - includeWidth ) { which = cssExpand[ i ]; attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; } if ( includeWidth ) { attrs.opacity = attrs.width = type; } return attrs; } function createTween( value, prop, animation ) { var tween, collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), index = 0, length = collection.length; for ( ; index < length; index++ ) { if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { // We're done with this property return tween; } } } function defaultPrefilter( elem, props, opts ) { var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, isBox = "width" in props || "height" in props, anim = this, orig = {}, style = elem.style, hidden = elem.nodeType && isHiddenWithinTree( elem ), dataShow = dataPriv.get( elem, "fxshow" ); // Queue-skipping animations hijack the fx hooks if ( !opts.queue ) { hooks = jQuery._queueHooks( elem, "fx" ); if ( hooks.unqueued == null ) { hooks.unqueued = 0; oldfire = hooks.empty.fire; hooks.empty.fire = function() { if ( !hooks.unqueued ) { oldfire(); } }; } hooks.unqueued++; anim.always( function() { // Ensure the complete handler is called before this completes anim.always( function() { hooks.unqueued--; if ( !jQuery.queue( elem, "fx" ).length ) { hooks.empty.fire(); } } ); } ); } // Detect show/hide animations for ( prop in props ) { value = props[ prop ]; if ( rfxtypes.test( value ) ) { delete props[ prop ]; toggle = toggle || value === "toggle"; if ( value === ( hidden ? "hide" : "show" ) ) { // Pretend to be hidden if this is a "show" and // there is still data from a stopped show/hide if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { hidden = true; // Ignore all other no-op show/hide data } else { continue; } } orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); } } // Bail out if this is a no-op like .hide().hide() propTween = !jQuery.isEmptyObject( props ); if ( !propTween && jQuery.isEmptyObject( orig ) ) { return; } // Restrict "overflow" and "display" styles during box animations if ( isBox && elem.nodeType === 1 ) { // Support: IE <=9 - 11, Edge 12 - 15 // Record all 3 overflow attributes because IE does not infer the shorthand // from identically-valued overflowX and overflowY and Edge just mirrors // the overflowX value there. opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; // Identify a display type, preferring old show/hide data over the CSS cascade restoreDisplay = dataShow && dataShow.display; if ( restoreDisplay == null ) { restoreDisplay = dataPriv.get( elem, "display" ); } display = jQuery.css( elem, "display" ); if ( display === "none" ) { if ( restoreDisplay ) { display = restoreDisplay; } else { // Get nonempty value(s) by temporarily forcing visibility showHide( [ elem ], true ); restoreDisplay = elem.style.display || restoreDisplay; display = jQuery.css( elem, "display" ); showHide( [ elem ] ); } } // Animate inline elements as inline-block if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { if ( jQuery.css( elem, "float" ) === "none" ) { // Restore the original display value at the end of pure show/hide animations if ( !propTween ) { anim.done( function() { style.display = restoreDisplay; } ); if ( restoreDisplay == null ) { display = style.display; restoreDisplay = display === "none" ? "" : display; } } style.display = "inline-block"; } } } if ( opts.overflow ) { style.overflow = "hidden"; anim.always( function() { style.overflow = opts.overflow[ 0 ]; style.overflowX = opts.overflow[ 1 ]; style.overflowY = opts.overflow[ 2 ]; } ); } // Implement show/hide animations propTween = false; for ( prop in orig ) { // General show/hide setup for this element animation if ( !propTween ) { if ( dataShow ) { if ( "hidden" in dataShow ) { hidden = dataShow.hidden; } } else { dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); } // Store hidden/visible for toggle so `.stop().toggle()` "reverses" if ( toggle ) { dataShow.hidden = !hidden; } // Show elements before animating them if ( hidden ) { showHide( [ elem ], true ); } /* eslint-disable no-loop-func */ anim.done( function() { /* eslint-enable no-loop-func */ // The final step of a "hide" animation is actually hiding the element if ( !hidden ) { showHide( [ elem ] ); } dataPriv.remove( elem, "fxshow" ); for ( prop in orig ) { jQuery.style( elem, prop, orig[ prop ] ); } } ); } // Per-property setup propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); if ( !( prop in dataShow ) ) { dataShow[ prop ] = propTween.start; if ( hidden ) { propTween.end = propTween.start; propTween.start = 0; } } } } function propFilter( props, specialEasing ) { var index, name, easing, value, hooks; // camelCase, specialEasing and expand cssHook pass for ( index in props ) { name = camelCase( index ); easing = specialEasing[ name ]; value = props[ index ]; if ( Array.isArray( value ) ) { easing = value[ 1 ]; value = props[ index ] = value[ 0 ]; } if ( index !== name ) { props[ name ] = value; delete props[ index ]; } hooks = jQuery.cssHooks[ name ]; if ( hooks && "expand" in hooks ) { value = hooks.expand( value ); delete props[ name ]; // Not quite $.extend, this won't overwrite existing keys. // Reusing 'index' because we have the correct "name" for ( index in value ) { if ( !( index in props ) ) { props[ index ] = value[ index ]; specialEasing[ index ] = easing; } } } else { specialEasing[ name ] = easing; } } } function Animation( elem, properties, options ) { var result, stopped, index = 0, length = Animation.prefilters.length, deferred = jQuery.Deferred().always( function() { // Don't match elem in the :animated selector delete tick.elem; } ), tick = function() { if ( stopped ) { return false; } var currentTime = fxNow || createFxNow(), remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), // Support: Android 2.3 only // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) temp = remaining / animation.duration || 0, percent = 1 - temp, index = 0, length = animation.tweens.length; for ( ; index < length; index++ ) { animation.tweens[ index ].run( percent ); } deferred.notifyWith( elem, [ animation, percent, remaining ] ); // If there's more to do, yield if ( percent < 1 && length ) { return remaining; } // If this was an empty animation, synthesize a final progress notification if ( !length ) { deferred.notifyWith( elem, [ animation, 1, 0 ] ); } // Resolve the animation and report its conclusion deferred.resolveWith( elem, [ animation ] ); return false; }, animation = deferred.promise( { elem: elem, props: jQuery.extend( {}, properties ), opts: jQuery.extend( true, { specialEasing: {}, easing: jQuery.easing._default }, options ), originalProperties: properties, originalOptions: options, startTime: fxNow || createFxNow(), duration: options.duration, tweens: [], createTween: function( prop, end ) { var tween = jQuery.Tween( elem, animation.opts, prop, end, animation.opts.specialEasing[ prop ] || animation.opts.easing ); animation.tweens.push( tween ); return tween; }, stop: function( gotoEnd ) { var index = 0, // If we are going to the end, we want to run all the tweens // otherwise we skip this part length = gotoEnd ? animation.tweens.length : 0; if ( stopped ) { return this; } stopped = true; for ( ; index < length; index++ ) { animation.tweens[ index ].run( 1 ); } // Resolve when we played the last frame; otherwise, reject if ( gotoEnd ) { deferred.notifyWith( elem, [ animation, 1, 0 ] ); deferred.resolveWith( elem, [ animation, gotoEnd ] ); } else { deferred.rejectWith( elem, [ animation, gotoEnd ] ); } return this; } } ), props = animation.props; propFilter( props, animation.opts.specialEasing ); for ( ; index < length; index++ ) { result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); if ( result ) { if ( isFunction( result.stop ) ) { jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = result.stop.bind( result ); } return result; } } jQuery.map( props, createTween, animation ); if ( isFunction( animation.opts.start ) ) { animation.opts.start.call( elem, animation ); } // Attach callbacks from options animation .progress( animation.opts.progress ) .done( animation.opts.done, animation.opts.complete ) .fail( animation.opts.fail ) .always( animation.opts.always ); jQuery.fx.timer( jQuery.extend( tick, { elem: elem, anim: animation, queue: animation.opts.queue } ) ); return animation; } jQuery.Animation = jQuery.extend( Animation, { tweeners: { "*": [ function( prop, value ) { var tween = this.createTween( prop, value ); adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); return tween; } ] }, tweener: function( props, callback ) { if ( isFunction( props ) ) { callback = props; props = [ "*" ]; } else { props = props.match( rnothtmlwhite ); } var prop, index = 0, length = props.length; for ( ; index < length; index++ ) { prop = props[ index ]; Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; Animation.tweeners[ prop ].unshift( callback ); } }, prefilters: [ defaultPrefilter ], prefilter: function( callback, prepend ) { if ( prepend ) { Animation.prefilters.unshift( callback ); } else { Animation.prefilters.push( callback ); } } } ); jQuery.speed = function( speed, easing, fn ) { var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { complete: fn || !fn && easing || isFunction( speed ) && speed, duration: speed, easing: fn && easing || easing && !isFunction( easing ) && easing }; // Go to the end state if fx are off if ( jQuery.fx.off ) { opt.duration = 0; } else { if ( typeof opt.duration !== "number" ) { if ( opt.duration in jQuery.fx.speeds ) { opt.duration = jQuery.fx.speeds[ opt.duration ]; } else { opt.duration = jQuery.fx.speeds._default; } } } // Normalize opt.queue - true/undefined/null -> "fx" if ( opt.queue == null || opt.queue === true ) { opt.queue = "fx"; } // Queueing opt.old = opt.complete; opt.complete = function() { if ( isFunction( opt.old ) ) { opt.old.call( this ); } if ( opt.queue ) { jQuery.dequeue( this, opt.queue ); } }; return opt; }; jQuery.fn.extend( { fadeTo: function( speed, to, easing, callback ) { // Show any hidden elements after setting opacity to 0 return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() // Animate to the value specified .end().animate( { opacity: to }, speed, easing, callback ); }, animate: function( prop, speed, easing, callback ) { var empty = jQuery.isEmptyObject( prop ), optall = jQuery.speed( speed, easing, callback ), doAnimation = function() { // Operate on a copy of prop so per-property easing won't be lost var anim = Animation( this, jQuery.extend( {}, prop ), optall ); // Empty animations, or finishing resolves immediately if ( empty || dataPriv.get( this, "finish" ) ) { anim.stop( true ); } }; doAnimation.finish = doAnimation; return empty || optall.queue === false ? this.each( doAnimation ) : this.queue( optall.queue, doAnimation ); }, stop: function( type, clearQueue, gotoEnd ) { var stopQueue = function( hooks ) { var stop = hooks.stop; delete hooks.stop; stop( gotoEnd ); }; if ( typeof type !== "string" ) { gotoEnd = clearQueue; clearQueue = type; type = undefined; } if ( clearQueue && type !== false ) { this.queue( type || "fx", [] ); } return this.each( function() { var dequeue = true, index = type != null && type + "queueHooks", timers = jQuery.timers, data = dataPriv.get( this ); if ( index ) { if ( data[ index ] && data[ index ].stop ) { stopQueue( data[ index ] ); } } else { for ( index in data ) { if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { stopQueue( data[ index ] ); } } } for ( index = timers.length; index--; ) { if ( timers[ index ].elem === this && ( type == null || timers[ index ].queue === type ) ) { timers[ index ].anim.stop( gotoEnd ); dequeue = false; timers.splice( index, 1 ); } } // Start the next in the queue if the last step wasn't forced. // Timers currently will call their complete callbacks, which // will dequeue but only if they were gotoEnd. if ( dequeue || !gotoEnd ) { jQuery.dequeue( this, type ); } } ); }, finish: function( type ) { if ( type !== false ) { type = type || "fx"; } return this.each( function() { var index, data = dataPriv.get( this ), queue = data[ type + "queue" ], hooks = data[ type + "queueHooks" ], timers = jQuery.timers, length = queue ? queue.length : 0; // Enable finishing flag on private data data.finish = true; // Empty the queue first jQuery.queue( this, type, [] ); if ( hooks && hooks.stop ) { hooks.stop.call( this, true ); } // Look for any active animations, and finish them for ( index = timers.length; index--; ) { if ( timers[ index ].elem === this && timers[ index ].queue === type ) { timers[ index ].anim.stop( true ); timers.splice( index, 1 ); } } // Look for any animations in the old queue and finish them for ( index = 0; index < length; index++ ) { if ( queue[ index ] && queue[ index ].finish ) { queue[ index ].finish.call( this ); } } // Turn off finishing flag delete data.finish; } ); } } ); jQuery.each( [ "toggle", "show", "hide" ], function( i, name ) { var cssFn = jQuery.fn[ name ]; jQuery.fn[ name ] = function( speed, easing, callback ) { return speed == null || typeof speed === "boolean" ? cssFn.apply( this, arguments ) : this.animate( genFx( name, true ), speed, easing, callback ); }; } ); // Generate shortcuts for custom animations jQuery.each( { slideDown: genFx( "show" ), slideUp: genFx( "hide" ), slideToggle: genFx( "toggle" ), fadeIn: { opacity: "show" }, fadeOut: { opacity: "hide" }, fadeToggle: { opacity: "toggle" } }, function( name, props ) { jQuery.fn[ name ] = function( speed, easing, callback ) { return this.animate( props, speed, easing, callback ); }; } ); jQuery.timers = []; jQuery.fx.tick = function() { var timer, i = 0, timers = jQuery.timers; fxNow = Date.now(); for ( ; i < timers.length; i++ ) { timer = timers[ i ]; // Run the timer and safely remove it when done (allowing for external removal) if ( !timer() && timers[ i ] === timer ) { timers.splice( i--, 1 ); } } if ( !timers.length ) { jQuery.fx.stop(); } fxNow = undefined; }; jQuery.fx.timer = function( timer ) { jQuery.timers.push( timer ); jQuery.fx.start(); }; jQuery.fx.interval = 13; jQuery.fx.start = function() { if ( inProgress ) { return; } inProgress = true; schedule(); }; jQuery.fx.stop = function() { inProgress = null; }; jQuery.fx.speeds = { slow: 600, fast: 200, // Default speed _default: 400 }; // Based off of the plugin by Clint Helfers, with permission. // https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ jQuery.fn.delay = function( time, type ) { time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; type = type || "fx"; return this.queue( type, function( next, hooks ) { var timeout = window.setTimeout( next, time ); hooks.stop = function() { window.clearTimeout( timeout ); }; } ); }; ( function() { var input = document.createElement( "input" ), select = document.createElement( "select" ), opt = select.appendChild( document.createElement( "option" ) ); input.type = "checkbox"; // Support: Android <=4.3 only // Default value for a checkbox should be "on" support.checkOn = input.value !== ""; // Support: IE <=11 only // Must access selectedIndex to make default options select support.optSelected = opt.selected; // Support: IE <=11 only // An input loses its value after becoming a radio input = document.createElement( "input" ); input.value = "t"; input.type = "radio"; support.radioValue = input.value === "t"; } )(); var boolHook, attrHandle = jQuery.expr.attrHandle; jQuery.fn.extend( { attr: function( name, value ) { return access( this, jQuery.attr, name, value, arguments.length > 1 ); }, removeAttr: function( name ) { return this.each( function() { jQuery.removeAttr( this, name ); } ); } } ); jQuery.extend( { attr: function( elem, name, value ) { var ret, hooks, nType = elem.nodeType; // Don't get/set attributes on text, comment and attribute nodes if ( nType === 3 || nType === 8 || nType === 2 ) { return; } // Fallback to prop when attributes are not supported if ( typeof elem.getAttribute === "undefined" ) { return jQuery.prop( elem, name, value ); } // Attribute hooks are determined by the lowercase version // Grab necessary hook if one is defined if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { hooks = jQuery.attrHooks[ name.toLowerCase() ] || ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); } if ( value !== undefined ) { if ( value === null ) { jQuery.removeAttr( elem, name ); return; } if ( hooks && "set" in hooks && ( ret = hooks.set( elem, value, name ) ) !== undefined ) { return ret; } elem.setAttribute( name, value + "" ); return value; } if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { return ret; } ret = jQuery.find.attr( elem, name ); // Non-existent attributes return null, we normalize to undefined return ret == null ? undefined : ret; }, attrHooks: { type: { set: function( elem, value ) { if ( !support.radioValue && value === "radio" && nodeName( elem, "input" ) ) { var val = elem.value; elem.setAttribute( "type", value ); if ( val ) { elem.value = val; } return value; } } } }, removeAttr: function( elem, value ) { var name, i = 0, // Attribute names can contain non-HTML whitespace characters // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 attrNames = value && value.match( rnothtmlwhite ); if ( attrNames && elem.nodeType === 1 ) { while ( ( name = attrNames[ i++ ] ) ) { elem.removeAttribute( name ); } } } } ); // Hooks for boolean attributes boolHook = { set: function( elem, value, name ) { if ( value === false ) { // Remove boolean attributes when set to false jQuery.removeAttr( elem, name ); } else { elem.setAttribute( name, name ); } return name; } }; jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( i, name ) { var getter = attrHandle[ name ] || jQuery.find.attr; attrHandle[ name ] = function( elem, name, isXML ) { var ret, handle, lowercaseName = name.toLowerCase(); if ( !isXML ) { // Avoid an infinite loop by temporarily removing this function from the getter handle = attrHandle[ lowercaseName ]; attrHandle[ lowercaseName ] = ret; ret = getter( elem, name, isXML ) != null ? lowercaseName : null; attrHandle[ lowercaseName ] = handle; } return ret; }; } ); var rfocusable = /^(?:input|select|textarea|button)$/i, rclickable = /^(?:a|area)$/i; jQuery.fn.extend( { prop: function( name, value ) { return access( this, jQuery.prop, name, value, arguments.length > 1 ); }, removeProp: function( name ) { return this.each( function() { delete this[ jQuery.propFix[ name ] || name ]; } ); } } ); jQuery.extend( { prop: function( elem, name, value ) { var ret, hooks, nType = elem.nodeType; // Don't get/set properties on text, comment and attribute nodes if ( nType === 3 || nType === 8 || nType === 2 ) { return; } if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { // Fix name and attach hooks name = jQuery.propFix[ name ] || name; hooks = jQuery.propHooks[ name ]; } if ( value !== undefined ) { if ( hooks && "set" in hooks && ( ret = hooks.set( elem, value, name ) ) !== undefined ) { return ret; } return ( elem[ name ] = value ); } if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { return ret; } return elem[ name ]; }, propHooks: { tabIndex: { get: function( elem ) { // Support: IE <=9 - 11 only // elem.tabIndex doesn't always return the // correct value when it hasn't been explicitly set // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ // Use proper attribute retrieval(#12072) var tabindex = jQuery.find.attr( elem, "tabindex" ); if ( tabindex ) { return parseInt( tabindex, 10 ); } if ( rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ) { return 0; } return -1; } } }, propFix: { "for": "htmlFor", "class": "className" } } ); // Support: IE <=11 only // Accessing the selectedIndex property // forces the browser to respect setting selected // on the option // The getter ensures a default option is selected // when in an optgroup // eslint rule "no-unused-expressions" is disabled for this code // since it considers such accessions noop if ( !support.optSelected ) { jQuery.propHooks.selected = { get: function( elem ) { /* eslint no-unused-expressions: "off" */ var parent = elem.parentNode; if ( parent && parent.parentNode ) { parent.parentNode.selectedIndex; } return null; }, set: function( elem ) { /* eslint no-unused-expressions: "off" */ var parent = elem.parentNode; if ( parent ) { parent.selectedIndex; if ( parent.parentNode ) { parent.parentNode.selectedIndex; } } } }; } jQuery.each( [ "tabIndex", "readOnly", "maxLength", "cellSpacing", "cellPadding", "rowSpan", "colSpan", "useMap", "frameBorder", "contentEditable" ], function() { jQuery.propFix[ this.toLowerCase() ] = this; } ); // Strip and collapse whitespace according to HTML spec // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace function stripAndCollapse( value ) { var tokens = value.match( rnothtmlwhite ) || []; return tokens.join( " " ); } function getClass( elem ) { return elem.getAttribute && elem.getAttribute( "class" ) || ""; } function classesToArray( value ) { if ( Array.isArray( value ) ) { return value; } if ( typeof value === "string" ) { return value.match( rnothtmlwhite ) || []; } return []; } jQuery.fn.extend( { addClass: function( value ) { var classes, elem, cur, curValue, clazz, j, finalValue, i = 0; if ( isFunction( value ) ) { return this.each( function( j ) { jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); } ); } classes = classesToArray( value ); if ( classes.length ) { while ( ( elem = this[ i++ ] ) ) { curValue = getClass( elem ); cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); if ( cur ) { j = 0; while ( ( clazz = classes[ j++ ] ) ) { if ( cur.indexOf( " " + clazz + " " ) < 0 ) { cur += clazz + " "; } } // Only assign if different to avoid unneeded rendering. finalValue = stripAndCollapse( cur ); if ( curValue !== finalValue ) { elem.setAttribute( "class", finalValue ); } } } } return this; }, removeClass: function( value ) { var classes, elem, cur, curValue, clazz, j, finalValue, i = 0; if ( isFunction( value ) ) { return this.each( function( j ) { jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); } ); } if ( !arguments.length ) { return this.attr( "class", "" ); } classes = classesToArray( value ); if ( classes.length ) { while ( ( elem = this[ i++ ] ) ) { curValue = getClass( elem ); // This expression is here for better compressibility (see addClass) cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); if ( cur ) { j = 0; while ( ( clazz = classes[ j++ ] ) ) { // Remove *all* instances while ( cur.indexOf( " " + clazz + " " ) > -1 ) { cur = cur.replace( " " + clazz + " ", " " ); } } // Only assign if different to avoid unneeded rendering. finalValue = stripAndCollapse( cur ); if ( curValue !== finalValue ) { elem.setAttribute( "class", finalValue ); } } } } return this; }, toggleClass: function( value, stateVal ) { var type = typeof value, isValidValue = type === "string" || Array.isArray( value ); if ( typeof stateVal === "boolean" && isValidValue ) { return stateVal ? this.addClass( value ) : this.removeClass( value ); } if ( isFunction( value ) ) { return this.each( function( i ) { jQuery( this ).toggleClass( value.call( this, i, getClass( this ), stateVal ), stateVal ); } ); } return this.each( function() { var className, i, self, classNames; if ( isValidValue ) { // Toggle individual class names i = 0; self = jQuery( this ); classNames = classesToArray( value ); while ( ( className = classNames[ i++ ] ) ) { // Check each className given, space separated list if ( self.hasClass( className ) ) { self.removeClass( className ); } else { self.addClass( className ); } } // Toggle whole class name } else if ( value === undefined || type === "boolean" ) { className = getClass( this ); if ( className ) { // Store className if set dataPriv.set( this, "__className__", className ); } // If the element has a class name or if we're passed `false`, // then remove the whole classname (if there was one, the above saved it). // Otherwise bring back whatever was previously saved (if anything), // falling back to the empty string if nothing was stored. if ( this.setAttribute ) { this.setAttribute( "class", className || value === false ? "" : dataPriv.get( this, "__className__" ) || "" ); } } } ); }, hasClass: function( selector ) { var className, elem, i = 0; className = " " + selector + " "; while ( ( elem = this[ i++ ] ) ) { if ( elem.nodeType === 1 && ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { return true; } } return false; } } ); var rreturn = /\r/g; jQuery.fn.extend( { val: function( value ) { var hooks, ret, valueIsFunction, elem = this[ 0 ]; if ( !arguments.length ) { if ( elem ) { hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; if ( hooks && "get" in hooks && ( ret = hooks.get( elem, "value" ) ) !== undefined ) { return ret; } ret = elem.value; // Handle most common string cases if ( typeof ret === "string" ) { return ret.replace( rreturn, "" ); } // Handle cases where value is null/undef or number return ret == null ? "" : ret; } return; } valueIsFunction = isFunction( value ); return this.each( function( i ) { var val; if ( this.nodeType !== 1 ) { return; } if ( valueIsFunction ) { val = value.call( this, i, jQuery( this ).val() ); } else { val = value; } // Treat null/undefined as ""; convert numbers to string if ( val == null ) { val = ""; } else if ( typeof val === "number" ) { val += ""; } else if ( Array.isArray( val ) ) { val = jQuery.map( val, function( value ) { return value == null ? "" : value + ""; } ); } hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; // If set returns undefined, fall back to normal setting if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { this.value = val; } } ); } } ); jQuery.extend( { valHooks: { option: { get: function( elem ) { var val = jQuery.find.attr( elem, "value" ); return val != null ? val : // Support: IE <=10 - 11 only // option.text throws exceptions (#14686, #14858) // Strip and collapse whitespace // https://html.spec.whatwg.org/#strip-and-collapse-whitespace stripAndCollapse( jQuery.text( elem ) ); } }, select: { get: function( elem ) { var value, option, i, options = elem.options, index = elem.selectedIndex, one = elem.type === "select-one", values = one ? null : [], max = one ? index + 1 : options.length; if ( index < 0 ) { i = max; } else { i = one ? index : 0; } // Loop through all the selected options for ( ; i < max; i++ ) { option = options[ i ]; // Support: IE <=9 only // IE8-9 doesn't update selected after form reset (#2551) if ( ( option.selected || i === index ) && // Don't return options that are disabled or in a disabled optgroup !option.disabled && ( !option.parentNode.disabled || !nodeName( option.parentNode, "optgroup" ) ) ) { // Get the specific value for the option value = jQuery( option ).val(); // We don't need an array for one selects if ( one ) { return value; } // Multi-Selects return an array values.push( value ); } } return values; }, set: function( elem, value ) { var optionSet, option, options = elem.options, values = jQuery.makeArray( value ), i = options.length; while ( i-- ) { option = options[ i ]; /* eslint-disable no-cond-assign */ if ( option.selected = jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 ) { optionSet = true; } /* eslint-enable no-cond-assign */ } // Force browsers to behave consistently when non-matching value is set if ( !optionSet ) { elem.selectedIndex = -1; } return values; } } } } ); // Radios and checkboxes getter/setter jQuery.each( [ "radio", "checkbox" ], function() { jQuery.valHooks[ this ] = { set: function( elem, value ) { if ( Array.isArray( value ) ) { return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); } } }; if ( !support.checkOn ) { jQuery.valHooks[ this ].get = function( elem ) { return elem.getAttribute( "value" ) === null ? "on" : elem.value; }; } } ); // Return jQuery for attributes-only inclusion support.focusin = "onfocusin" in window; var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, stopPropagationCallback = function( e ) { e.stopPropagation(); }; jQuery.extend( jQuery.event, { trigger: function( event, data, elem, onlyHandlers ) { var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, eventPath = [ elem || document ], type = hasOwn.call( event, "type" ) ? event.type : event, namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; cur = lastElement = tmp = elem = elem || document; // Don't do events on text and comment nodes if ( elem.nodeType === 3 || elem.nodeType === 8 ) { return; } // focus/blur morphs to focusin/out; ensure we're not firing them right now if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { return; } if ( type.indexOf( "." ) > -1 ) { // Namespaced trigger; create a regexp to match event type in handle() namespaces = type.split( "." ); type = namespaces.shift(); namespaces.sort(); } ontype = type.indexOf( ":" ) < 0 && "on" + type; // Caller can pass in a jQuery.Event object, Object, or just an event type string event = event[ jQuery.expando ] ? event : new jQuery.Event( type, typeof event === "object" && event ); // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) event.isTrigger = onlyHandlers ? 2 : 3; event.namespace = namespaces.join( "." ); event.rnamespace = event.namespace ? new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : null; // Clean up the event in case it is being reused event.result = undefined; if ( !event.target ) { event.target = elem; } // Clone any incoming data and prepend the event, creating the handler arg list data = data == null ? [ event ] : jQuery.makeArray( data, [ event ] ); // Allow special events to draw outside the lines special = jQuery.event.special[ type ] || {}; if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { return; } // Determine event propagation path in advance, per W3C events spec (#9951) // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { bubbleType = special.delegateType || type; if ( !rfocusMorph.test( bubbleType + type ) ) { cur = cur.parentNode; } for ( ; cur; cur = cur.parentNode ) { eventPath.push( cur ); tmp = cur; } // Only add window if we got to document (e.g., not plain obj or detached DOM) if ( tmp === ( elem.ownerDocument || document ) ) { eventPath.push( tmp.defaultView || tmp.parentWindow || window ); } } // Fire handlers on the event path i = 0; while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { lastElement = cur; event.type = i > 1 ? bubbleType : special.bindType || type; // jQuery handler handle = ( dataPriv.get( cur, "events" ) || {} )[ event.type ] && dataPriv.get( cur, "handle" ); if ( handle ) { handle.apply( cur, data ); } // Native handler handle = ontype && cur[ ontype ]; if ( handle && handle.apply && acceptData( cur ) ) { event.result = handle.apply( cur, data ); if ( event.result === false ) { event.preventDefault(); } } } event.type = type; // If nobody prevented the default action, do it now if ( !onlyHandlers && !event.isDefaultPrevented() ) { if ( ( !special._default || special._default.apply( eventPath.pop(), data ) === false ) && acceptData( elem ) ) { // Call a native DOM method on the target with the same name as the event. // Don't do default actions on window, that's where global variables be (#6170) if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { // Don't re-trigger an onFOO event when we call its FOO() method tmp = elem[ ontype ]; if ( tmp ) { elem[ ontype ] = null; } // Prevent re-triggering of the same event, since we already bubbled it above jQuery.event.triggered = type; if ( event.isPropagationStopped() ) { lastElement.addEventListener( type, stopPropagationCallback ); } elem[ type ](); if ( event.isPropagationStopped() ) { lastElement.removeEventListener( type, stopPropagationCallback ); } jQuery.event.triggered = undefined; if ( tmp ) { elem[ ontype ] = tmp; } } } } return event.result; }, // Piggyback on a donor event to simulate a different one // Used only for `focus(in | out)` events simulate: function( type, elem, event ) { var e = jQuery.extend( new jQuery.Event(), event, { type: type, isSimulated: true } ); jQuery.event.trigger( e, null, elem ); } } ); jQuery.fn.extend( { trigger: function( type, data ) { return this.each( function() { jQuery.event.trigger( type, data, this ); } ); }, triggerHandler: function( type, data ) { var elem = this[ 0 ]; if ( elem ) { return jQuery.event.trigger( type, data, elem, true ); } } } ); // Support: Firefox <=44 // Firefox doesn't have focus(in | out) events // Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 // // Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 // focus(in | out) events fire after focus & blur events, // which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order // Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 if ( !support.focusin ) { jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { // Attach a single capturing handler on the document while someone wants focusin/focusout var handler = function( event ) { jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); }; jQuery.event.special[ fix ] = { setup: function() { var doc = this.ownerDocument || this, attaches = dataPriv.access( doc, fix ); if ( !attaches ) { doc.addEventListener( orig, handler, true ); } dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); }, teardown: function() { var doc = this.ownerDocument || this, attaches = dataPriv.access( doc, fix ) - 1; if ( !attaches ) { doc.removeEventListener( orig, handler, true ); dataPriv.remove( doc, fix ); } else { dataPriv.access( doc, fix, attaches ); } } }; } ); } var location = window.location; var nonce = Date.now(); var rquery = ( /\?/ ); // Cross-browser xml parsing jQuery.parseXML = function( data ) { var xml; if ( !data || typeof data !== "string" ) { return null; } // Support: IE 9 - 11 only // IE throws on parseFromString with invalid input. try { xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); } catch ( e ) { xml = undefined; } if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { jQuery.error( "Invalid XML: " + data ); } return xml; }; var rbracket = /\[\]$/, rCRLF = /\r?\n/g, rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, rsubmittable = /^(?:input|select|textarea|keygen)/i; function buildParams( prefix, obj, traditional, add ) { var name; if ( Array.isArray( obj ) ) { // Serialize array item. jQuery.each( obj, function( i, v ) { if ( traditional || rbracket.test( prefix ) ) { // Treat each array item as a scalar. add( prefix, v ); } else { // Item is non-scalar (array or object), encode its numeric index. buildParams( prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", v, traditional, add ); } } ); } else if ( !traditional && toType( obj ) === "object" ) { // Serialize object item. for ( name in obj ) { buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); } } else { // Serialize scalar item. add( prefix, obj ); } } // Serialize an array of form elements or a set of // key/values into a query string jQuery.param = function( a, traditional ) { var prefix, s = [], add = function( key, valueOrFunction ) { // If value is a function, invoke it and use its return value var value = isFunction( valueOrFunction ) ? valueOrFunction() : valueOrFunction; s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value == null ? "" : value ); }; if ( a == null ) { return ""; } // If an array was passed in, assume that it is an array of form elements. if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { // Serialize the form elements jQuery.each( a, function() { add( this.name, this.value ); } ); } else { // If traditional, encode the "old" way (the way 1.3.2 or older // did it), otherwise encode params recursively. for ( prefix in a ) { buildParams( prefix, a[ prefix ], traditional, add ); } } // Return the resulting serialization return s.join( "&" ); }; jQuery.fn.extend( { serialize: function() { return jQuery.param( this.serializeArray() ); }, serializeArray: function() { return this.map( function() { // Can add propHook for "elements" to filter or add form elements var elements = jQuery.prop( this, "elements" ); return elements ? jQuery.makeArray( elements ) : this; } ) .filter( function() { var type = this.type; // Use .is( ":disabled" ) so that fieldset[disabled] works return this.name && !jQuery( this ).is( ":disabled" ) && rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && ( this.checked || !rcheckableType.test( type ) ); } ) .map( function( i, elem ) { var val = jQuery( this ).val(); if ( val == null ) { return null; } if ( Array.isArray( val ) ) { return jQuery.map( val, function( val ) { return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; } ); } return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; } ).get(); } } ); var r20 = /%20/g, rhash = /#.*$/, rantiCache = /([?&])_=[^&]*/, rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, // #7653, #8125, #8152: local protocol detection rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, rnoContent = /^(?:GET|HEAD)$/, rprotocol = /^\/\//, /* Prefilters * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) * 2) These are called: * - BEFORE asking for a transport * - AFTER param serialization (s.data is a string if s.processData is true) * 3) key is the dataType * 4) the catchall symbol "*" can be used * 5) execution will start with transport dataType and THEN continue down to "*" if needed */ prefilters = {}, /* Transports bindings * 1) key is the dataType * 2) the catchall symbol "*" can be used * 3) selection will start with transport dataType and THEN go to "*" if needed */ transports = {}, // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression allTypes = "*/".concat( "*" ), // Anchor tag for parsing the document origin originAnchor = document.createElement( "a" ); originAnchor.href = location.href; // Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport function addToPrefiltersOrTransports( structure ) { // dataTypeExpression is optional and defaults to "*" return function( dataTypeExpression, func ) { if ( typeof dataTypeExpression !== "string" ) { func = dataTypeExpression; dataTypeExpression = "*"; } var dataType, i = 0, dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; if ( isFunction( func ) ) { // For each dataType in the dataTypeExpression while ( ( dataType = dataTypes[ i++ ] ) ) { // Prepend if requested if ( dataType[ 0 ] === "+" ) { dataType = dataType.slice( 1 ) || "*"; ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); // Otherwise append } else { ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); } } } }; } // Base inspection function for prefilters and transports function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { var inspected = {}, seekingTransport = ( structure === transports ); function inspect( dataType ) { var selected; inspected[ dataType ] = true; jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); if ( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) { options.dataTypes.unshift( dataTypeOrTransport ); inspect( dataTypeOrTransport ); return false; } else if ( seekingTransport ) { return !( selected = dataTypeOrTransport ); } } ); return selected; } return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); } // A special extend for ajax options // that takes "flat" options (not to be deep extended) // Fixes #9887 function ajaxExtend( target, src ) { var key, deep, flatOptions = jQuery.ajaxSettings.flatOptions || {}; for ( key in src ) { if ( src[ key ] !== undefined ) { ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; } } if ( deep ) { jQuery.extend( true, target, deep ); } return target; } /* Handles responses to an ajax request: * - finds the right dataType (mediates between content-type and expected dataType) * - returns the corresponding response */ function ajaxHandleResponses( s, jqXHR, responses ) { var ct, type, finalDataType, firstDataType, contents = s.contents, dataTypes = s.dataTypes; // Remove auto dataType and get content-type in the process while ( dataTypes[ 0 ] === "*" ) { dataTypes.shift(); if ( ct === undefined ) { ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); } } // Check if we're dealing with a known content-type if ( ct ) { for ( type in contents ) { if ( contents[ type ] && contents[ type ].test( ct ) ) { dataTypes.unshift( type ); break; } } } // Check to see if we have a response for the expected dataType if ( dataTypes[ 0 ] in responses ) { finalDataType = dataTypes[ 0 ]; } else { // Try convertible dataTypes for ( type in responses ) { if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { finalDataType = type; break; } if ( !firstDataType ) { firstDataType = type; } } // Or just use first one finalDataType = finalDataType || firstDataType; } // If we found a dataType // We add the dataType to the list if needed // and return the corresponding response if ( finalDataType ) { if ( finalDataType !== dataTypes[ 0 ] ) { dataTypes.unshift( finalDataType ); } return responses[ finalDataType ]; } } /* Chain conversions given the request and the original response * Also sets the responseXXX fields on the jqXHR instance */ function ajaxConvert( s, response, jqXHR, isSuccess ) { var conv2, current, conv, tmp, prev, converters = {}, // Work with a copy of dataTypes in case we need to modify it for conversion dataTypes = s.dataTypes.slice(); // Create converters map with lowercased keys if ( dataTypes[ 1 ] ) { for ( conv in s.converters ) { converters[ conv.toLowerCase() ] = s.converters[ conv ]; } } current = dataTypes.shift(); // Convert to each sequential dataType while ( current ) { if ( s.responseFields[ current ] ) { jqXHR[ s.responseFields[ current ] ] = response; } // Apply the dataFilter if provided if ( !prev && isSuccess && s.dataFilter ) { response = s.dataFilter( response, s.dataType ); } prev = current; current = dataTypes.shift(); if ( current ) { // There's only work to do if current dataType is non-auto if ( current === "*" ) { current = prev; // Convert response if prev dataType is non-auto and differs from current } else if ( prev !== "*" && prev !== current ) { // Seek a direct converter conv = converters[ prev + " " + current ] || converters[ "* " + current ]; // If none found, seek a pair if ( !conv ) { for ( conv2 in converters ) { // If conv2 outputs current tmp = conv2.split( " " ); if ( tmp[ 1 ] === current ) { // If prev can be converted to accepted input conv = converters[ prev + " " + tmp[ 0 ] ] || converters[ "* " + tmp[ 0 ] ]; if ( conv ) { // Condense equivalence converters if ( conv === true ) { conv = converters[ conv2 ]; // Otherwise, insert the intermediate dataType } else if ( converters[ conv2 ] !== true ) { current = tmp[ 0 ]; dataTypes.unshift( tmp[ 1 ] ); } break; } } } } // Apply converter (if not an equivalence) if ( conv !== true ) { // Unless errors are allowed to bubble, catch and return them if ( conv && s.throws ) { response = conv( response ); } else { try { response = conv( response ); } catch ( e ) { return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current }; } } } } } } return { state: "success", data: response }; } jQuery.extend( { // Counter for holding the number of active queries active: 0, // Last-Modified header cache for next request lastModified: {}, etag: {}, ajaxSettings: { url: location.href, type: "GET", isLocal: rlocalProtocol.test( location.protocol ), global: true, processData: true, async: true, contentType: "application/x-www-form-urlencoded; charset=UTF-8", /* timeout: 0, data: null, dataType: null, username: null, password: null, cache: null, throws: false, traditional: false, headers: {}, */ accepts: { "*": allTypes, text: "text/plain", html: "text/html", xml: "application/xml, text/xml", json: "application/json, text/javascript" }, contents: { xml: /\bxml\b/, html: /\bhtml/, json: /\bjson\b/ }, responseFields: { xml: "responseXML", text: "responseText", json: "responseJSON" }, // Data converters // Keys separate source (or catchall "*") and destination types with a single space converters: { // Convert anything to text "* text": String, // Text to html (true = no transformation) "text html": true, // Evaluate text as a json expression "text json": JSON.parse, // Parse text as xml "text xml": jQuery.parseXML }, // For options that shouldn't be deep extended: // you can add your own custom options here if // and when you create one that shouldn't be // deep extended (see ajaxExtend) flatOptions: { url: true, context: true } }, // Creates a full fledged settings object into target // with both ajaxSettings and settings fields. // If target is omitted, writes into ajaxSettings. ajaxSetup: function( target, settings ) { return settings ? // Building a settings object ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : // Extending ajaxSettings ajaxExtend( jQuery.ajaxSettings, target ); }, ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), ajaxTransport: addToPrefiltersOrTransports( transports ), // Main method ajax: function( url, options ) { // If url is an object, simulate pre-1.5 signature if ( typeof url === "object" ) { options = url; url = undefined; } // Force options to be an object options = options || {}; var transport, // URL without anti-cache param cacheURL, // Response headers responseHeadersString, responseHeaders, // timeout handle timeoutTimer, // Url cleanup var urlAnchor, // Request state (becomes false upon send and true upon completion) completed, // To know if global events are to be dispatched fireGlobals, // Loop variable i, // uncached part of the url uncached, // Create the final options object s = jQuery.ajaxSetup( {}, options ), // Callbacks context callbackContext = s.context || s, // Context for global events is callbackContext if it is a DOM node or jQuery collection globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ? jQuery( callbackContext ) : jQuery.event, // Deferreds deferred = jQuery.Deferred(), completeDeferred = jQuery.Callbacks( "once memory" ), // Status-dependent callbacks statusCode = s.statusCode || {}, // Headers (they are sent all at once) requestHeaders = {}, requestHeadersNames = {}, // Default abort message strAbort = "canceled", // Fake xhr jqXHR = { readyState: 0, // Builds headers hashtable if needed getResponseHeader: function( key ) { var match; if ( completed ) { if ( !responseHeaders ) { responseHeaders = {}; while ( ( match = rheaders.exec( responseHeadersString ) ) ) { responseHeaders[ match[ 1 ].toLowerCase() + " " ] = ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) .concat( match[ 2 ] ); } } match = responseHeaders[ key.toLowerCase() + " " ]; } return match == null ? null : match.join( ", " ); }, // Raw string getAllResponseHeaders: function() { return completed ? responseHeadersString : null; }, // Caches the header setRequestHeader: function( name, value ) { if ( completed == null ) { name = requestHeadersNames[ name.toLowerCase() ] = requestHeadersNames[ name.toLowerCase() ] || name; requestHeaders[ name ] = value; } return this; }, // Overrides response content-type header overrideMimeType: function( type ) { if ( completed == null ) { s.mimeType = type; } return this; }, // Status-dependent callbacks statusCode: function( map ) { var code; if ( map ) { if ( completed ) { // Execute the appropriate callbacks jqXHR.always( map[ jqXHR.status ] ); } else { // Lazy-add the new callbacks in a way that preserves old ones for ( code in map ) { statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; } } } return this; }, // Cancel the request abort: function( statusText ) { var finalText = statusText || strAbort; if ( transport ) { transport.abort( finalText ); } done( 0, finalText ); return this; } }; // Attach deferreds deferred.promise( jqXHR ); // Add protocol if not provided (prefilters might expect it) // Handle falsy url in the settings object (#10093: consistency with old signature) // We also use the url parameter if available s.url = ( ( url || s.url || location.href ) + "" ) .replace( rprotocol, location.protocol + "//" ); // Alias method option to type as per ticket #12004 s.type = options.method || options.type || s.method || s.type; // Extract dataTypes list s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; // A cross-domain request is in order when the origin doesn't match the current origin. if ( s.crossDomain == null ) { urlAnchor = document.createElement( "a" ); // Support: IE <=8 - 11, Edge 12 - 15 // IE throws exception on accessing the href property if url is malformed, // e.g. http://example.com:80x/ try { urlAnchor.href = s.url; // Support: IE <=8 - 11 only // Anchor's host property isn't correctly set when s.url is relative urlAnchor.href = urlAnchor.href; s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== urlAnchor.protocol + "//" + urlAnchor.host; } catch ( e ) { // If there is an error parsing the URL, assume it is crossDomain, // it can be rejected by the transport if it is invalid s.crossDomain = true; } } // Convert data if not already a string if ( s.data && s.processData && typeof s.data !== "string" ) { s.data = jQuery.param( s.data, s.traditional ); } // Apply prefilters inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); // If request was aborted inside a prefilter, stop there if ( completed ) { return jqXHR; } // We can fire global events as of now if asked to // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) fireGlobals = jQuery.event && s.global; // Watch for a new set of requests if ( fireGlobals && jQuery.active++ === 0 ) { jQuery.event.trigger( "ajaxStart" ); } // Uppercase the type s.type = s.type.toUpperCase(); // Determine if request has content s.hasContent = !rnoContent.test( s.type ); // Save the URL in case we're toying with the If-Modified-Since // and/or If-None-Match header later on // Remove hash to simplify url manipulation cacheURL = s.url.replace( rhash, "" ); // More options handling for requests with no content if ( !s.hasContent ) { // Remember the hash so we can put it back uncached = s.url.slice( cacheURL.length ); // If data is available and should be processed, append data to url if ( s.data && ( s.processData || typeof s.data === "string" ) ) { cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; // #9682: remove data so that it's not used in an eventual retry delete s.data; } // Add or update anti-cache param if needed if ( s.cache === false ) { cacheURL = cacheURL.replace( rantiCache, "$1" ); uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce++ ) + uncached; } // Put hash and anti-cache on the URL that will be requested (gh-1732) s.url = cacheURL + uncached; // Change '%20' to '+' if this is encoded form body content (gh-2658) } else if ( s.data && s.processData && ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { s.data = s.data.replace( r20, "+" ); } // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. if ( s.ifModified ) { if ( jQuery.lastModified[ cacheURL ] ) { jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); } if ( jQuery.etag[ cacheURL ] ) { jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); } } // Set the correct header, if data is being sent if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { jqXHR.setRequestHeader( "Content-Type", s.contentType ); } // Set the Accepts header for the server, depending on the dataType jqXHR.setRequestHeader( "Accept", s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? s.accepts[ s.dataTypes[ 0 ] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : s.accepts[ "*" ] ); // Check for headers option for ( i in s.headers ) { jqXHR.setRequestHeader( i, s.headers[ i ] ); } // Allow custom headers/mimetypes and early abort if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { // Abort if not done already and return return jqXHR.abort(); } // Aborting is no longer a cancellation strAbort = "abort"; // Install callbacks on deferreds completeDeferred.add( s.complete ); jqXHR.done( s.success ); jqXHR.fail( s.error ); // Get transport transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); // If no transport, we auto-abort if ( !transport ) { done( -1, "No Transport" ); } else { jqXHR.readyState = 1; // Send global event if ( fireGlobals ) { globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); } // If request was aborted inside ajaxSend, stop there if ( completed ) { return jqXHR; } // Timeout if ( s.async && s.timeout > 0 ) { timeoutTimer = window.setTimeout( function() { jqXHR.abort( "timeout" ); }, s.timeout ); } try { completed = false; transport.send( requestHeaders, done ); } catch ( e ) { // Rethrow post-completion exceptions if ( completed ) { throw e; } // Propagate others as results done( -1, e ); } } // Callback for when everything is done function done( status, nativeStatusText, responses, headers ) { var isSuccess, success, error, response, modified, statusText = nativeStatusText; // Ignore repeat invocations if ( completed ) { return; } completed = true; // Clear timeout if it exists if ( timeoutTimer ) { window.clearTimeout( timeoutTimer ); } // Dereference transport for early garbage collection // (no matter how long the jqXHR object will be used) transport = undefined; // Cache response headers responseHeadersString = headers || ""; // Set readyState jqXHR.readyState = status > 0 ? 4 : 0; // Determine if successful isSuccess = status >= 200 && status < 300 || status === 304; // Get response data if ( responses ) { response = ajaxHandleResponses( s, jqXHR, responses ); } // Convert no matter what (that way responseXXX fields are always set) response = ajaxConvert( s, response, jqXHR, isSuccess ); // If successful, handle type chaining if ( isSuccess ) { // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. if ( s.ifModified ) { modified = jqXHR.getResponseHeader( "Last-Modified" ); if ( modified ) { jQuery.lastModified[ cacheURL ] = modified; } modified = jqXHR.getResponseHeader( "etag" ); if ( modified ) { jQuery.etag[ cacheURL ] = modified; } } // if no content if ( status === 204 || s.type === "HEAD" ) { statusText = "nocontent"; // if not modified } else if ( status === 304 ) { statusText = "notmodified"; // If we have data, let's convert it } else { statusText = response.state; success = response.data; error = response.error; isSuccess = !error; } } else { // Extract error from statusText and normalize for non-aborts error = statusText; if ( status || !statusText ) { statusText = "error"; if ( status < 0 ) { status = 0; } } } // Set data for the fake xhr object jqXHR.status = status; jqXHR.statusText = ( nativeStatusText || statusText ) + ""; // Success/Error if ( isSuccess ) { deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); } else { deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); } // Status-dependent callbacks jqXHR.statusCode( statusCode ); statusCode = undefined; if ( fireGlobals ) { globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", [ jqXHR, s, isSuccess ? success : error ] ); } // Complete completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); if ( fireGlobals ) { globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); // Handle the global AJAX counter if ( !( --jQuery.active ) ) { jQuery.event.trigger( "ajaxStop" ); } } } return jqXHR; }, getJSON: function( url, data, callback ) { return jQuery.get( url, data, callback, "json" ); }, getScript: function( url, callback ) { return jQuery.get( url, undefined, callback, "script" ); } } ); jQuery.each( [ "get", "post" ], function( i, method ) { jQuery[ method ] = function( url, data, callback, type ) { // Shift arguments if data argument was omitted if ( isFunction( data ) ) { type = type || callback; callback = data; data = undefined; } // The url can be an options object (which then must have .url) return jQuery.ajax( jQuery.extend( { url: url, type: method, dataType: type, data: data, success: callback }, jQuery.isPlainObject( url ) && url ) ); }; } ); jQuery._evalUrl = function( url, options ) { return jQuery.ajax( { url: url, // Make this explicit, since user can override this through ajaxSetup (#11264) type: "GET", dataType: "script", cache: true, async: false, global: false, // Only evaluate the response if it is successful (gh-4126) // dataFilter is not invoked for failure responses, so using it instead // of the default converter is kludgy but it works. converters: { "text script": function() {} }, dataFilter: function( response ) { jQuery.globalEval( response, options ); } } ); }; jQuery.fn.extend( { wrapAll: function( html ) { var wrap; if ( this[ 0 ] ) { if ( isFunction( html ) ) { html = html.call( this[ 0 ] ); } // The elements to wrap the target around wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); if ( this[ 0 ].parentNode ) { wrap.insertBefore( this[ 0 ] ); } wrap.map( function() { var elem = this; while ( elem.firstElementChild ) { elem = elem.firstElementChild; } return elem; } ).append( this ); } return this; }, wrapInner: function( html ) { if ( isFunction( html ) ) { return this.each( function( i ) { jQuery( this ).wrapInner( html.call( this, i ) ); } ); } return this.each( function() { var self = jQuery( this ), contents = self.contents(); if ( contents.length ) { contents.wrapAll( html ); } else { self.append( html ); } } ); }, wrap: function( html ) { var htmlIsFunction = isFunction( html ); return this.each( function( i ) { jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); } ); }, unwrap: function( selector ) { this.parent( selector ).not( "body" ).each( function() { jQuery( this ).replaceWith( this.childNodes ); } ); return this; } } ); jQuery.expr.pseudos.hidden = function( elem ) { return !jQuery.expr.pseudos.visible( elem ); }; jQuery.expr.pseudos.visible = function( elem ) { return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); }; jQuery.ajaxSettings.xhr = function() { try { return new window.XMLHttpRequest(); } catch ( e ) {} }; var xhrSuccessStatus = { // File protocol always yields status code 0, assume 200 0: 200, // Support: IE <=9 only // #1450: sometimes IE returns 1223 when it should be 204 1223: 204 }, xhrSupported = jQuery.ajaxSettings.xhr(); support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); support.ajax = xhrSupported = !!xhrSupported; jQuery.ajaxTransport( function( options ) { var callback, errorCallback; // Cross domain only allowed if supported through XMLHttpRequest if ( support.cors || xhrSupported && !options.crossDomain ) { return { send: function( headers, complete ) { var i, xhr = options.xhr(); xhr.open( options.type, options.url, options.async, options.username, options.password ); // Apply custom fields if provided if ( options.xhrFields ) { for ( i in options.xhrFields ) { xhr[ i ] = options.xhrFields[ i ]; } } // Override mime type if needed if ( options.mimeType && xhr.overrideMimeType ) { xhr.overrideMimeType( options.mimeType ); } // X-Requested-With header // For cross-domain requests, seeing as conditions for a preflight are // akin to a jigsaw puzzle, we simply never set it to be sure. // (it can always be set on a per-request basis or even using ajaxSetup) // For same-domain requests, won't change header if already provided. if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { headers[ "X-Requested-With" ] = "XMLHttpRequest"; } // Set headers for ( i in headers ) { xhr.setRequestHeader( i, headers[ i ] ); } // Callback callback = function( type ) { return function() { if ( callback ) { callback = errorCallback = xhr.onload = xhr.onerror = xhr.onabort = xhr.ontimeout = xhr.onreadystatechange = null; if ( type === "abort" ) { xhr.abort(); } else if ( type === "error" ) { // Support: IE <=9 only // On a manual native abort, IE9 throws // errors on any property access that is not readyState if ( typeof xhr.status !== "number" ) { complete( 0, "error" ); } else { complete( // File: protocol always yields status 0; see #8605, #14207 xhr.status, xhr.statusText ); } } else { complete( xhrSuccessStatus[ xhr.status ] || xhr.status, xhr.statusText, // Support: IE <=9 only // IE9 has no XHR2 but throws on binary (trac-11426) // For XHR2 non-text, let the caller handle it (gh-2498) ( xhr.responseType || "text" ) !== "text" || typeof xhr.responseText !== "string" ? { binary: xhr.response } : { text: xhr.responseText }, xhr.getAllResponseHeaders() ); } } }; }; // Listen to events xhr.onload = callback(); errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); // Support: IE 9 only // Use onreadystatechange to replace onabort // to handle uncaught aborts if ( xhr.onabort !== undefined ) { xhr.onabort = errorCallback; } else { xhr.onreadystatechange = function() { // Check readyState before timeout as it changes if ( xhr.readyState === 4 ) { // Allow onerror to be called first, // but that will not handle a native abort // Also, save errorCallback to a variable // as xhr.onerror cannot be accessed window.setTimeout( function() { if ( callback ) { errorCallback(); } } ); } }; } // Create the abort callback callback = callback( "abort" ); try { // Do send the request (this may raise an exception) xhr.send( options.hasContent && options.data || null ); } catch ( e ) { // #14683: Only rethrow if this hasn't been notified as an error yet if ( callback ) { throw e; } } }, abort: function() { if ( callback ) { callback(); } } }; } } ); // Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) jQuery.ajaxPrefilter( function( s ) { if ( s.crossDomain ) { s.contents.script = false; } } ); // Install script dataType jQuery.ajaxSetup( { accepts: { script: "text/javascript, application/javascript, " + "application/ecmascript, application/x-ecmascript" }, contents: { script: /\b(?:java|ecma)script\b/ }, converters: { "text script": function( text ) { jQuery.globalEval( text ); return text; } } } ); // Handle cache's special case and crossDomain jQuery.ajaxPrefilter( "script", function( s ) { if ( s.cache === undefined ) { s.cache = false; } if ( s.crossDomain ) { s.type = "GET"; } } ); // Bind script tag hack transport jQuery.ajaxTransport( "script", function( s ) { // This transport only deals with cross domain or forced-by-attrs requests if ( s.crossDomain || s.scriptAttrs ) { var script, callback; return { send: function( _, complete ) { script = jQuery( " ================================================ FILE: docs/index.html ================================================ Welcome to k-means-constrained’s documentation! — k-means-constrained 0.5.1 documentation

Welcome to k-means-constrained’s documentation!

The GitHub project can be found here.

To install k-means-constrained using pip:

pip install k-means-constrained

API documentation:

class k_means_constrained.KMeansConstrained(n_clusters=8, size_min=None, size_max=None, init='k-means++', n_init=10, max_iter=300, tol=0.0001, verbose=False, random_state=None, copy_x=True, n_jobs=1)[source]

K-Means clustering with minimum and maximum cluster size constraints

Parameters
n_clustersint, optional, default: 8

The number of clusters to form as well as the number of centroids to generate.

size_minint, optional, default: None

Constrain the label assignment so that each cluster has a minimum size of size_min. If None, no constrains will be applied

size_maxint, optional, default: None

Constrain the label assignment so that each cluster has a maximum size of size_max. If None, no constrains will be applied

init{‘k-means++’, ‘random’ or an ndarray}

Method for initialization, defaults to ‘k-means++’:

‘k-means++’ : selects initial cluster centers for k-mean clustering in a smart way to speed up convergence. See section Notes in k_init for more details.

‘random’: choose k observations (rows) at random from data for the initial centroids.

If an ndarray is passed, it should be of shape (n_clusters, n_features) and gives the initial centers.

n_initint, default: 10

Number of times the k-means algorithm will be run with different centroid seeds. The final results will be the best output of n_init consecutive runs in terms of inertia.

max_iterint, default: 300

Maximum number of iterations of the k-means algorithm for a single run.

tolfloat, default: 1e-4

Relative tolerance with regards to Frobenius norm of the difference in the cluster centers of two consecutive iterations to declare convergence.

verboseint, default 0

Verbosity mode.

random_stateint, RandomState instance or None, optional, default: None

If int, random_state is the seed used by the random number generator; If RandomState instance, random_state is the random number generator; If None, the random number generator is the RandomState instance used by np.random.

copy_xboolean, default True

When pre-computing distances it is more numerically accurate to center the data first. If copy_x is True, then the original data is not modified. If False, the original data is modified, and put back before the function returns, but small numerical differences may be introduced by subtracting and then adding the data mean.

n_jobsint

The number of jobs to use for the computation. This works by computing each of the n_init runs in parallel.

If -1 all CPUs are used. If 1 is given, no parallel computing code is used at all, which is useful for debugging. For n_jobs below -1, (n_cpus + 1 + n_jobs) are used. Thus for n_jobs = -2, all CPUs but one are used.

Notes

K-means problem constrained with a minimum and/or maximum size for each cluster.

The constrained assignment is formulated as a Minimum Cost Flow (MCF) linear network optimisation problem. This is then solved using a cost-scaling push-relabel algorithm. The implementation used is

Google’s Operations Research tools’s SimpleMinCostFlow.

Ref: 1. Bradley, P. S., K. P. Bennett, and Ayhan Demiriz. “Constrained k-means clustering.”

Microsoft Research, Redmond (2000): 1-8.

  1. Google’s SimpleMinCostFlow implementation:

    https://github.com/google/or-tools/blob/master/ortools/graph/min_cost_flow.h

Examples

>>> from k_means_constrained import KMeansConstrained
>>> import numpy as np
>>> X = np.array([[1, 2], [1, 4], [1, 0],
...                [4, 2], [4, 4], [4, 0]])
>>> clf = KMeansConstrained(
...     n_clusters=2,
...     size_min=2,
...     size_max=5,
...     random_state=0
... )
>>> clf.fit_predict(X)
array([0, 0, 0, 1, 1, 1], dtype=int32)
>>> clf.cluster_centers_
array([[ 1.,  2.],
       [ 4.,  2.]])
>>> clf.labels_
array([0, 0, 0, 1, 1, 1], dtype=int32)
Attributes
cluster_centers_array, [n_clusters, n_features]

Coordinates of cluster centers

labels_ :

Labels of each point

inertia_float

Sum of squared distances of samples to their closest cluster center.

Methods

fit(X[, y])

Compute k-means clustering with given constants.

fit_predict(X[, y])

Compute cluster centers and predict cluster index for each sample.

fit_transform(X[, y])

Compute clustering and transform X to cluster-distance space.

get_params([deep])

Get parameters for this estimator.

predict(X[, size_min, size_max])

Predict the closest cluster each sample in X belongs to given the provided constraints.

score(X[, y])

Opposite of the value of X on the K-means objective.

set_params(**params)

Set the parameters of this estimator.

transform(X)

Transform X to a cluster-distance space.

fit(X, y=None)[source]

Compute k-means clustering with given constants.

Parameters
Xarray-like, shape=(n_samples, n_features)

Training instances to cluster.

yIgnored
predict(X, size_min='init', size_max='init')[source]

Predict the closest cluster each sample in X belongs to given the provided constraints. The constraints can be temporally overridden when determining which cluster each datapoint is assigned to.

Only computes the assignment step. It does not re-fit the cluster positions.

Parameters
Xarray-like, shape = [n_samples, n_features]

New data to predict.

size_minint, optional, default: size_min provided with initialisation

Constrain the label assignment so that each cluster has a minimum size of size_min. If None, no constrains will be applied. If ‘init’ the value provided during initialisation of the class will be used.

size_maxint, optional, default: size_max provided with initialisation

Constrain the label assignment so that each cluster has a maximum size of size_max. If None, no constrains will be applied. If ‘init’ the value provided during initialisation of the class will be used.

Returns
labelsarray, shape [n_samples,]

Index of the cluster each sample belongs to.

fit_predict(X, y=None)[source]

Compute cluster centers and predict cluster index for each sample.

Equivalent to calling fit(X) followed by predict(X) but also more efficient.

Parameters
X{array-like, sparse matrix}, shape = [n_samples, n_features]

New data to transform.

Returns
labelsarray, shape [n_samples,]

Index of the cluster each sample belongs to.

fit_transform(X, y=None)

Compute clustering and transform X to cluster-distance space.

Equivalent to fit(X).transform(X), but more efficiently implemented.

Parameters
X{array-like, sparse matrix}, shape = [n_samples, n_features]

New data to transform.

Returns
X_newarray, shape [n_samples, k]

X transformed in the new space.

get_params(deep=True)

Get parameters for this estimator.

Parameters
deepboolean, optional

If True, will return the parameters for this estimator and contained subobjects that are estimators.

Returns
paramsmapping of string to any

Parameter names mapped to their values.

score(X, y=None)

Opposite of the value of X on the K-means objective.

Parameters
X{array-like, sparse matrix}, shape = [n_samples, n_features]

New data.

Returns
scorefloat

Opposite of the value of X on the K-means objective.

set_params(**params)

Set the parameters of this estimator.

The method works on simple estimators as well as on nested objects (such as pipelines). The latter have parameters of the form <component>__<parameter> so that it’s possible to update each component of a nested object.

Returns
self
transform(X)

Transform X to a cluster-distance space.

In the new space, each dimension is the distance to the cluster centers. Note that even if X is sparse, the array returned by transform will typically be dense.

Parameters
X{array-like, sparse matrix}, shape = [n_samples, n_features]

New data to transform.

Returns
X_newarray, shape [n_samples, k]

X transformed in the new space.


© Copyright 2020, Josh Levy-Kramer. Documentation derived from Scikit-Learn.

Built with Sphinx using a theme provided by Read the Docs.
================================================ FILE: docs/modules.html ================================================ k_means_constrained — k-means-constrained 0.0.2 documentation

k_means_constrained

================================================ FILE: docs/objects.inv ================================================ # Sphinx inventory version 2 # Project: k-means-constrained # Version: # The remainder of this file is compressed using zlib. xڭKj0:Ŕt+n@ .*Mla=Fzkz=IeP6 - Gbڡ~ZNS^њM=ptU/Qz*9"xcnWG^0^-}@J;:`L ,-g6#Ip̊{WC+A7f]ԉcȾ)/jFz=t|*g?t袈ڻ;>䕺/ 応;e퇴gW EmiZr~/d_h ================================================ FILE: docs/py-modindex.html ================================================ Python Module Index — k-means-constrained 0.5.1 documentation
  • »
  • Python Module Index

Python Module Index

k
 
k
k_means_constrained

© Copyright 2020, Josh Levy-Kramer. Documentation derived from Scikit-Learn.

Built with Sphinx using a theme provided by Read the Docs.
================================================ FILE: docs/search.html ================================================ Search — k-means-constrained 0.5.1 documentation
  • »
  • Search


© Copyright 2020, Josh Levy-Kramer. Documentation derived from Scikit-Learn.

Built with Sphinx using a theme provided by Read the Docs.
================================================ FILE: docs/searchindex.js ================================================ Search.setIndex({docnames:["index"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.viewcode":1,sphinx:56},filenames:["index.rst"],objects:{"":{k_means_constrained:[0,0,0,"-"]},"k_means_constrained.KMeansConstrained":{fit:[0,2,1,""],fit_predict:[0,2,1,""],fit_transform:[0,2,1,""],get_params:[0,2,1,""],predict:[0,2,1,""],score:[0,2,1,""],set_params:[0,2,1,""],transform:[0,2,1,""]},k_means_constrained:{KMeansConstrained:[0,1,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","method","Python method"]},objtypes:{"0":"py:module","1":"py:class","2":"py:method"},terms:{"0":0,"0001":0,"1":0,"10":0,"1e":0,"2":0,"2000":0,"300":0,"4":0,"5":0,"8":0,"boolean":0,"class":0,"default":0,"final":0,"float":0,"function":0,"import":0,"int":0,"new":0,"return":0,"true":0,For:0,If:0,In:0,It:0,The:0,To:0,__:0,accur:0,ad:0,algorithm:0,all:0,also:0,an:0,ani:0,api:0,appli:0,ar:0,arrai:0,assign:0,attribut:0,ayhan:0,back:0,befor:0,belong:0,below:0,bennett:0,best:0,blob:0,bradlei:0,call:0,can:0,center:0,centroid:0,choos:0,clf:0,closest:0,cluster:0,cluster_centers_:0,code:0,com:0,compon:0,comput:0,consecut:0,constant:0,constraint:0,contain:0,converg:0,coordin:0,copy_x:0,cost:0,cpu:0,data:0,datapoint:0,debug:0,declar:0,deep:0,demiriz:0,dens:0,detail:0,determin:0,differ:0,dimens:0,distanc:0,doe:0,dtype:0,dure:0,each:0,effici:0,equival:0,estim:0,even:0,exampl:0,fals:0,first:0,fit:0,fit_predict:0,fit_transform:0,flow:0,follow:0,form:0,formul:0,found:0,frobeniu:0,from:0,gener:0,get:0,get_param:0,github:0,give:0,given:0,googl:0,graph:0,h:0,ha:0,have:0,here:0,http:0,ignor:0,implement:0,index:0,inertia:0,inertia_:0,init:0,initi:0,initialis:0,instal:0,instanc:0,int32:0,introduc:0,iter:0,job:0,k_init:0,k_means_constrain:0,kmeansconstrain:0,label:0,labels_:0,latter:0,like:0,linear:0,mai:0,map:0,master:0,matrix:0,max_it:0,maximum:0,mcf:0,method:0,microsoft:0,min_cost_flow:0,minimum:0,mode:0,modifi:0,more:0,n_cluster:0,n_cpu:0,n_featur:0,n_init:0,n_job:0,n_sampl:0,name:0,ndarrai:0,nest:0,network:0,none:0,norm:0,note:0,np:0,number:0,numer:0,numpi:0,object:0,observ:0,one:0,onli:0,oper:0,opposit:0,optimis:0,option:0,origin:0,ortool:0,output:0,overridden:0,p:0,parallel:0,param:0,paramet:0,pass:0,pip:0,pipelin:0,point:0,posit:0,possibl:0,pre:0,predict:0,problem:0,project:0,provid:0,push:0,put:0,random:0,random_st:0,randomst:0,re:0,redmond:0,ref:0,regard:0,rel:0,relabel:0,research:0,result:0,row:0,run:0,sampl:0,scale:0,score:0,section:0,see:0,seed:0,select:0,self:0,set:0,set_param:0,shape:0,should:0,simpl:0,simplemincostflow:0,singl:0,size:0,size_max:0,size_min:0,small:0,smart:0,so:0,solv:0,sourc:0,space:0,spars:0,speed:0,squar:0,step:0,string:0,subobject:0,subtract:0,sum:0,tempor:0,term:0,thi:0,thu:0,time:0,tol:0,toler:0,tool:0,train:0,transform:0,two:0,typic:0,up:0,updat:0,us:0,valu:0,verbos:0,wai:0,well:0,when:0,which:0,work:0,x:0,x_new:0,y:0},titles:["Welcome to k-means-constrained\u2019s documentation!"],titleterms:{constrain:0,document:0,k:0,mean:0,s:0,welcom:0}}) ================================================ FILE: docs_source/Makefile ================================================ # Minimal makefile for Sphinx documentation # # You can set these variables from the command line, and also # from the environment for the first two. SPHINXOPTS ?= SPHINXBUILD ?= sphinx-build SOURCEDIR = . BUILDDIR = _build # Put it first so that "make" without argument is like "make help". help: @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) .PHONY: help Makefile # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). %: Makefile @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) ================================================ FILE: docs_source/README.md ================================================ Build docs: ``` make html mv _build/html ../docs tocuh ../docs/.nojekyll `` ================================================ FILE: docs_source/conf.py ================================================ # Configuration file for the Sphinx documentation builder. # # This file only contains a selection of the most common options. For a full # list see the documentation: # https://www.sphinx-doc.org/en/master/usage/configuration.html # -- Path setup -------------------------------------------------------------- # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # import os import sys sys.path.insert(0, os.path.abspath('../')) import sphinx_rtd_theme # -- Project information ----------------------------------------------------- project = 'k-means-constrained' copyright = '2020, Josh Levy-Kramer. Documentation derived from Scikit-Learn' author = 'Josh Levy-Kramer' # The full version, including alpha/beta/rc tags release = '0.5.1' # -- General configuration --------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ 'sphinx.ext.autodoc','sphinx.ext.viewcode', "sphinx_rtd_theme", "numpydoc", ] # Include Python objects as they appear in source files # Default: alphabetically ('alphabetical') autodoc_member_order = 'bysource' # Default flags used by autodoc directives autodoc_default_flags = ['members', 'show-inheritance'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path. exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] # -- Options for HTML output ------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # html_theme = 'sphinx_rtd_theme' #'alabaster' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] ================================================ FILE: docs_source/index.rst ================================================ .. k-means-constrained documentation master file, created by sphinx-quickstart on Fri Mar 6 13:31:12 2020. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. Welcome to k-means-constrained's documentation! =============================================== The GitHub project can be found `here `_. To install k-means-constrained using pip: .. code-block:: python pip install k-means-constrained API documentation: .. automodule:: k_means_constrained :members: :undoc-members: :inherited-members: ================================================ FILE: docs_source/make.bat ================================================ @ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set SOURCEDIR=. 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% %O% goto end :help %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% :end popd ================================================ FILE: etc/benchmark.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import psutil\n", "from subprocess import PIPE\n", "import shlex\n", "from time import sleep\n", "import regex\n", "import numpy as np\n", "import matplotlib.pyplot as plt\n", "from tqdm import tqdm" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "def run_km_constrained(n, d, k, min_clusters=None, max_clusters=None):\n", " cmd = f'./benchmark_k_means_constrained.py -n {n} -d {d} -K {k}'\n", " if min_clusters:\n", " cmd += f' -ge {min_clusters}'\n", " if max_clusters:\n", " cmd += f' -le {max_clusters}'\n", " p = psutil.Popen(shlex.split(cmd), stdout=PIPE)\n", " peak_mem = 0\n", " output = \"\"\n", " while p.is_running():\n", " sleep(0.1) # Sample frequency\n", " # \"Resident Set Size\"/physical memory used in bytes\n", " peak_mem = max(p.memory_info().rss, peak_mem)\n", " output += str(p.communicate()[0])\n", "\n", " # Time\n", " time = regex.search(r'Total time: (\\d*\\.\\d*) seconds', output)\n", " try:\n", " time = float(time.groups()[0])\n", " except AttributeError:\n", " print('k-means-constrained failed:', cmd)\n", " return None, float(peak_mem)\n", " return time, float(peak_mem)\n", "\n", "def run_km(n, d, k):\n", " cmd = f'./benchmark_k_means.py -n {n} -d {d} -K {k}'\n", " p = psutil.Popen(shlex.split(cmd), stdout=PIPE)\n", " peak_mem = 0\n", " output = \"\"\n", " while p.is_running():\n", " sleep(0.1) # Sample frequency\n", " # \"Resident Set Size\"/physical memory used in bytes\n", " peak_mem = max(p.memory_info().rss, peak_mem)\n", " output += str(p.communicate()[0])\n", "\n", " # Time\n", " \n", " time = regex.search(r'Total time: (\\d*\\.\\d*) seconds', output)\n", " try:\n", " time = float(time.groups()[0])\n", " except AttributeError:\n", " print('k-means failed:', cmd)\n", " return None, float(peak_mem)\n", " return time, float(peak_mem)" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(0.34, 21581824.0)" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "run_km_constrained(10, 2, 4, min_clusters=1, max_clusters=8)" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(0.03, 21663744.0)" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "run_km(10, 2, 4)" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "k-means: 10it [00:27, 2.73s/it]\n", "k-means-constrained: 10it [04:26, 26.64s/it]\n" ] } ], "source": [ "# Fixed x and d. Increase cluster size (no min or max)\n", "k = [1, 10, 25, 50, 75, 100, 250, 500, 750, 1000]\n", "x = [10*ki for ki in k]\n", "d = 10\n", "min_clusters = None\n", "max_clusters = None\n", "km_time, km_mem = list(zip(*[run_km(xi, d, ki) for ki, xi in tqdm(zip(k, x), desc='k-means')]))\n", "con_time, con_mem = list(zip(*[run_km_constrained(xi, d, ki) for ki, xi in tqdm(zip(k, x), desc='k-means-constrained')]))" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "data": { "image/png": "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NMHWrVs1htOJj4/H4sWLcz02Isonp38E4t9K5cZDAXP97M3Xm569zz77DH369NGqnzp1Km7fvo3Vq1fDxialazY4OBhr167FkiVLsHDhQrl+yZIlAKReKMob/v7+MDY2Rs+ePeHn54ddu3ahWLFiebrNcuXK4fvvv8eQIUNQrVo19O3bF87Oznj27BnCwsKwZcsWXL58GS4uLvD09ETZsmUxbtw4hIeHo1y5cjh//jxWr14Nd3f3bN+E8/btW9jb26Nz586oW7cuSpcujTt37uD777+HnZ0dOnXqlOE6Zs2ahYMHD2LIkCHYu3cvPD09IYTAuXPnkJiYiNWrVwMAli5diubNm8PLy0seeuXPP//Enj170KtXL62bMzKrWrVqaNKkCRo3bgwHBwc8evQIy5cvh4mJiTzsCwA0adIEISEhmDJlinydYKdOnTRufNHF398fEydORLt27dC9e3e8efMG69atk4c/yU0qlQqrV69GixYtUKtWLQwaNAg1atRATEwMbt68iU2bNmHu3LkYMGAAAOkUs4+PD5o1a4YPP/xQHnpF19h9RFQIxL4GTn0vlY0tgSYfKhtPHirwyd7q1avlC+2fPXuG+Ph4zJo1C4D0uKS+faVHmTRt2lTn8t988w3u3r0Lf39/jfoOHTqgY8eOWLRoEV6/fi0/QSMkJAR9+vTJ0Z2GlLEuXbpg06ZN6NGjB9q0aYM9e/ZoJON5YeDAgahcuTK++uor/Pjjj3j16hVKliyJKlWqYObMmfINIba2ttizZw/Gjx+PZcuWITExEfXr18fOnTsREhKS7WTPwsICo0ePxoEDB7B//35ERUXJyd/EiRMzNWi4nZ0dTp48iTlz5mDTpk3YvHkzrK2tUb16dYwcOVJu16BBA5w4cQJTp07Fd999h+joaLi5ueHLL7/EuHHjshU/IF3ftnPnTnz99dd4/fo1SpcujSZNmmDixImoXbu23G727NmIjIzEt99+i1evXkEIgTt37mSY7H366acQQiAkJAQff/wxypYti8DAQAwcODBPboSoU6cOzp07h7lz52Lbtm344YcfYG1tDRcXFwwYMEAjKW7atCn27duHCRMmYN68ebCxsZHHOnR3d8/12Igoj/21HIh7LZUbDgYsSygbTx5Sify48jsHfHx8dD61AACaN2+Ow4cPZ7j833//rXOU+9jYWMyaNQtr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arFLr0yfPt1t3927d5eGDRu61VetWiUAZOvWrY6afdmMixcvypAhQyQ0NFT0er307NlTfvnlF4/v6csvv5TevXtLSEiIBAQESIMGDaRv376yZMkSl3ZlOU6Fbdu2TRITE8VoNIpWq5W4uDhJTU11a1eWpVfs1q1bJ23btnX0++WXX3YsVVJ4LMxms8ydO1duu+02CQgIkJiYGHnhhRfkwIEDHo/7hg0bpF27dqLVagWAy5gvW7ZMWrZsKVqtVurVqycjR46Uy5cvl+n4lHWcCgoK5LXXXpMWLVpIQECAhISEyIMPPih79+51a+upH8X1zdPvkMVikQkTJkhUVJQolUrHsTx+/LiMHj1aWrRoIUajUQIDA6VFixYydepUuXbtWqneN5GvUIiU82pnIiKiUhg6dCjef//9ct9cQ0S3htfsEREREfkxhj0iIiIiP8awR0REROTHeM0eERERkR/jzB4RERGRH2PYIyIiIvJjDHtEREREfoxhj4iIiMiPMewRERER+TGGPSIiIiI/xrBHRERE5McY9oiIiIj8GMMeERERkR9j2CMiIiLyYwx7RERERH6MYY+IiIjIj/1/s81ZGSywoyMAAAAASUVORK5CYII=", "text/plain": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "fig, ax1 = plt.subplots(1, 1, figsize=(5, 5), dpi=130)\n", "\n", "ax1.plot(x, km_time, label='k-means')\n", "ax1.plot(x, con_time, label='k-means-constrained')\n", "\n", "ax1.set_xlabel('x: number of data-points')\n", "ax1.set_ylabel('Time (s)')\n", "ax1.set_title('Data-points vs execution time.\\nData-points=10*clusters. No min/max constraints')\n", "ax1.legend()\n", "\n", "plt.tight_layout()\n", "\n", "plt.show()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [ { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAABKUAAAJOCAYAAABm7rQwAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8pXeV/AAAACXBIWXMAAA9hAAAPYQGoP6dpAADKiElEQVR4nOzdd3hUdfbH8fekF1KBNBIglFCkKoiKBQQJUVFEUbFgQV1dwEUWddG1gKyoK6tr+ekuKmBB1FVxVyWACAIaUUBsYCgCCb2EJKSXmd8fN5lkUiCEydyZ5PN6nvtkMvfOnTNRkrlnzjlfi81msyEiIiIiIiIiIuJCXmYHICIiIiIiIiIiLY+SUiIiIiIiIiIi4nJKSomIiIiIiIiIiMspKSUiIiIiIiIiIi6npJSIiIiIiIiIiLicklIiIiIiIiIiIuJySkqJiIiIiIiIiIjLKSklIiIiIiIiIiIup6SUiIiIiIiIiIi4nJJSIiIiIiIiIiLickpKiYiIiIhTrF69mlGjRhEXF4fFYmHx4sWn9PjHH38ci8VSawsODm6agEVERMRUSkqJiIiIiFPk5+fTt29fXn755UY9ftq0aezfv99h69mzJ2PHjnVypCIiIuIOlJQSEREREadISUlh1qxZXHXVVXXuLy4uZtq0abRr147g4GAGDRrEqlWr7PtbtWpFTEyMfTt48CCbN29mwoQJLnoFIiIi4kpKSomIiIiIS0yaNIm0tDQWLVrETz/9xNixYxk5ciTbtm2r8/jXXnuNpKQkLrjgAhdHKiIiIq6gpJSIiIiINLmMjAzmzZvHBx98wAUXXEDnzp2ZNm0a559/PvPmzat1fFFREe+8846qpERERJoxH7MDEBEREZHm7+eff6a8vJykpCSH+4uLi2ndunWt4z/++GOOHz/OLbfc4qoQRURExMWUlBIRERGRJpeXl4e3tzcbNmzA29vbYV+rVq1qHf/aa69x+eWXEx0d7aoQRURExMWUlBIRERGRJte/f3/Ky8s5dOjQSWdE7dy5k5UrV/Lf//7XRdGJiIiIGZSUEhERERGnyMvLY/v27fbvd+7cyaZNm4iMjCQpKYkbb7yR8ePHM2fOHPr378/hw4dZsWIFffr04bLLLrM/7o033iA2NpaUlBQzXoaIiIi4iMVms9nMDkJEREREPN+qVasYOnRorftvueUW5s+fT2lpKbNmzeLNN99k7969tGnThnPOOYcZM2bQu3dvAKxWKx06dGD8+PH87W9/c/VLEBERERdSUkpERERERERERFzOy+wARERERERERESk5VFSSkREREREREREXE6DzjFmF+zbt4+QkBAsFovZ4YiIiIjJbDYbx48fJy4uDi8vfYZ3InofJSIiIjU19L2UklLAvn37SEhIMDsMERERcTOZmZnEx8ebHYZb0/soERERqc/J3kspKQWEhIQAxg8rNDTU5GhERETEbLm5uSQkJNjfI0j99D5KREREamroeyklpcBeah4aGqo3UyIiImKndrST0/soERERqc/J3kuZOiRh9uzZDBw4kJCQEKKiohg9ejTp6ekOxxQVFTFx4kRat25Nq1atuPrqqzl48KDDMRkZGVx22WUEBQURFRXF/fffT1lZmStfioiIiIiIiIiInAJTk1JfffUVEydO5Ntvv2X58uWUlpYyYsQI8vPz7cfcd999/O9//+ODDz7gq6++Yt++fYwZM8a+v7y8nMsuu4ySkhK++eYbFixYwPz583n00UfNeEkiIiIiIiIiItIAFpvNZjM7iEqHDx8mKiqKr776igsvvJCcnBzatm3LwoULueaaawD47bff6NGjB2lpaZxzzjksWbKEyy+/nH379hEdHQ3Aq6++yoMPPsjhw4fx8/M76fPm5uYSFhZGTk6Oys5FRERE7w1OgX5WIiIiUlND3x+41UypnJwcACIjIwHYsGEDpaWlDB8+3H5M9+7dad++vT0plZaWRu/eve0JKYDk5GTuuecefv31V/r37++U2KxWKyUlJU45l4gn8vX1xdvb2+wwRERERETcQnl5OaWlpWaHIWIKZ10fuk1Symq1MmXKFAYPHkyvXr0AOHDgAH5+foSHhzscGx0dzYEDB+zHVE9IVe6v3FeX4uJiiouL7d/n5uaeMLaSkhJ27tyJ1Wo9pdck0tyEh4cTExOjwb8iIiIi0mLZbDYOHDhAdna22aGImMoZ14duk5SaOHEiv/zyC2vXrm3y55o9ezYzZsxo0LE2m439+/fj7e1NQkICXl6mjuESMYXNZqOgoIBDhw4BEBsba3JEIiIiIiLmqExIRUVFERQUpA9spcVx5vWhWySlJk2axKeffsrq1auJj4+33x8TE0NJSQnZ2dkO1VIHDx4kJibGfsx3333ncL7K1fkqj6lp+vTpTJ061f59bm4uCQkJdR5bVlZGQUEBcXFxBAUFNer1iTQHgYGBABw6dIioqCi18omIiIhIi1NeXm5PSLVu3drscERM46zrQ1PLfmw2G5MmTeLjjz/myy+/JDEx0WH/WWedha+vLytWrLDfl56eTkZGBueeey4A5557Lj///LM9QwewfPlyQkND6dmzZ53P6+/vT2hoqMNWn/LycoAGDUwXae4qE7PqnRcRERGRlqjyfbAKFkScc31oaqXUxIkTWbhwIZ988gkhISH2GVBhYWEEBgYSFhbGhAkTmDp1KpGRkYSGhjJ58mTOPfdczjnnHABGjBhBz549ufnmm3nmmWc4cOAAf/3rX5k4cSL+/v5Oi1UlmSL6dyAiIiIiAnpfLALO+XdgalLqlVdeAWDIkCEO98+bN49bb70VgOeeew4vLy+uvvpqiouLSU5O5v/+7//sx3p7e/Ppp59yzz33cO655xIcHMwtt9zCzJkzXfUyRERERERERETkFJmalLLZbCc9JiAggJdffpmXX3653mM6dOjA559/7szQPN6QIUPo168fzz//vNmhiIiIiIiIiMl0jSjuSEvJiYiIiIiIiIiIyykpJSIiIiIiIiIiLqekVAvx2WefERYWxjvvvFPn/iFDhjB58mSmTJlCREQE0dHRzJ07l/z8fG677TZCQkLo0qULS5YscXjcL7/8QkpKCq1atSI6Opqbb76ZI0eO2PenpqZy/vnnEx4eTuvWrbn88svZsWOHff+uXbuwWCx89NFHDB06lKCgIPr27UtaWpr9mN27dzNq1CgiIiIIDg7mjDPOULumiIiIiIjIadA1orgDJaVOkc1mo6CkzJStITO46rJw4ULGjRvHO++8w4033ljvcQsWLKBNmzZ89913TJ48mXvuuYexY8dy3nnnsXHjRkaMGMHNN99MQUEBANnZ2Vx88cX079+f9evXk5qaysGDB7n22mvt58zPz2fq1KmsX7+eFStW4OXlxVVXXYXVanV47ocffphp06axadMmkpKSGDduHGVlZYCxSmNxcTGrV6/m559/5umnn6ZVq1aN+lmIiIiIiIg4iydeH4KuEcV9WGyn839yM5Gbm0tYWBg5OTmEhoY67CsqKmLnzp0kJiYSEBBAQUkZPR9dakqcm2cmE+TXsNn0lUPsunbtysMPP8wnn3zCRRdddMLjy8vLWbNmDQDl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8nLi4uJMiMgT1a6G8rGvvue6Sqk9x7TynoiIiLMpKdWS2Gxq3RMREXGhv//970yePJn169fb71u/fj1/+tOfePbZZ02MzBNVVUr52Vffc2GlVFbFTCm174mIiDiN2vdakn0/QHYG+AZBl+FmRyMiItIsRUREOKzOlp+fz6BBg/DxMd52lZWV4ePjw+23387o0aNNitKD2OqolKqYKVXqoplSRaXlHDpeDKh9T0RExJmUlGpJKqukuo4AP72hEhERaQrPP/+82SE0MxWJp7pmSrlo9b292UbrXrCfNxFBvi55ThERkZZASamWQq17IiIiLnHLLbeYHUIzVb19r3L1Pdckpapa94IcquBERETk9GimVEtx4Gc4thN8AoxKKREREWkS+fn5TXp8i1NX+5599T3XtO9lVgw5j4/QPCkRERFnUlKqpaiskuoyHPxbmRuLiIhIM9alSxeeeuop9u/fX+8xNpuN5cuXk5KSwgsvvODC6DyYQ/teRaWUiwad7zlmVEppnpSIiIhzqX2vJbDZYPNi43bP0WZGIiIi0uytWrWKhx56iMcff5y+ffsyYMAA4uLiCAgI4NixY2zevJm0tDR8fHyYPn06f/jDH8wO2c3VroaqbN9zVaXUniyjUiohUkkpERERZ2p0Uqq0tJQDBw5QUFBA27ZtiYyMdGZc4kyHtsDR7eDtB0nJZkcjIiLSrHXr1o0PP/yQjIwMPvjgA9asWcM333xDYWEhbdq0oX///sydO5eUlBS8vb3NDteDVKuU8qpo33PVTCl7pZTa90RERJzplJJSx48f5+2332bRokV89913lJSUYLPZsFgsxMfHM2LECO666y4GDhzYVPFKY1S27nUeBgGh5sYiIiLSQrRv354///nP/PnPfzY7FM9W50ypyvY9F1VKVcyUSlD7noiIiFM1eKbUP/7xDzp27Mi8efMYPnw4ixcvZtOmTWzdupW0tDQee+wxysrKGDFiBCNHjmTbtm1NGbecisqk1BmjTQ1DRERE5NRVJJ4s1Vffqxx03vSVUvnFZWTllwAQH6lKKREREWdqcKXU999/z+rVqznjjDPq3H/22Wdz++238+qrrzJv3jzWrFlD165dnRaoNNLhdDi8Bbx8IWmk2dGIiIiINFLtQeeumClV2boXFuhLaIBvkz+fiIhIS9LgpNS7777boOP8/f25++67Gx2QONnm/xpfOw+FwHBTQxERERE5ZXW27xkJKlesvlc15FxVUiIiIs7W4Pa9E8nNzWXx4sVs2bLFGacTZ7KvunelqWGIiIiInJZq7Xu+XpWVUk2flKqslNI8KREREedrVFLq2muv5aWXXgKgsLCQAQMGcO2119KnTx8+/PBDpwYop+HIdjj4C3j5QLdLzY5GRERETsPs2bMZOHAgISEhREVFMXr0aNLT00/6uA8++IDu3bsTEBBA7969+fzzzx3222w2Hn30UWJjYwkMDGT48OFuNhu0dqWUb2X7ntUF7XsVlVJaeU9ERMT5GpWUWr16NRdccAEAH3/8MTabjezsbF544QVmzZrl1ADlNGypGHCeeCEERZobi4iISAvUsWNHZs6cSUZGxmmf66uvvmLixIl8++23LF++nNLSUkaMGEF+fn69j/nmm28YN24cEyZM4IcffmD06NGMHj2aX375xX7MM888wwsvvMCrr77KunXrCA4OJjk5maKiotOO2bmqz5RyYfteZaVUpCqlREREnK1RSamcnBwiI40kR2pqKldffTVBQUFcdtllbvbJWgtXueqeWvdERERMMWXKFD766CM6derEJZdcwqJFiyguLm7UuVJTU7n11ls544wz6Nu3L/PnzycjI4MNGzbU+5h//vOfjBw5kvvvv58ePXrwxBNPcOaZZ9or3m02G88//zx//etfufLKK+nTpw9vvvkm+/btY/HixY2K0+nqmCnla09KuWLQecVMKbXviYiIOF2jklIJCQmkpaWRn59PamoqI0aMAODYsWMEBAQ4NUBppKydsP9HsHhB98vNjkZERKRFmjJlCps2beK7776jR48eTJ48mdjYWCZNmsTGjRtP69w5OTkA9g8K65KWlsbw4cMd7ktOTiYtLQ2AnTt3cuDAAYdjwsLCGDRokP0Y81UknqrPlKpo3ytp4kopm83GniyjUkrteyIiIs7XqKTUlClTuPHGG4mPjycuLo4hQ4YARltf7969nRmfNNaWilX3Op4PwW3MjUVERKSFO/PMM3nhhRfYt28fjz32GK+99hoDBw6kX79+vPHGG9jqqAY6EavVypQpUxg8eDC9evWq97gDBw4QHR3tcF90dDQHDhyw76+8r75jaiouLiY3N9dhczWfiqRUU1dK5RaWcby4DIB4VUqJiIg4nU9jHvTHP/6RQYMGkZGRwSWXXIJXxQoonTp10kwpd6HWPREREbdRWlrKxx9/zLx581i+fDnnnHMOEyZMYM+ePTz00EN88cUXLFy4sMHnmzhxIr/88gtr165twqjrNnv2bGbMmOG6J7Qn7KqvvlfRvmdt2kqpypX32rTyJ9DPu0mfS0REpCVqVFIK4KyzzuKss85yuO+yyy477YDECbIzYO8GwALdR5kdjYiISIu1ceNG5s2bx7vvvouXlxfjx4/nueeeo3v37vZjrrrqKgYOHNjgc06aNIlPP/2U1atXEx8ff8JjY2JiOHjwoMN9Bw8eJCYmxr6/8r7Y2FiHY/r161fnOadPn87UqVPt3+fm5pKQkNDg+Butzva9pq2UylTrnoiISJNqcPveU089RWFhYYOOXbduHZ999lmjg5LTtOV/xtcOgyEk+sTHioiISJMZOHAg27Zt45VXXmHv3r08++yzDgkpgMTERK6//vqTnstmszFp0iQ+/vhjvvzySxITE0/6mHPPPZcVK1Y43Ld8+XLOPfdc+3PHxMQ4HJObm8u6devsx9Tk7+9PaGiow9a0aieeXLX63p7KIedaeU9ERKRJNLhSavPmzbRv356xY8cyatQoBgwYQNu2bQEoKytj8+bNrF27lrfffpt9+/bx5ptvNlnQchJq3RMRETFdeXk5b7zxBldccQURERH1HhccHMy8efNOer6JEyeycOFCPvnkE0JCQuwzn8LCwggMNCp5xo8fT7t27Zg9ezYAf/rTn7jooouYM2cOl112GYsWLWL9+vX8+9//BsBisTBlyhRmzZpF165dSUxM5JFHHiEuLo7Ro0ef5k+g6fi6aKZUZfueKqVERESaRoMrpd58802++OILSktLueGGG4iJicHPz4+QkBD8/f3p378/b7zxBuPHj+e3337jwgsvPOk5V69ezahRo4iLi8NisdRaethms/Hoo48SGxtLYGAgw4cPZ9u2bQ7HZGVlceONNxIaGkp4eDgTJkwgLy+voS+r+cndB5nrjNs91LonIiJiFm9vb/7whz+QnZ3tlPO98sor5OTkMGTIEGJjY+3be++9Zz8mIyOD/fv3278/77zzWLhwIf/+97/p27cv//nPf1i8eLHDcPQHHniAyZMnc9dddzFw4EDy8vJITU11nxWV6xgC76rV9yrb9xI05FxERKRJnNJMqb59+zJ37lz+9a9/8dNPP7F7924KCwtp06YN/fr1o02bU1vlLT8/n759+3L77bczZsyYWvufeeYZXnjhBRYsWGD/5C45OZnNmzfb3yjdeOON7N+/n+XLl1NaWsptt93GXXfddUrDQpuVzRWr7iWcA6GxJz5WREREmlSvXr34/fffG9RqdzINWaFv1apVte4bO3YsY8eOrfcxFouFmTNnMnPmzNMJrwlVvO5qM6Xs7XtNPOi8qn1PlVIiIiJNoVGDzr28vOjXr1+9AzAbKiUlhZSUlDr32Ww2nn/+ef76179y5ZVGG9qbb75JdHQ0ixcv5vrrr2fLli2kpqby/fffM2DAAABefPFFLr30Up599lni4uJOKz6PpNY9ERERtzFr1iymTZvGE088wVlnnUVwcLDD/qafx9Q8+Xo1ffuezWazJ6XiVSklIiLSJBrcvudqO3fu5MCBAwwfPtx+X1hYGIMGDSItLQ2AtLQ0wsPD7QkpgOHDh+Pl5cW6detcHrPpjh+ADONno9Y9ERER81166aX8+OOPXHHFFcTHxxMREUFERATh4eEnnDMl1dgrxGpXSjVl+96RvBIKS8uxWCAu3E1aGUVERJqZRlVKuULl8M7oaMfV46Kjo+37Dhw4QFRUlMN+Hx8fIiMj7cfUpbi4mOLiYvv3ubm5zgrbXFv+B9ig3QAId8HSzCIiInJCK1euNDuE5qNa+54rBp3vqRhyHhMagL+Pd5M9j4iISEvmtkmppjR79mxmzJhhdhjOp9Y9ERERt3LRRReZHUKz5Fs5U6oJK6Uy7a17miclIiLSVNw2KRUTEwPAwYMHiY2tGth98OBB+yyrmJgYDh065PC4srIysrKy7I+vy/Tp05k6dar9+9zcXBISPLyyKO8w7P7auN3zCnNjEREREbvs7Gxef/11tmzZAsAZZ5zB7bffTlhYmMmReZpq7XsVM6VKrU1XKaWV90RERJreac2U2r59O0uXLqWw0PgkqSGrwjRUYmIiMTExrFixwn5fbm4u69at49xzzwXg3HPPJTs7mw0bNtiP+fLLL7FarQwaNKjec/v7+xMaGuqwebzfPgWbFWL7QURHs6MRERERYP369XTu3JnnnnuOrKwssrKy+Mc//kHnzp3ZuHGj2eF5hjreX/r5GAmq0iaslLIPOY9UUkpERKSpNKpS6ujRo1x33XV8+eWXWCwWtm3bRqdOnZgwYQIRERHMmTOnQefJy8tj+/bt9u937tzJpk2biIyMpH379kyZMoVZs2bRtWtXEhMTeeSRR4iLi2P06NEA9OjRg5EjR3LnnXfy6quvUlpayqRJk7j++utb3sp7at0TERFxO/fddx9XXHEFc+fOxcfHeNtVVlbGHXfcwZQpU1i9erXJEXqCiqSUpXallCtmSql9T0REpOk0qlLqvvvuw8fHh4yMDIKCqj49uu6660hNTW3wedavX0///v3p378/AFOnTqV///48+uijADzwwANMnjyZu+66i4EDB5KXl0dqaioBAVUroLzzzjt0796dYcOGcemll3L++efz73//uzEvy3MVZMHOije1SkqJiIi4jfXr1/Pggw/aE1JgLMrywAMPsH79ehMj82yVq+81ZaWU2vdERESaXqMqpZYtW8bSpUuJj493uL9r167s3r27wecZMmTICVv+LBYLM2fOZObMmfUeExkZycKFCxv8nM3Sb5+BrRxiekPrzmZHIyIiIhVCQ0PJyMige/fuDvdnZmYSEhJiUlQexv5esapSyq9i9b2mSkpZrTb2ZhvtewmRqpQSERFpKo2qlMrPz3eokKqUlZWFv7//aQclp0iteyIiIm7puuuuY8KECbz33ntkZmaSmZnJokWLuOOOOxg3bpzZ4XmW6u17FUkpq81IIDnbweNFlJbb8PayEBMacPIHiIiISKM0qlLqggsu4M033+SJJ54AjIomq9XKM888w9ChQ50aoJxE4TH4fZVxu+doMyMRERGRGp599lksFgvjx4+nrKwMAF9fX+655x6eeuopk6PzFLWTTpXtewClViv+Xt5OfcbMLKNKKi48wJ4AExEREedrVFLqmWeeYdiwYaxfv56SkhIeeOABfv31V7Kysvj666+dHaOcSPoSsJZCVE9o09XsaERERKQaPz8//vnPfzJ79mx27NgBQOfOneusOJeTqd2+B1BabsO/Ue9o61c55FzzpERERJpWo/6E9+rVi61bt/LSSy8REhJCXl4eY8aMYeLEicTGxjo7RjkRte6JiIi4vaCgIHr37m12GJ6pjvmjPl5VCaqyJpgrVVkppZX3REREmlajP1cKCwvj4YcfdmYscqqKcmDHl8ZtJaVERETcTlFRES+++CIrV67k0KFDWK2OCZSNGzeaFJknqUhKVZsp5V0tKVVa7vyZUpmqlBIREXGJRielioqK+Omnn+p8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AAAIOEIpAAAAAAAABByhlJ/NmzdPffr0UXR0tLKysvTBBx/YPaSQsnbtWk2cOFE9evSQw+HQ4sWLfR43xujhhx9WWlqaYmJiNG7cOOXn5/vcc+TIEd10001KSEhQUlKSbrvtNpWXl/vcs23bNo0ePVrR0dFKT0/Xr3/9a3+/taCWk5OjkSNHKj4+Xt27d9eNN96o3bt3+9xz8uRJTZs2TV26dFFcXJwmTZqk4uJin3v27t2rG264QbGxserevbt+9rOfqaamxuee1atXa/jw4YqKitL555+v3Nxcf7+9oPXss89qyJAhSkhIUEJCgkaNGqV3333Xepw5D4zHHntMDodD99xzj3WNufePRx55RA6Hw+dr4MCB1uPMO1hHnRvWUfZgHWUf1lLBgbVU4ITFWsrAbxYsWGDcbrd54YUXzEcffWRuv/12k5SUZIqLi+0eWsh45513zM9//nOzcOFCI8ksWrTI5/HHHnvMJCYmmsWLF5sPP/zQ/Md//IfJzMw0J06csO657rrrzNChQ82GDRvMe++9Z84//3wzZcoU6/Fjx46ZlJQUc9NNN5kdO3aYV1991cTExJg//OEPgXqbQWf8+PFm/vz5ZseOHSYvL89cf/31JiMjw5SXl1v3TJ061aSnp5sVK1aYTZs2ma997Wvmsssusx6vqakxF110kRk3bpzZunWreeedd0zXrl3NrFmzrHs+/fRTExsba2bOnGl27txpfve735mIiAizdOnSgL7fYPG3v/3NLFmyxHzyySdm9+7d5sEHHzSRkZFmx44dxhjmPBA++OAD06dPHzNkyBBz9913W9eZe/+YPXu2GTRokDl48KD19eWXX1qPM+8dG+uoc8c6yh6so+zDWsp+rKUCKxzWUoRSfnTppZeaadOmWT/X1taaHj16mJycHBtHFbrOXEx5PB6TmppqHn/8ceva0aNHTVRUlHn11VeNMcbs3LnTSDL//ve/rXveffdd43A4zIEDB4wxxvz+9783nTt3NpWVldY9999/vxkwYICf31HoKCkpMZLMmjVrjDF18xwZGWlef/11656PP/7YSDLr1683xtQthJ1OpykqKrLuefbZZ01CQoI11/fdd58ZNGiQz++aPHmyGT9+vL/fUsjo3Lmzef7555nzACgrKzP9+vUzy5YtM1dccYW1kGLu/Wf27Nlm6NChDT7GvIN1VPti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VVVyu912DwMAAAQx1lENYx0FtAyVUkAHt2TJEiUmJurll19u8XO8ZdK/+c1vlJaWpi5dumjatGmqrq627mmoBDspKUm5ubmSpM8++0wOh0OvvfaaRo8erZiYGI0cOVKffPKJ/v3vf+uSSy5RXFycJkyYoC+//PKsMcyZM0fdunVTQkKCpk6dqqqqKusxj8ejnJwcZWZmKiYmRkOHDtUbb7xhPb569Wo5HA69++67GjFihKKiorRu3boG3+v27dt19dVXKyYmRl26dNEdd9yh8vJySXXl5hMnTpQkOZ3OJhdTH330kb7xjW8oISFB8fHxGj16tLUQO1NDn9ANGzZMjzzyiKS6xd8jjzyijIwMRUVFqUePHvqv//ovSXXbCj7//HPNmDFDDofDZ0zr1q2z5jo9PV3/9V//pYqKCp/f+6tf/Uo/+tGPlJCQoDvuuENVVVWaPn260tLSFB0drd69eysnJ6fR9wkAQEfCOop11Om/l3UU0HqEUkAH9sorr2jKlCl6+eWXddNNN0k6tdD47LPPmnzuqlWrVFBQoFWrVunFF19Ubm6utVBqjdmzZ+uhhx7Sli1b5HK59P3vf1/33Xefnn76ab333nvas2ePHn74YZ/nrFixQh9//LFWr16tV199VQsXLtScOXOsx3NycvTSSy/pueee00cffaQZM2boBz/4gdasWePzOg888IAee+wxffzxxxoyZMhZY6uoqND48ePVuXNn/fvf/9brr7+u5cuXa/r06ZKke++9V/Pnz5ckHTx4UAcPHmzwPR44cEBjxoxRVFSUVq5cqc2bN+vWW29VTU1Nq+dLkt5880099dRT+sMf/qD8/HwtXrxYgwcPliQtXLhQvXr10i9/+UufMRUUFOi6667TpEmTtG3bNv31r3/VunXrrPfi9Zvf/EZDhw7V1q1b9Ytf/EK//e1v9be//U2vvfaadu/erZdffll9+vRp07gBAAgnrKNYR7GOAtqBAdChXHHFFebuu+82zzzzjElMTDSrV6/2eXzjxo1mwIABZv/+/Y2+RnZ2tundu7epqamxrn3nO98xkydPtn6WZBYtWuTzvMTERDN//nxjjDGFhYVGknn++eetx1999VUjyaxYscK6lpOTYwYMGODzu5OTk01FRYV17dlnnzVxcXGmtrbWnDx50sTGxpp//etfPr/7tttuM1OmTDHGGLNq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", "text/plain": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(12, 6))\n", "\n", "ax1.plot(x, km_time, label='k-means')\n", "ax1.plot(x, con_time, label='k-means-constrained')\n", "\n", "ax1.set_xlabel('x: number of data-points')\n", "ax1.set_ylabel('Time (s)')\n", "#ax1.set_title('First Plot')\n", "ax1.legend()\n", "\n", "ax2.plot(x, km_mem, label='k-means')\n", "ax2.plot(x, con_mem, label='k-means-constrained')\n", "\n", "ax2.set_xlabel('x: number of data-points')\n", "ax2.set_ylabel('Peak memory (bytes)')\n", "#ax2.set_title('Second Plot')\n", "ax2.legend()\n", "\n", "plt.tight_layout()\n", "\n", "plt.show()" ] }, { "cell_type": "code", "execution_count": 57, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "k-means-constrained: 100%|██████████| 8/8 [03:26<00:00, 25.77s/it]\n" ] } ], "source": [ "# Fixed x, d, k. Increase min_cluster\n", "x = 10000\n", "d = 10\n", "k = 10 #list(range(1, x//2, 10))\n", "min_clusters = [1, 10, 50, 100, 250, 500, 750, 1000]\n", "max_clusters = None\n", "#km_time, km_mem = list(zip(*[run_km(x, d, k)]))\n", "con_time, con_mem = list(zip(*[run_km_constrained(x, d, k, min_clusters=mc) for mc in tqdm(min_clusters, desc='k-means-constrained')]))" ] }, { "cell_type": "code", "execution_count": 60, "metadata": {}, "outputs": [ { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAABKUAAAJOCAYAAABm7rQwAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8pXeV/AAAACXBIWXMAAA9hAAAPYQGoP6dpAADhpElEQVR4nOzdd3hT9f4H8PdJ0r0H3YUOKGW0gCwZIrI3uEHvxQF69QJX3OLCgaDe6x74u4h4UQEXIDJFoAzZBaSsAh200N3SvZP8/khP2kpb2pLkm/F+PU+ex6YnJ58UoSeffIak1Wq1ICIiIiIiIiIiMiGF6ACIiIiIiIiIiMj2MClFREREREREREQmx6QUERERERERERGZHJNSRERERERERERkckxKERERERERERGRyTEpRUREREREREREJsekFBERERERERERmRyTUkREREREREREZHJMShERERERERERkckxKUVERERERERERCbHpBQRERER3ZA9e/Zg8uTJCAoKgiRJWL9+fZse/9prr0GSpGtuLi4uxgmYiIiIzAKTUkRERER0Q8rKytCrVy989tln7Xr8M888g8zMzEa37t274+677zZwpERERGROmJQiIiIiohsyfvx4LFq0CLfffnuT36+qqsIzzzyD4OBguLi4YODAgYiLi9N/39XVFQEBAfpbdnY2zpw5g1mzZpnoFRAREZEITEoRERERkVHNnTsXBw4cwJo1a3Dy5EncfffdGDduHC5cuNDk8V9++SWioqJwyy23mDhSIiIiMiUmpYiIiIjIaNLS0rBixQr8+OOPuOWWWxAZGYlnnnkGQ4cOxYoVK645vrKyEt999x2rpIiIiGyASnQARERERGS9EhISoFarERUV1ej+qqoq+Pj4XHP8unXrUFJSggceeMBUIRIREZEgTEoRERERkdGUlpZCqVQiPj4eSqWy0fdcXV2vOf7LL7/EpEmT4O/vb6oQiYiISBAmpYiIiIjIaPr06QO1Wo2cnJzrzohKSUnBrl27sGHDBhNFR0RERCIxKUVEREREN6S0tBQXL17Uf52SkoITJ07A29sbUVFRuP/++zFz5ky899576NOnD3Jzc7Fjxw7ExsZi4sSJ+sd99dVXCAwMxPjx40W8DCIiIjIxSavVakUHQURERESWKy4uDrfddts19z/wwAP4+uuvUVNTg0WLFmHlypW4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wRa+sipu4SMiIrqev27eA+orpbKLq66pmCciIiLLwqQUUTu0ZZ6UrEeQO8J8nFFVyy18RERErdFUUkoedF5dq0FRRY2QuIiIiMgwmJQiaofkVm7ea0iSJH21FLfwERERXV9uaV1SyrU+KeWgUsLL2Q4AN/ARERFZOialiNohSa6U8m19pRQATIzVJaXkLXxERETUvKYqpYCGLXycK0VERGTJmJQiaiOtVquvlOrs1/pKKQDoHljfwreDLXxEREQtul5SisPOiYiILBuTUkRtlFNShbJqNZQKCR2925aUkiRJXy21mS18RERELcrRb9/7a1JK93UOk1JEREQWjUkpojZKqquSCvVygr2q7X+F5LlSbOEjIiJqXlWtWj/IvPn2Pc6UIiIismRMShG1UXs27zXUPdAd4b4ubOEjIiJqQV5pNQDATinBw8mu0ff8OFOKiIjIKjApRdRGcqVUhG/bWvdkui18AQDYwkdERNQc/TwpVwdIktToewFMShEREVkFJqWI2kiulIr0a1+lFABMjAkCwBY+IiKi5jQ35ByonynF9j0iIiLLxqQUURsl591YpRQAdAt0YwsfERFRC1pOSukqpXJLq6DWaE0aFxERERkOk1JEbVBZo8blqxUA2j9TCqjbwlc38HzTyQyDxEZERGRNWkpK+bjYQyEBao0W+WWsliIiIrJUTEoRtUFqfhm0WsDNUQVfV/sbOpe8hS8uMRelbOEjIiJqJKdENy+qg5vjNd9TKRXwda1r4StiUoqIiMhSMSlF1Ab6eVIdXK8ZutpW3QLdECG38J3NNkR4REREVqOlSikACPDgsHMiIiJLx6QUURsky5v3OrR/npRMt4VPVy21OYFb+IiIiBrKLa3fvtcUv7oKquwSJqWIiIgsFZNSRG3QsFLKEOSk1C628BERETVyvUopbuAjIiKyfExKEbVBUp4uKXUjm/caklv4qtnCR0REpKfVavVJKb9mk1K6Sqkctu8RERFZLCaliFpJq9UiOUdu3zNMpVTDFr5NJ9nCR0REBAAlVbWoqtUAaGGmVF1SKotJKSIiIovFpBRRK+WWVqGkqhYKCejk42yw806MrdvCd54tfEREREB9656bowqOdsomj/Fj+x4REZHFY1KKqJXkeVIhXs7NXiC3R3QAW/iIiIga0mqBIZ190D/Mu9lj2L5HRERk+ZiUImolOSll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nVBv+Gkxp3FB6JaPNRSCam4qCDUqEt2mIGR+LoOdVIY0KgV0KgW06p8XhLQqJXTmYpFa8ZPHb/9Y4yJT4/t0agU0SgVnPZFwLEpRs4zuHoAQLx3ySmsQ7uMKtZLtyIiIiBxVTEwM1q9fjxkzZqCmpgb19fWYOHEiPvjgg1ueU1tbi9raWsvXZWVltohKRHYuKsjTsqpi6Wcp6ODr2qgQdKuCkLlgZE+FocaFnh+LOLpbFX1u/lr9kyLRHR4zF6A0SgUUChaGyHmxKEXNolIqMHtoB/zluzT0CGFTOyIiIkd29uxZLFmyBK+++irGjh2L/Px8vPTSS3j66aexatWqJs9Zvnw5/vd//9fGSYnIESwaEYmES0VIvnIDyVdu3PXzaJSKRgWbxsWcpgo7NxeMbv/Y7WYYsTBEJI4kc5uEnykrK4OXlxdKS0vh6ekpOo7d0BuM2Hw8B/d39Uewl4voOERERELY+zhBkiRs2bIFU6ZMueUxc+bMQU1NDTZt2mS5LyEhASNGjEBeXh6Cg4N/dk5TM6XCwsLs9joQke3IsowvknOQX1rz47Iz9S1mDTUx+8h8DAtDRG1Hc8dLnClFzaZWKjBjULjoGERERHSPqqqqoFI1HgYqlUoAuOW27lqtFlqt1urZiMjxSJKE6QPDRMcgIgfExkBEREREDq6iogIpKSlISUkBAGRkZCAlJQVZWVkAgGXLlmHu3LmW4ydOnIjNmzdj5cqVSE9Px8GDB7F48WIMHjwYISEhIt4CEREROSHOlCIiIiJycMeOHcODDz5o+fqFF14AAMybNw9r165Ffn6+pUAFAPPnz0d5eTnef/99vPjii/D29sZDDz2EN9980+bZiYiIyHmxp1QT7L1XBBEREYnDcYIJrwMRERHdSnPHCVy+R0RERERERERENseiFBERERERERER2RyLUkREREREREREZHMsShERERERERERkc2xKEVERERERERERDbHohQREREREREREdkci1JERERERERERGRzLEoREREREREREZHNsShFREREREREREQ2x6IUERERERERERHZHItSRERERERERERkcyxKERERERERERGRzbEoRURERERERERENseiFBERERERERER2RyLUkREREREREREZHMsShERERERERERkc2xKEVERERERERERDanEh3AHsmyDAAoKysTnISI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sk6nkzt27Cj/4Q9/aLRFLq9969i7d2+TP9/nzZsny3LrXeeTJ0/Kw4cPl7VarRwaGiqvWLHCVm+RboPjpdbF8ZJ94XjJdjheEoPjJdtpC+MlSZZl+d7nWxERERERERERETUfe0oREREREREREZHNsShFREREREREREQ2x6IUERERERERERHZHItSRERERERERERkcyxKERERERERERGRzbEoRURERERERERENseiFBERERERERER2RyLUkREREREREREZHMsShGRcCNHjsTSpUut9vyZmZmQJAkpKSlWew1baUvvhYiIiJqP46Xma0vvhaitY1GKiFrd/PnzIUkSnn766Z89FhsbC0mSMH/+fMt9mzdvxuuvv27DhPdm7dq18Pb2FvLaYWFhyM/PR69evYS8PhEREbUOjpesh+MlIsfBohQRWUVYWBji4+NRXV1tua+mpgYbNmxAeHh4o2N9fHzg4eFh64jCGQwGGI3GFp2jVCoRFBQElUplpVRERERkKxwv3RnHS0RtG4tSRGQV/fv3R1hYGDZv3my5b/PmzQgPD0e/fv0aHfvT6egRERH485//jIULF8LDwwPh4eH46KOPbvt6RqMRb731Fjp37gytVovw8HC88cYbTR7b1Cd3W7duhSRJlq9PnjyJBx98EB4eHvD09MSAAQNw7Ngx7Nu3DwsWLEBpaSkkSYIkSXjttdcAALW1tfjNb36D0NBQuLm5YciQIdi3b9/PXnfbtm3o0aMHtFotsrKyfpbvxo0bmD17Nvz9/eHi4oIuXbpgzZo1AH4+Hd38KetPb+bXvVMmIiIiEofjJY6XiJwdi1JEZDULFy60DA4AYPXq1ViwYEGzzv3rX/+KgQMH4sSJE3j22WfxzDPPIC0t7ZbHL1u2DCtWrMArr7yCs2fPYsOGDQgMDLzr7LNnz0b79u1x9OhRJCcn43e/+x3UajWGDRuGv//97/D09ER+fj7y8/Pxm9/8BgAQFxeHxMRExMfH49SpU5g+fTrGjRuHixcvWp63qqoKb775Jj7++GOcOXMGAQEBP3tt83v49ttvce7cOaxcuRJ+fn5N5vzHP/5hyZGfn48lS5YgICAAUVFRzc5ERERE4nC8xPESkVOTiYha2bx58+TJkyfLhYWFslarlTMzM+XMzExZp9PJ165dkydPnizPmzfPcvwDDzwgL1myxPJ1hw4d5CeffNLytdFolAMCAuSVK1c2+XplZWWyVquV//3vfzf5eEZGhgxAPnHihCzLsrxmzRrZy8ur0TFbtmyRb/6R6OHhIa9du7bJ52vq/CtXrshKpVLOzc1tdP+oUaPkZcuWWc4DIKekpDT5vGYTJ06UFyxY0Kz3crMvv/xS1ul0ckJCQrMzERERkRgcL/2I4yUi58VFtkRkNf7+/pgwYQLWrl0LWZYxYcKEW36C9VN9+vSx/LskSQgKCkJhYWGTx547dw61tbUYNWpUq+QGgBdeeAG//OUv8emnn2L06NGYPn06OnXqdMvjT58+DYPBgK5duza6v7a2Fr6+vpavNRpNo/fWlGeeeQbTpk3D8ePHMWbMGEyZMgXDhg277TknTpzAnDlz8P777yMmJqZFmYiIiEgcjpc4XiJyZixKEZFVLVy4EHFxcQCADz74oNnnqdXqRl9LknTLJpcuLi4tyqRQKCDLcqP79Hp9o69fe+01PPHEE/jmm2/w7bff4o9//CPi4+Px6KOPNvmcFRUVUCqVSE5OhlKpbPSYu7t7o6w392Joyvjx43HlyhXs2LEDu3btwqhRoxAbG4u33367yeMLCgowadIk/PKXv8SiRYtanImIiIjE4niJ4yUiZ8WeUkRkVePGjUNdXR30ej3Gjh1rldfo0qULXFxcsHv37mYd7+/vj/LyclRWVlruMzfCvFnXrl3x/PPP4/vvv8fUqVMt/R40Gg0MBkOjY/v16weDwYDCwkJ07ty50S0oKKjF78nf3x/z5s3DunXr8Pe///2WjUtramowefJkREVF4Z133rFqJiIiIrIOjpc4XiJyVpwpRURWpVQqce7cOcu/W4NOp8PLL7+M3/72t9BoNIiJicG1a9dw5syZRp+EmQ0ZMgSurq74/e9/j8WLFyMpKQlr1661PF5dXY2XXnoJjz32GCIjI5GTk4OjR49i2rRpAEy73VRUVGD37t3o27cvXF1d0bVrV8yePRtz587FX//6V/Tr1w/Xrl3D7t270adPH0yYMKHZ7+fVV1/FgAED0LNnT9TW1mL79u3o3r17k8f++te/RnZ2Nnbv3o1r165Z7vfx8WnVTERERGQ9HC9xvETkrDhTioisztPTE56enlZ9jVdeeQUvvvgiXn31VXTv3h0zZsy4ZU8FHx8frFu3Djt27EDv3r2xceNGyzbFgGkweP36dcydOxddu3bF448/jvHjx+N///d/AQDDhg3D008/jRkzZsDf3x9vvfUWAGDNmjWYO3cuXnzxRXTr1g1TpkzB0aNHER4e3qL3otFosGzZMvTp0wf3338/lEol4uPjmzx2//79yM/PR48ePRAcHGy5HTp0qFUzERERkXVxvMTxEpEzkuSfLhQmIiIiIiIiIiKyMs6UIiIiIiIiIiIim2NRioiIiIiIiIiIbI5FKSIiIiIiIiIisjkWpYiIiIiIiIiIyOZYlCIiIiIiIiIiIptjUYqIiIiIiIiIiGyORSkiIiIiIiIiIrI5FqWIiIiIiIiIiMjmWJQiIiIiIiIiIiKbY1GKiIiIiIiIiIhsjkUpIiIiIiIiIiKyORaliIiIiIiIiIjI5v4fEQwZdIM+iEYAAAAASUVORK5CYII=", "text/plain": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(12, 6))\n", "\n", "ax1.plot(min_clusters, con_time, label='k-means-constrained')\n", "\n", "ax1.set_xlabel('Min cluster size')\n", "ax1.set_ylabel('Time (s)')\n", "#ax1.set_title('First Plot')\n", "ax1.legend()\n", "\n", "ax2.plot(min_clusters, con_mem, label='k-means-constrained')\n", "\n", "ax2.set_xlabel('Min cluster size')\n", "ax2.set_ylabel('Peak memory (bytes)')\n", "#ax2.set_title('Second Plot')\n", "ax2.legend()\n", "\n", "plt.tight_layout()\n", "\n", "plt.show()" ] }, { "cell_type": "code", "execution_count": 62, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "k-means-constrained: 100%|██████████| 9/9 [13:45<00:00, 91.77s/it] \n" ] } ], "source": [ "# Fixed x, d, k. Increase max_cluster\n", "x = 10000\n", "d = 10\n", "k = 100 #list(range(1, x//2, 10))\n", "min_clusters = None\n", "max_clusters = [100, 250, 500, 750, 1000, 2500, 5000, 7500, 10000]\n", "#km_time, km_mem = list(zip(*[run_km(x, d, k)]))\n", "con_time, con_mem = list(zip(*[run_km_constrained(x, d, k, max_clusters=mc) for mc in tqdm(max_clusters, desc='k-means-constrained')]))" ] }, { "cell_type": "code", "execution_count": 63, "metadata": {}, "outputs": [ { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAABKMAAAJOCAYAAABr8MR3AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8pXeV/AAAACXBIWXMAAA9hAAAPYQGoP6dpAADOA0lEQVR4nOzdeVhUdfsG8PvMxr4vAoqiILiDC264YJppvZYtmkuipa1qadpim1n+srdXWy0rK83SaFMrM81MXHEBxD0QUFAR2QRkG5iZ8/tjmFFSlGWYw8zcn+viel9mzjnzICmHe77P8xVEURRBRERERERERERkBjKpCyAiIiIiIiIiItvBMIqIiIiIiIiIiMyGYRQREREREREREZkNwygiIiIiIiIiIjIbhlFERERERERERGQ2DKOIiIiIiIiIiMhsGEYREREREREREZHZMIwiIiIiIiIiIiKzYRhFRERERERERERmwzCKiIiIiIiIiIjMhmEUERERETXKrl27MGbMGAQEBEAQBGzcuLFB57/++usQBOG6Dycnp+YpmIiIiFoEhlFERERE1ChlZWUIDw/Hxx9/3Kjz58+fj4sXL9b66NKlC8aNG2fiSomIiKglYRhFRERERI0yevRoLF68GPfee+8Nn1er1Zg/fz5at24NJycn9OvXD3FxccbnnZ2d4efnZ/y4dOkSTp48ienTp5vpKyAiIiIpMIwiIiIiomYxa9YsxMfHIzY2FkePHsW4ceMwatQonD59+obHf/HFFwgNDcXgwYPNXCkRERGZE8MoIiIiIjK5rKwsrFq1Cj/++CMGDx6M4OBgzJ8/H4MGDcKqVauuO76yshJr167lqigiIiIboJC6ACIiIiKyPseOHYNWq0VoaGitx9VqNby8vK47fsOGDbhy5QqmTp1qrhKJiIhIIgyjiIiIiMjkSktLIZfLkZiYCLlcXus5Z2fn647/4osv8J///AetWrUyV4lEREQkEYZRRERERGRyPXv2hFarRW5u7i1nQJ05cwY7duzAr7/+aqbqiIiISEoMo4iIiIioUUpLS5GWlmb8/MyZM0hOToanpydCQ0MxefJkxMTEYNmyZejZsyfy8vKwfft29OjRA3fddZfxvK+++gr+/v4YPXq0FF8GERERmZkgiqIodRFEREREZHni4uIwbNiw6x6fOnUqVq9ejerqaixevBhr1qzB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fnXUhsMXcPxCscQVERGZX6lag4dXH0JGfhlauztgzfS+cHdU3fK8nm3d4WKnQGFZFY7y308yMYZRVkj97wHmXBlFRERENqpHG3eMjQiAKAL/9/upBs0rJSKydGqNFo+tScDR88XwdFJhzfS+8HdzqNe5SrkMgzp6AwDiuKsemRjDKCtkbNP718yoCoZRREREZIPm3xEGlUKG+IwC7OAvVERkI7Q6EXO/T8a+9AI4qeRY/XAkgn2cG3QN49yoVM6NItNiGGWFrs6M4gBzIiIiojYejngkqj0A4K3N/0Cj5T0REVk3URTx6i/HsflYDlRyGT6P6YMebdwbfJ0hofowKvlcES6XVZm4SrJlDKOskHE3PRVnRhEREREBwFPDguHhqERabim+TzgndTlERM3qvW2pWHcgC4IAvD8hAlEh3o26jr+bAzr5uUAUgV2nuTqKTIdhlBUyDjBXcDc9IiIiIgBwtVfimeEdAeh/SStVaySuiIioeazaewYf/p0GAHjznm64s7t/k643lK161AwYRlkhtukRERERXW9Sv3Zo7+2E/NIqfLYzXepyiIhM7pfkC1j020kAwLO3h+Kh/u2afM3oUF8AwK7UPOh03ASCTINhlBUytukpa7fpcYA5ERER2TKVQoYXRnUCAKzcnYGLxRUSV0REZDpxKbmY98MRAMC0gUGYfVuISa7bu50HnFRy5JdW4UR2iUmuScQwygpdXRklq/lftukRERERAcAdXVshMsgDldU6LPszVepyiIhMIjHzMp78NgkanYi7wwPw2n+6QBAEk1xbpZAZZ07FcUdSMhGGUVao7jY9hlFERERk2wRBwEt3dgYA/Jx0HieyiyWuiIioaVIvXcEjqw+holqLIaE+WDouHDKZaYIog+gwfase50aRqTCMskLGNj0FZ0YRERER/VvPth4YEx4AUQTe2nwKosgZKERkmc5fLkfMlwdRXFGNiEB3fPpQL6gUpv813zDEPCnrMorLq01+fbI9DKOskHE3PSV30yMiIiK6kefvCINKLsPetALE8Z1+IrJABaVqxHx5EDkllQjxdcaqaZFwVCma5bVauzugo68zdCKwO43/ZlLTMYyyQte36clqPU5ERERk6wI9HTEtKggAsGTzKWi0XEFORJajVK3Bw6sPISO/DAFu9vhmel94OKma9TWja1ZH7UxhGEVNxzDKyoii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JYorqnHkfBF6t/OUuiS6gUaFUQDQu3dv9O7du9Zjd911V5MLovozhEh2jZ0ZVdPeV8GZUURERGaTlJSEVatW4bvvvoNMJkNMTAzee+89dOrUyXjMvffei8jISAmrJCIiskxymYDBHb2x6ehFxKXkMYxqoerd3/X222+joqKiXsceOHAAv//+e6OLovqpNAwwVzSyTU/FmVFERETmFhkZidOnT2PFihW4cOECli5dWiuIAoD27dtjwoQJElVIRERk2aJrWvXiUjg3qqWq98qokydPom3bthg3bhzGjBmDPn36wMdHPxhMo9Hg5MmT2LNnD7799ltkZ2djzZo1zVY06TW1Tc+wMophFBERkXlotVp89dVXuPvuu+Hh4VHncU5OTli1apUZKyMiIrIeQ0K9AQDHLhQj74oaPi52EldE/1bvJTVr1qzBX3/9herqakyaNAl+fn5QqVRwcXGBnZ0devbsia+++goxMTH4559/MGTIkOasm9D0Aeb2nBlFRERkVnK5HI8//jiKioqkLoWIiMhq+brYo2uAKwBg92mujmqJGjQzKjw8HCtXrsRnn32Go0ePIjMzExUVFfD29kZERAS8vb2bq066gathVONWRjmoDGEUZ0YRERGZS7du3ZCRkYH27dtLXQoREZHVig7zwYnsEsSl5OG+Xm2kLof+pVEDzGUyGSIiIhAREWHicqgh1JqaNj1FI3fTq5k1VcGVUURERGazePFizJ8/H2+++SZ69+4NJyenWs+7urpKVBkREZH1iA7zxcc70rHrdB60OhFymSB1SXSNRu+mR9Jrapve1ZVRDKOIiIjM5c477wQA3H333RCEqzfGoihCEARotfy5TERE1FQ9A93hYq9AUXk1jp4vQs+2dc9qJPNjGGXBmtqmZxxgrmGbHhERkbns2LFD6hKIiIisnkIuw+CO3th8LAdxKXkMo1oYhlEWzNBeZ9fYMMowwLyK78ASERGZy9ChQ6UugYiIyCZEh/rqw6jUPMy9PVTqcugajevvohbBMHi88W16+vMqNQyjiIiIzKmoqAjLli3DjBkzMGPGDLz33nsoLi5u0DWWLFmCyMhIuLi4wNfXF2PHjkVKSkq9z4+NjYUgCBg7dmwDqyciIrIMQ8N8AABHzxehoFQtcTV0rSaFUWlpadi6dSsqKioA6GcdkPkY2/QaOcDc2KbHmVFERERm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z5499cMPP6h9+/by8vKSJM2fP19TpkzRO++8oy5dumjz5s2699571aBBA40ZM8b+2k899ZRef/11denSRT4+Pme993//+1+98cYbWrhwodq3b6+MjAxt3br1nHXedtttuuGGG+x/T0xM1KhRo5SQkHBJNQEAAOdj7cTaCYAkAwAuw5gxY4zhw4cbWVlZhre3t7F//35j//79ho+Pj5GdnW0MHz7cGDNmzHmfn52dbUgytm3bZr/v2LFjRpMmTYwHH3zQiIiIMF588cUL1hAfH2+MHDnyvI83a9bMeOONNwzDMIx9+/YZkozNmzfbHz9+/LghyVixYoVhGIYxbNgwY9y4ced8rXM93zAMo2XLlsaCBQuq3Pf8888b8fHxVZ735ptvXvCzvP7660br1q2NkpKSi36WM+3Zs8do1KiRMW3atGrXBAAAnI+1kw1rJwCGYRi06QG4ImFhYRo6dKjmzJmj2bNna+jQoQoNDT3ruN27d+uOO+5QixYtFBgYqObNm0uS0tPT7cc0bNhQH374oaZPn66WLVvqqaeeuuB7b9myRQMHDqyxz/Lggw9q4cKFuvrqq/XEE09o9erVFzy+sLBQe/fu1d133y1/f3/77YUXXqiyjV6SunfvfsHXuuWWW1RcXKwWLVro3nvv1aJFi1RWVnbB5+Tl5enGG2/U0KFD9fjjj19yTQAAwPlYO7F2AkCbHoAacNddd2nChAmSpHffffecxwwbNkzNmjXTzJkzFR0dLavVqg4dOqikpKTKcStXrpS7u7uOHDmiwsJCBQQEnPd9fX19q12jm5stezcMw37f74dhDhkyRAcOHNCSJUu0bNkyDRw4UOPHj9drr712ztc8ceKEJGnmzJnq1atXlcfc3d2r/L1BgwYXrC8mJkYpKSn64YcftGzZMj300EN69dVXlZSUJE9Pz7OOLy8v12233abAwEDNmDHjsmoCAADmYO3E2gmo79gZBeCK3XDDDSopKVFpaakGDx581uNHjx5VSkqKnn76aQ0cOFDt2rXT8ePHzzpu9erVeuWVV/T111/L39/fvkg7n06dOmn58uXVqjEsLEySdOTIEft957rUcFhYmMaMGaNPPvlEb775pn2xUjnnoLy83H5sRESEoqOjlZaWplatWlW5VQ7tvBS+vr4aNmyY3nrrLSUmJmrNmjXatm3bOY999NFHtW3bNi1evLjKHIWargkAANQ81k6snYD6jp1RAK6Yu7u7du3aZf/z7zVs2FAhISGaMWOGoqKilJ6eftY28oKCAo0aNUoTJ07UkCFD1KRJE/Xo0UPDhg3TzTfffM73ffbZZzVw4EC1bNlSt99+u8rKyrRkyRI9+eSTZx3r6+ur3r176+WXX1ZsbKyysrL09NNPVzlmypQp6tatm9q3b69Tp07pm2++Ubt27SRJ4eHh8vX11dKlS9WkSRP5+PgoKChI//jHPzRx4kQFBQXphhtu0KlTp7Rx40YdP35cjz32WLXP4Zw5c1ReXq5evXrJz89Pn3zyiXx9fdWsWbOzjp09e7bee+89LVq0SBaLRRkZGZJk31ZeUzUBAADHYO3E2gmo79gZBaBGBAYGKjAw8JyPubm5aeHChdq0aZM6dOigRx99VK+++mqVYx555BE1aNBAL730kiSpY8eOeumll3T//ffr0KFD53zd/v376/PPP9dXX32lq6++Wtddd53Wr19/3ho/+ugjlZWVqVu3bpo0aZJeeOGFKo97eXlp8uTJ6tSpk6699lq5u7tr4cKFkiQPDw+99dZb+uCDDxQdHa3hw4dLku655x7NmjVLs2fPVseOHdWvXz/NmTPnkn+TFhwcrJkzZyohIUGdOnXSDz/8oK+//lohISFnHZuUlKTy8nL98Y9/VFRUlP1WuSW+pmoCAACOw9qJtRNQn1mMM5uAAQAAAAAAAAdiZxQAAAAAAACchjAKAAAAAAAATkMYBQAAAAAAAKchjAIAAAAAAIDTEEYBAAAAAADAaQijAAAAAAAA4DSEUQAAAAAAAHAawigAAAAAAAA4DWEUAAAAAAAAnIYwCgAAAAAAAE5DGAUAAAAAAACnIYwCAAAAAACA0/x/RH3oBpHTPYMAAAAASUVORK5CYII=", "text/plain": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(12, 6))\n", "\n", "ax1.plot(max_clusters, con_time, label='k-means-constrained')\n", "\n", "ax1.set_xlabel('Max cluster size')\n", "ax1.set_ylabel('Time (s)')\n", "#ax1.set_title('First Plot')\n", "ax1.legend()\n", "\n", "ax2.plot(max_clusters, con_mem, label='k-means-constrained')\n", "\n", "ax2.set_xlabel('Max cluster size')\n", "ax2.set_ylabel('Peak memory (bytes)')\n", "#ax2.set_title('Second Plot')\n", "ax2.legend()\n", "\n", "plt.tight_layout()\n", "\n", "plt.show()" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.6" }, "orig_nbformat": 4 }, "nbformat": 4, "nbformat_minor": 2 } ================================================ FILE: etc/benchmark_k_means.py ================================================ #!/usr/bin/env python3 from argparse import ArgumentParser from sklearn.cluster import KMeans import numpy as np import time import os p = ArgumentParser() p.add_argument("-n", "--data-points", required=True, type=int, help="Number of data-points") p.add_argument("-d", "--dimensions", required=True, type=int, help="Number of dimensions/features each data-point has") p.add_argument("-K", "--clusters", required=True, type=int, help="Number of clusters") p.add_argument("-ge", "--min-cluster-size", default=None, help="Minimum number of clusters assigned to each data-point") p.add_argument("-le", "--max-cluster-size", default=None, help="Maximum number of clusters assigned to each data-point") p.add_argument("-s", "--seed", type=int, default=42, help="Random state seed") p.add_argument("-i", "--info", action='store_true', default=False , help="Print system info. `cpuinfo` is required to be installed.") args = p.parse_args() print(f"K-means benchmark: data-points={args.data_points}, dimensions={args.dimensions}, clusters={args.clusters}, min-cluster-size={args.min_cluster_size}, max-cluster-size={args.max_cluster_size}, seed={args.seed}") if args.info: import scipy, ortools, joblib, platform, cpuinfo, sklearn, k_means_constrained print(f"OS: {platform.platform()}") print(f"CPU: {cpuinfo.get_cpu_info()['brand_raw']}") print(f"CPU cores: {cpuinfo.get_cpu_info()['count']}") print(f"k-means-constrained version: {k_means_constrained.__version__}") print(f"numpy version: {np.__version__}") print(f"scipy version: {scipy.__version__}") print(f"ortools version: {ortools.__version__}") print(f"joblib version: {joblib.__version__}") print(f"sklearn version: {sklearn.__version__}") np.random.seed(args.seed) X = np.random.rand(args.data_points, args.dimensions) os.environ['OMP_NUM_THREADS'] = '10' # Used instead of joblib/n_jobs in latest version of sklearn t = time.perf_counter() clf = KMeans( n_clusters=args.clusters, random_state=args.seed+1, algorithm='lloyd', init='k-means++', n_init=10, max_iter=300, tol=0.0001, ) clf.fit_predict(X) total_time = time.perf_counter() - t print(f"Total time: {total_time:.2f} seconds") ================================================ FILE: etc/benchmark_k_means_constrained.py ================================================ #!/usr/bin/env python3 from argparse import ArgumentParser import k_means_constrained import numpy as np import time import logging import os p = ArgumentParser() p.add_argument("-n", "--data-points", required=True, type=int, help="Number of data-points") p.add_argument("-d", "--dimensions", required=True, type=int, help="Number of dimensions/features each data-point has") p.add_argument("-K", "--clusters", required=True, type=int, help="Number of clusters") p.add_argument("-ge", "--min-cluster-size", default=None, help="Minimum number of clusters assigned to each data-point") p.add_argument("-le", "--max-cluster-size", default=None, help="Maximum number of clusters assigned to each data-point") p.add_argument("-s", "--seed", type=int, default=42, help="Random state seed") p.add_argument("-i", "--info", action='store_true', default=False , help="Print system info. `cpuinfo` is required to be installed.") args = p.parse_args() logging.basicConfig( level=os.environ.get('LOGLEVEL', 'DEBUG').upper() ) print(f"K-mean-constrained benchmark: data-points={args.data_points}, dimensions={args.dimensions}, clusters={args.clusters}, min-cluster-size={args.min_cluster_size}, max-cluster-size={args.max_cluster_size}, seed={args.seed}") if args.info: import scipy, ortools, joblib, platform, cpuinfo, sklearn, k_means_constrained print(f"OS: {platform.platform()}") print(f"CPU: {cpuinfo.get_cpu_info()['brand_raw']}") print(f"CPU cores: {cpuinfo.get_cpu_info()['count']}") print(f"k-means-constrained version: {k_means_constrained.__version__}") print(f"numpy version: {np.__version__}") print(f"scipy version: {scipy.__version__}") print(f"ortools version: {ortools.__version__}") print(f"joblib version: {joblib.__version__}") print(f"sklearn version: {sklearn.__version__}") np.random.seed(args.seed) X = np.random.rand(args.data_points, args.dimensions) t = time.perf_counter() clf = k_means_constrained.KMeansConstrained( n_clusters=args.clusters, size_min=int(args.min_cluster_size) if args.min_cluster_size else None, size_max=int(args.max_cluster_size) if args.max_cluster_size else None, random_state=args.seed+1, #algorithm='lloyd', # implied init='k-means++', n_init=10, max_iter=300, tol=0.0001, n_jobs=10, ) clf.fit_predict(X) total_time = time.perf_counter() - t print(f"Total time: {total_time:.2f} seconds") ================================================ FILE: etc/cython_benchmark.ipynb ================================================ { "cells": [ { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [], "source": [ "import numpy as np\n", "from ortools.graph.pywrapgraph import SimpleMinCostFlow" ] }, { "cell_type": "code", "execution_count": 98, "metadata": {}, "outputs": [], "source": [ "# Create graph\n", "# 1 start and 1 stop. All intercenected via some nodes\n", "\n", "seed = 1\n", "n_int = int(1e7) # N intconecting_nodes\n", "\n", "edges = np.concatenate([\n", " np.stack([0*np.ones(n_int), np.arange(2, n_int+2)], axis=1),\n", " np.stack([np.arange(2, n_int+2), 1*np.ones(n_int)], axis=1)\n", "]).astype('int32')\n", "\n", "costs = np.random.randint(low=0, high=100, size=len(edges)).astype('int32')\n", "capacities = np.random.randint(low=1, high=n_int, size=len(edges)).astype('int32')\n", "\n", "supplies = np.concatenate([[1, -1], np.zeros(n_int)]).astype('int32')\n", "\n", "N_edges = edges.shape[0]\n", "N_nodes = len(supplies)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Current interface" ] }, { "cell_type": "code", "execution_count": 99, "metadata": {}, "outputs": [], "source": [ "min_cost_flow = SimpleMinCostFlow()" ] }, { "cell_type": "code", "execution_count": 100, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "CPU times: user 1min 15s, sys: 2.72 s, total: 1min 18s\n", "Wall time: 1min 30s\n" ] } ], "source": [ "%%time\n", "for i in range(0, N_edges):\n", " min_cost_flow.AddArcWithCapacityAndUnitCost(int(edges[i, 0]), int(edges[i, 1]),\n", " int(capacities[i]), int(costs[i]))" ] }, { "cell_type": "code", "execution_count": 101, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "CPU times: user 16.2 s, sys: 84 ms, total: 16.3 s\n", "Wall time: 18.2 s\n" ] } ], "source": [ "%%time\n", "for i in range(0, N_nodes):\n", " min_cost_flow.SetNodeSupply(i, int(supplies[i]))" ] }, { "cell_type": "code", "execution_count": 102, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "CPU times: user 16.6 s, sys: 3.89 s, total: 20.5 s\n", "Wall time: 23.3 s\n" ] } ], "source": [ "%%time\n", "if min_cost_flow.Solve() != min_cost_flow.OPTIMAL:\n", " raise Exception('There was an issue with the min cost flow input.')" ] }, { "cell_type": "code", "execution_count": 103, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "CPU times: user 19.7 s, sys: 504 ms, total: 20.2 s\n", "Wall time: 23.4 s\n" ] } ], "source": [ "%%time\n", "flow = np.array([min_cost_flow.Flow(i) for i in range(N_edges)])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Cython interface" ] }, { "cell_type": "code", "execution_count": 104, "metadata": {}, "outputs": [], "source": [ "min_cost_flow_vec = SimpleMinCostFlowVectorized()" ] }, { "cell_type": "code", "execution_count": 105, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "CPU times: user 11.3 s, sys: 664 ms, total: 12 s\n", "Wall time: 12.4 s\n" ] } ], "source": [ "%%time\n", "min_cost_flow_vec.AddArcWithCapacityAndUnitCostVectorized(edges[:,0], edges[:,1], capacities, costs)" ] }, { "cell_type": "code", "execution_count": 106, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "CPU times: user 3.37 s, sys: 12 ms, total: 3.38 s\n", "Wall time: 3.39 s\n" ] } ], "source": [ "%%time\n", "min_cost_flow_vec.SetNodeSupplyVectorized(np.arange(N_nodes, dtype='int32'), supplies)" ] }, { "cell_type": "code", "execution_count": 107, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "CPU times: user 15.2 s, sys: 3.63 s, total: 18.9 s\n", "Wall time: 20 s\n" ] } ], "source": [ "%%time\n", "if min_cost_flow_vec.Solve() != min_cost_flow_vec.OPTIMAL:\n", " raise Exception('There was an issue with the min cost flow input.')" ] }, { "cell_type": "code", "execution_count": 108, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "CPU times: user 8.31 s, sys: 296 ms, total: 8.61 s\n", "Wall time: 9.07 s\n" ] } ], "source": [ "%%time\n", "flow = min_cost_flow_vec.FlowVectorized(np.arange(N_edges, dtype='int32'))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "| Step | Current interface | Cython interface |\n", "|---------------|-------------------|------------------|\n", "| AddArc | 90 s | 12.4 s |\n", "| SetNodeSupply | 18.2 s | 3.39 ms |\n", "| Solve | 23.3 s | 20 s |\n", "| Flow | 23.4 s | 9.07 s |\n", "| **Total** | **154.9 s** | **41.1 s** |" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Time comparision" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Cython interface code" ] }, { "cell_type": "code", "execution_count": 76, "metadata": {}, "outputs": [], "source": [ "%%cython\n", "import numpy as np\n", "cimport numpy as np\n", "cimport cython\n", "\n", "from ortools.graph._pywrapgraph import \\\n", " SimpleMinCostFlow_AddArcWithCapacityAndUnitCost,\\\n", " SimpleMinCostFlow_SetNodeSupply,\\\n", " SimpleMinCostFlow_Flow\n", "\n", "DTYPE = np.int32\n", "ctypedef np.int32_t DTYPE_t\n", "\n", "\n", "@cython.boundscheck(False)\n", "@cython.wraparound(False)\n", "def SimpleMinCostFlow_AddArcWithCapacityAndUnitCostVectorized(\n", " self,\n", " np.ndarray[DTYPE_t, ndim=1] tail,\n", " np.ndarray[DTYPE_t, ndim=1] head,\n", " np.ndarray[DTYPE_t, ndim=1] capacity,\n", " np.ndarray[DTYPE_t, ndim=1] unit_cost):\n", "\n", " cdef int len = tail.shape[0]\n", "\n", " assert tail.dtype == DTYPE\n", " assert head.dtype == DTYPE\n", " assert capacity.dtype == DTYPE\n", " assert unit_cost.dtype == DTYPE\n", " assert head.shape[0] == len\n", " assert capacity.shape[0] == len\n", " assert unit_cost.shape[0] == len\n", "\n", " for i in range(len):\n", " SimpleMinCostFlow_AddArcWithCapacityAndUnitCost(self, tail[i], head[i], capacity[i], unit_cost[i])\n", "\n", "\n", "@cython.boundscheck(False)\n", "@cython.wraparound(False)\n", "def SimpleMinCostFlow_SetNodeSupplyVectorized(self,\n", " np.ndarray[DTYPE_t, ndim=1] node,\n", " np.ndarray[DTYPE_t, ndim=1] supply):\n", " cdef int len = node.shape[0]\n", "\n", " assert node.dtype == DTYPE\n", " assert supply.dtype == DTYPE\n", " assert supply.shape[0] == len\n", "\n", " for i in range(len):\n", " SimpleMinCostFlow_SetNodeSupply(self, node[i], supply[i])\n", "\n", "\n", "@cython.boundscheck(False)\n", "@cython.wraparound(False)\n", "def SimpleMinCostFlow_FlowVectorized(self,\n", " np.ndarray[DTYPE_t, ndim=1] arc):\n", "\n", " cdef int len = arc.shape[0]\n", "\n", " assert arc.dtype == DTYPE\n", "\n", " cdef np.ndarray flow = np.zeros(len, dtype=DTYPE)\n", "\n", " for i in range(len):\n", " flow[i] = SimpleMinCostFlow_Flow(self, arc[i])\n", "\n", " return flow" ] }, { "cell_type": "code", "execution_count": 77, "metadata": {}, "outputs": [], "source": [ "class SimpleMinCostFlowVectorized(SimpleMinCostFlow):\n", "\n", " def AddArcWithCapacityAndUnitCostVectorized(self, tail, head, capacity, unit_cost):\n", " return SimpleMinCostFlow_AddArcWithCapacityAndUnitCostVectorized(self, tail, head, capacity, unit_cost)\n", "\n", " def SetNodeSupplyVectorized(self, node, supply):\n", " return SimpleMinCostFlow_SetNodeSupplyVectorized(self, node, supply)\n", "\n", " def FlowVectorized(self, arc):\n", " return SimpleMinCostFlow_FlowVectorized(self, arc)" ] } ], "metadata": { "creator": "josh", "kernelspec": { "display_name": "Python (env python3_dataiku)", "language": "python", "name": "py-dku-venv-python3_dataiku" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.4" }, "tags": [] }, "nbformat": 4, "nbformat_minor": 1 } ================================================ FILE: k_means_constrained/__init__.py ================================================ __all__ = ['KMeansConstrained'] __version__ = '0.9.0' from .k_means_constrained_ import KMeansConstrained ================================================ FILE: k_means_constrained/k_means_constrained_.py ================================================ """k-means-constrained""" # Authors: Josh Levy-Kramer # Gael Varoquaux # Thomas Rueckstiess # James Bergstra # Jan Schlueter # Nelle Varoquaux # Peter Prettenhofer # Olivier Grisel # Mathieu Blondel # Robert Layton # License: BSD 3 clause import warnings import numpy as np import scipy.sparse as sp from .sklearn_import.metrics.pairwise import euclidean_distances from .sklearn_import.utils.extmath import row_norms, squared_norm, cartesian from .sklearn_import.utils.validation import check_array, check_random_state, as_float_array, check_is_fitted from joblib import Parallel from joblib import delayed # Internal scikit learn methods imported into this project from k_means_constrained.sklearn_import.cluster._k_means import _centers_dense, _centers_sparse from k_means_constrained.sklearn_import.cluster.k_means_ import _validate_center_shape, _tolerance, KMeans, \ _init_centroids from ortools.graph.python.min_cost_flow import SimpleMinCostFlow def k_means_constrained(X, n_clusters, size_min=None, size_max=None, init='k-means++', n_init=10, max_iter=300, verbose=False, tol=1e-4, random_state=None, copy_x=True, n_jobs=1, return_n_iter=False): """K-Means clustering with minimum and maximum cluster size constraints. Read more in the :ref:`User Guide `. Parameters ---------- X : array-like, shape (n_samples, n_features) The observations to cluster. size_min : int, optional, default: None Constrain the label assignment so that each cluster has a minimum size of size_min. If None, no constrains will be applied size_max : int, optional, default: None Constrain the label assignment so that each cluster has a maximum size of size_max. If None, no constrains will be applied n_clusters : int The number of clusters to form as well as the number of centroids to generate. init : {'k-means++', 'random', or ndarray, or a callable}, optional Method for initialization, default to 'k-means++': 'k-means++' : selects initial cluster centers for k-mean clustering in a smart way to speed up convergence. See section Notes in k_init for more details. 'random': generate k centroids from a Gaussian with mean and variance estimated from the data. If an ndarray is passed, it should be of shape (n_clusters, n_features) and gives the initial centers. If a callable is passed, it should take arguments X, k and and a random state and return an initialization. n_init : int, optional, default: 10 Number of time the k-means algorithm will be run with different centroid seeds. The final results will be the best output of n_init consecutive runs in terms of inertia. max_iter : int, optional, default 300 Maximum number of iterations of the k-means algorithm to run. verbose : boolean, optional Verbosity mode. tol : float, optional Relative tolerance with regards to Frobenius norm of the difference in the cluster centers of two consecutive iterations to declare convergence. random_state : int, RandomState instance or None, optional, default: None If int, random_state is the seed used by the random number generator; If RandomState instance, random_state is the random number generator; If None, the random number generator is the RandomState instance used by `np.random`. copy_x : boolean, optional When pre-computing distances it is more numerically accurate to center the data first. If copy_x is True, then the original data is not modified. If False, the original data is modified, and put back before the function returns, but small numerical differences may be introduced by subtracting and then adding the data mean. n_jobs : int The number of jobs to use for the computation. This works by computing each of the n_init runs in parallel. If -1 all CPUs are used. If 1 is given, no parallel computing code is used at all, which is useful for debugging. For n_jobs below -1, (n_cpus + 1 + n_jobs) are used. Thus for n_jobs = -2, all CPUs but one are used. return_n_iter : bool, optional Whether or not to return the number of iterations. Returns ------- centroid : float ndarray with shape (k, n_features) Centroids found at the last iteration of k-means. label : integer ndarray with shape (n_samples,) label[i] is the code or index of the centroid the i'th observation is closest to. inertia : float The final value of the inertia criterion (sum of squared distances to the closest centroid for all observations in the training set). best_n_iter : int Number of iterations corresponding to the best results. Returned only if `return_n_iter` is set to True. """ if sp.issparse(X): raise NotImplementedError("Not implemented for sparse X") if n_init <= 0: raise ValueError("Invalid number of initializations." " n_init=%d must be bigger than zero." % n_init) random_state = check_random_state(random_state) if max_iter <= 0: raise ValueError('Number of iterations should be a positive number,' ' got %d instead' % max_iter) X = as_float_array(X, copy=copy_x) tol = _tolerance(X, tol) # Validate init array if hasattr(init, '__array__'): init = check_array(init, dtype=X.dtype.type) _validate_center_shape(X, n_clusters, init) if n_init != 1: warnings.warn( 'Explicit initial center position passed: ' 'performing only one init in k-means instead of n_init=%d' % n_init, RuntimeWarning, stacklevel=2) n_init = 1 # subtract of mean of x for more accurate distance computations if not sp.issparse(X): X_mean = X.mean(axis=0) # The copy was already done above X -= X_mean if hasattr(init, '__array__'): init -= X_mean # precompute squared norms of data points x_squared_norms = row_norms(X, squared=True) best_labels, best_inertia, best_centers = None, None, None if n_jobs == 1: # For a single thread, less memory is needed if we just store one set # of the best results (as opposed to one set per run per thread). for it in range(n_init): # run a k-means once labels, inertia, centers, n_iter_ = kmeans_constrained_single( X, n_clusters, size_min=size_min, size_max=size_max, max_iter=max_iter, init=init, verbose=verbose, tol=tol, x_squared_norms=x_squared_norms, random_state=random_state) # determine if these results are the best so far if best_inertia is None or inertia < best_inertia: best_labels = labels.copy() best_centers = centers.copy() best_inertia = inertia best_n_iter = n_iter_ else: # parallelisation of k-means runs seeds = random_state.randint(np.iinfo(np.int32).max, size=n_init) results = Parallel(n_jobs=n_jobs, verbose=0)( delayed(kmeans_constrained_single)(X, n_clusters, size_min=size_min, size_max=size_max, max_iter=max_iter, init=init, verbose=verbose, tol=tol, x_squared_norms=x_squared_norms, # Change seed to ensure variety random_state=seed) for seed in seeds) # Get results with the lowest inertia labels, inertia, centers, n_iters = zip(*results) best = np.argmin(inertia) best_labels = labels[best] best_inertia = inertia[best] best_centers = centers[best] best_n_iter = n_iters[best] if not sp.issparse(X): if not copy_x: X += X_mean best_centers += X_mean if return_n_iter: return best_centers, best_labels, best_inertia, best_n_iter else: return best_centers, best_labels, best_inertia def kmeans_constrained_single(X, n_clusters, size_min=None, size_max=None, max_iter=300, init='k-means++', verbose=False, x_squared_norms=None, random_state=None, tol=1e-4): """A single run of k-means constrained, assumes preparation completed prior. Parameters ---------- X : array-like of floats, shape (n_samples, n_features) The observations to cluster. size_min : int, optional, default: None Constrain the label assignment so that each cluster has a minimum size of size_min. If None, no constrains will be applied size_max : int, optional, default: None Constrain the label assignment so that each cluster has a maximum size of size_max. If None, no constrains will be applied n_clusters : int The number of clusters to form as well as the number of centroids to generate. max_iter : int, optional, default 300 Maximum number of iterations of the k-means algorithm to run. init : {'k-means++', 'random', or ndarray, or a callable}, optional Method for initialization, default to 'k-means++': 'k-means++' : selects initial cluster centers for k-mean clustering in a smart way to speed up convergence. See section Notes in k_init for more details. 'random': generate k centroids from a Gaussian with mean and variance estimated from the data. If an ndarray is passed, it should be of shape (k, p) and gives the initial centers. If a callable is passed, it should take arguments X, k and and a random state and return an initialization. tol : float, optional Relative tolerance with regards to Frobenius norm of the difference in the cluster centers of two consecutive iterations to declare convergence. verbose : boolean, optional Verbosity mode x_squared_norms : array Precomputed x_squared_norms. random_state : int, RandomState instance or None, optional, default: None If int, random_state is the seed used by the random number generator; If RandomState instance, random_state is the random number generator; If None, the random number generator is the RandomState instance used by `np.random`. Returns ------- centroid : float ndarray with shape (k, n_features) Centroids found at the last iteration of k-means. label : integer ndarray with shape (n_samples,) label[i] is the code or index of the centroid the i'th observation is closest to. inertia : float The final value of the inertia criterion (sum of squared distances to the closest centroid for all observations in the training set). n_iter : int Number of iterations run. """ if sp.issparse(X): raise NotImplementedError("Not implemented for sparse X") random_state = check_random_state(random_state) n_samples = X.shape[0] best_labels, best_inertia, best_centers = None, None, None # init centers = _init_centroids(X, n_clusters, init, random_state=random_state, x_squared_norms=x_squared_norms) if verbose: print("Initialization complete") # Allocate memory to store the distances for each sample to its # closer center for reallocation in case of ties distances = np.zeros(shape=(n_samples,), dtype=X.dtype) # Determine min and max sizes if non given if size_min is None: size_min = 0 if size_max is None: size_max = n_samples # Number of data points # Check size min and max if not ((size_min >= 0) and (size_min <= n_samples) and (size_max >= 0) and (size_max <= n_samples)): raise ValueError("size_min and size_max must be a positive number smaller " "than the number of data points or `None`") if size_max < size_min: raise ValueError("size_max must be larger than size_min") if size_min * n_clusters > n_samples: raise ValueError("The product of size_min and n_clusters cannot exceed the number of samples (X)") if size_max * n_clusters < n_samples: raise ValueError("The product of size_max and n_clusters must be larger than or equal the number of samples (X)") # iterations for i in range(max_iter): centers_old = centers.copy() # labels assignment is also called the E-step of EM labels, inertia = \ _labels_constrained(X, centers, size_min, size_max, distances=distances) # computation of the means is also called the M-step of EM if sp.issparse(X): centers = _centers_sparse(X, labels, n_clusters, distances) else: centers = _centers_dense(X, labels, n_clusters, distances) if verbose: print("Iteration %2d, inertia %.3f" % (i, inertia)) if best_inertia is None or inertia < best_inertia: best_labels = labels.copy() best_centers = centers.copy() best_inertia = inertia center_shift_total = squared_norm(centers_old - centers) if center_shift_total <= tol: if verbose: print("Converged at iteration %d: " "center shift %e within tolerance %e" % (i, center_shift_total, tol)) break if center_shift_total > 0: # rerun E-step in case of non-convergence so that predicted labels # match cluster centers best_labels, best_inertia = \ _labels_constrained(X, centers, size_min, size_max, distances=distances) return best_labels, best_inertia, best_centers, i + 1 def _labels_constrained(X, centers, size_min, size_max, distances): """Compute labels using the min and max cluster size constraint This will overwrite the 'distances' array in-place. Parameters ---------- X : numpy array, shape (n_sample, n_features) Input data. size_min : int Minimum size for each cluster size_max : int Maximum size for each cluster centers : numpy array, shape (n_clusters, n_features) Cluster centers which data is assigned to. distances : numpy array, shape (n_samples,) Pre-allocated array in which distances are stored. Returns ------- labels : numpy array, dtype=np.int, shape (n_samples,) Indices of clusters that samples are assigned to. inertia : float Sum of squared distances of samples to their closest cluster center. """ C = centers # Distances to each centre C. (the `distances` parameter is the distance to the closest centre) # K-mean original uses squared distances but this equivalent for constrained k-means D = euclidean_distances(X, C, squared=False) edges, costs, capacities, supplies, n_C, n_X = minimum_cost_flow_problem_graph(X, C, D, size_min, size_max) labels = solve_min_cost_flow_graph(edges, costs, capacities, supplies, n_C, n_X) # cython k-means M step code assumes int32 inputs labels = labels.astype(np.int32) # Change distances in-place distances[:] = D[np.arange(D.shape[0]), labels] ** 2 # Square for M step of EM inertia = distances.sum() return labels, inertia def minimum_cost_flow_problem_graph(X, C, D, size_min, size_max): # Setup minimum cost flow formulation graph # Vertices indexes: # X-nodes: [0, n(x)-1], C-nodes: [n(X), n(X)+n(C)-1], C-dummy nodes:[n(X)+n(C), n(X)+2*n(C)-1], # Artificial node: [n(X)+2*n(C), n(X)+2*n(C)+1-1] # Create indices of nodes n_X = X.shape[0] n_C = C.shape[0] X_ix = np.arange(n_X) C_dummy_ix = np.arange(X_ix[-1] + 1, X_ix[-1] + 1 + n_C) C_ix = np.arange(C_dummy_ix[-1] + 1, C_dummy_ix[-1] + 1 + n_C) art_ix = C_ix[-1] + 1 # Edges edges_X_C_dummy = cartesian([X_ix, C_dummy_ix]) # All X's connect to all C dummy nodes (C') edges_C_dummy_C = np.stack([C_dummy_ix, C_ix], axis=1) # Each C' connects to a corresponding C (centroid) edges_C_art = np.stack([C_ix, art_ix * np.ones(n_C)], axis=1) # All C connect to artificial node edges = np.concatenate([edges_X_C_dummy, edges_C_dummy_C, edges_C_art]) # Costs costs_X_C_dummy = D.reshape(D.size) costs = np.concatenate([costs_X_C_dummy, np.zeros(edges.shape[0] - len(costs_X_C_dummy))]) # Capacities - can set for max-k capacities_C_dummy_C = size_max * np.ones(n_C) cap_non = n_X # The total supply and therefore wont restrict flow capacities = np.concatenate([ np.ones(edges_X_C_dummy.shape[0]), capacities_C_dummy_C, cap_non * np.ones(n_C) ]) # Sources and sinks supplies_X = np.ones(n_X) supplies_C = -1 * size_min * np.ones(n_C) # Demand node supplies_art = -1 * (n_X - n_C * size_min) # Demand node supplies = np.concatenate([ supplies_X, np.zeros(n_C), # C_dummies supplies_C, [supplies_art] ]) # All arrays must be of int dtype for `SimpleMinCostFlow` edges = edges.astype('int32') costs = np.around(costs * 1000, 0).astype('int32') # Times by 1000 to give extra precision capacities = capacities.astype('int32') supplies = supplies.astype('int32') return edges, costs, capacities, supplies, n_C, n_X def solve_min_cost_flow_graph(edges, costs, capacities, supplies, n_C, n_X): # Instantiate a SimpleMinCostFlow solver. min_cost_flow = SimpleMinCostFlow() if (edges.dtype != 'int32') or (costs.dtype != 'int32') \ or (capacities.dtype != 'int32') or (supplies.dtype != 'int32'): raise ValueError("`edges`, `costs`, `capacities`, `supplies` must all be int dtype") N_edges = edges.shape[0] N_nodes = len(supplies) # Add each edge with associated capacities and cost min_cost_flow.add_arcs_with_capacity_and_unit_cost(edges[:, 0], edges[:, 1], capacities, costs) # Add node supplies min_cost_flow.set_nodes_supplies(np.arange(len(supplies)), supplies) # Find the minimum cost flow between node 0 and node 4. if min_cost_flow.solve() != min_cost_flow.OPTIMAL: raise Exception('There was an issue with the min cost flow input.') # Assignment labels_M = np.array([min_cost_flow.flow(i) for i in range(n_X * n_C)]).reshape(n_X, n_C).astype('int32') labels = labels_M.argmax(axis=1) return labels class KMeansConstrained(KMeans): """K-Means clustering with minimum and maximum cluster size constraints Parameters ---------- n_clusters : int, optional, default: 8 The number of clusters to form as well as the number of centroids to generate. size_min : int, optional, default: None Constrain the label assignment so that each cluster has a minimum size of size_min. If None, no constrains will be applied size_max : int, optional, default: None Constrain the label assignment so that each cluster has a maximum size of size_max. If None, no constrains will be applied init : {'k-means++', 'random' or an ndarray} Method for initialization, defaults to 'k-means++': 'k-means++' : selects initial cluster centers for k-mean clustering in a smart way to speed up convergence. See section Notes in k_init for more details. 'random': choose k observations (rows) at random from data for the initial centroids. If an ndarray is passed, it should be of shape (n_clusters, n_features) and gives the initial centers. n_init : int, default: 10 Number of times the k-means algorithm will be run with different centroid seeds. The final results will be the best output of n_init consecutive runs in terms of inertia. max_iter : int, default: 300 Maximum number of iterations of the k-means algorithm for a single run. tol : float, default: 1e-4 Relative tolerance with regards to Frobenius norm of the difference in the cluster centers of two consecutive iterations to declare convergence. verbose : int, default 0 Verbosity mode. random_state : int, RandomState instance or None, optional, default: None If int, random_state is the seed used by the random number generator; If RandomState instance, random_state is the random number generator; If None, the random number generator is the RandomState instance used by `np.random`. copy_x : boolean, default True When pre-computing distances it is more numerically accurate to center the data first. If copy_x is True, then the original data is not modified. If False, the original data is modified, and put back before the function returns, but small numerical differences may be introduced by subtracting and then adding the data mean. n_jobs : int The number of jobs to use for the computation. This works by computing each of the n_init runs in parallel. If -1 all CPUs are used. If 1 is given, no parallel computing code is used at all, which is useful for debugging. For n_jobs below -1, (n_cpus + 1 + n_jobs) are used. Thus for n_jobs = -2, all CPUs but one are used. Attributes ---------- cluster_centers_ : array, [n_clusters, n_features] Coordinates of cluster centers labels_ : Labels of each point inertia_ : float Sum of squared distances of samples to their closest cluster center. Examples -------- >>> from k_means_constrained import KMeansConstrained >>> import numpy as np >>> X = np.array([[1, 2], [1, 4], [1, 0], ... [4, 2], [4, 4], [4, 0]]) >>> clf = KMeansConstrained( ... n_clusters=2, ... size_min=2, ... size_max=5, ... random_state=0 ... ) >>> clf.fit_predict(X) array([0, 0, 0, 1, 1, 1], dtype=int32) >>> clf.cluster_centers_ array([[ 1., 2.], [ 4., 2.]]) >>> clf.labels_ array([0, 0, 0, 1, 1, 1], dtype=int32) Notes ------ K-means problem constrained with a minimum and/or maximum size for each cluster. The constrained assignment is formulated as a Minimum Cost Flow (MCF) linear network optimisation problem. This is then solved using a cost-scaling push-relabel algorithm. The implementation used is Google's Operations Research tools's `SimpleMinCostFlow`. Ref: 1. Bradley, P. S., K. P. Bennett, and Ayhan Demiriz. "Constrained k-means clustering." Microsoft Research, Redmond (2000): 1-8. 2. Google's SimpleMinCostFlow implementation: https://github.com/google/or-tools/blob/master/ortools/graph/min_cost_flow.h """ def __init__(self, n_clusters=8, size_min=None, size_max=None, init='k-means++', n_init=10, max_iter=300, tol=1e-4, verbose=False, random_state=None, copy_x=True, n_jobs=1): self.size_min = size_min self.size_max = size_max super().__init__(n_clusters=n_clusters, init=init, n_init=n_init, max_iter=max_iter, tol=tol, verbose=verbose, random_state=random_state, copy_x=copy_x, n_jobs=n_jobs) def fit(self, X, y=None): """Compute k-means clustering with given constants. Parameters ---------- X : array-like, shape=(n_samples, n_features) Training instances to cluster. y : Ignored """ if sp.issparse(X): raise NotImplementedError("Not implemented for sparse X") random_state = check_random_state(self.random_state) X = self._check_fit_data(X) self.cluster_centers_, self.labels_, self.inertia_, self.n_iter_ = \ k_means_constrained( X, n_clusters=self.n_clusters, size_min=self.size_min, size_max=self.size_max, init=self.init, n_init=self.n_init, max_iter=self.max_iter, verbose=self.verbose, tol=self.tol, random_state=random_state, copy_x=self.copy_x, n_jobs=self.n_jobs, return_n_iter=True) return self def predict(self, X, size_min='init', size_max='init'): """ Predict the closest cluster each sample in X belongs to given the provided constraints. The constraints can be temporally overridden when determining which cluster each datapoint is assigned to. Only computes the assignment step. It does not re-fit the cluster positions. Parameters ---------- X : array-like, shape = [n_samples, n_features] New data to predict. size_min : int, optional, default: size_min provided with initialisation Constrain the label assignment so that each cluster has a minimum size of size_min. If None, no constrains will be applied. If 'init' the value provided during initialisation of the class will be used. size_max : int, optional, default: size_max provided with initialisation Constrain the label assignment so that each cluster has a maximum size of size_max. If None, no constrains will be applied. If 'init' the value provided during initialisation of the class will be used. Returns ------- labels : array, shape [n_samples,] Index of the cluster each sample belongs to. """ if sp.issparse(X): raise NotImplementedError("Not implemented for sparse X") if size_min == 'init': size_min = self.size_min if size_max == 'init': size_max = self.size_max n_clusters = self.n_clusters n_samples = X.shape[0] check_is_fitted(self, 'cluster_centers_') X = self._check_test_data(X) # Allocate memory to store the distances for each sample to its # closer center for reallocation in case of ties distances = np.zeros(shape=(n_samples,), dtype=X.dtype) # Determine min and max sizes if non given if size_min is None: size_min = 0 if size_max is None: size_max = n_samples # Number of data points # Check size min and max if not ((size_min >= 0) and (size_min <= n_samples) and (size_max >= 0) and (size_max <= n_samples)): raise ValueError("size_min and size_max must be a positive number smaller " "than the number of data points or `None`") if size_max < size_min: raise ValueError("size_max must be larger than size_min") if size_min * n_clusters > n_samples: raise ValueError("The product of size_min and n_clusters cannot exceed the number of samples (X)") labels, inertia = \ _labels_constrained(X, self.cluster_centers_, size_min, size_max, distances=distances) return labels def fit_predict(self, X, y=None): """Compute cluster centers and predict cluster index for each sample. Equivalent to calling fit(X) followed by predict(X) but also more efficient. Parameters ---------- X : {array-like, sparse matrix}, shape = [n_samples, n_features] New data to transform. Returns ------- labels : array, shape [n_samples,] Index of the cluster each sample belongs to. """ return self.fit(X).labels_ ================================================ FILE: k_means_constrained/sklearn_import/README ================================================ Code taken from and slightly modified: https://github.com/scikit-learn/scikit-learn/tree/0.19.X/sklearn/cluster Subject to Scikit-Learn licence: New BSD License Copyright (c) 2007–2019 The scikit-learn developers. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: a. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. b. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. c. Neither the name of the Scikit-learn Developers nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ================================================ FILE: k_means_constrained/sklearn_import/__init__.py ================================================ import os def get_config(): """Retrieve current values for configuration set by :func:`set_config` Returns ------- config : dict Keys are parameter names that can be passed to :func:`set_config`. """ return {'assume_finite': _ASSUME_FINITE} __version__ = '0.19.2' _ASSUME_FINITE = bool(os.environ.get('SKLEARN_ASSUME_FINITE', False)) ================================================ FILE: k_means_constrained/sklearn_import/base.py ================================================ import warnings from collections import defaultdict import numpy as np import six from k_means_constrained.sklearn_import import __version__ from k_means_constrained.sklearn_import.funcsigs import signature class BaseEstimator(object): """Base class for all estimators in scikit-learn Notes ----- All estimators should specify all the parameters that can be set at the class level in their ``__init__`` as explicit keyword arguments (no ``*args`` or ``**kwargs``). """ @classmethod def _get_param_names(cls): """Get parameter names for the estimator""" # fetch the constructor or the original constructor before # deprecation wrapping if any init = getattr(cls.__init__, 'deprecated_original', cls.__init__) if init is object.__init__: # No explicit constructor to introspect return [] # introspect the constructor arguments to find the model parameters # to represent init_signature = signature(init) # Consider the constructor parameters excluding 'self' parameters = [p for p in init_signature.parameters.values() if p.name != 'self' and p.kind != p.VAR_KEYWORD] for p in parameters: if p.kind == p.VAR_POSITIONAL: raise RuntimeError("scikit-learn estimators should always " "specify their parameters in the signature" " of their __init__ (no varargs)." " %s with constructor %s doesn't " " follow this convention." % (cls, init_signature)) # Extract and sort argument names excluding 'self' return sorted([p.name for p in parameters]) def get_params(self, deep=True): """Get parameters for this estimator. Parameters ---------- deep : boolean, optional If True, will return the parameters for this estimator and contained subobjects that are estimators. Returns ------- params : mapping of string to any Parameter names mapped to their values. """ out = dict() for key in self._get_param_names(): # We need deprecation warnings to always be on in order to # catch deprecated param values. # This is set in utils/__init__.py but it gets overwritten # when running under python3 somehow. warnings.simplefilter("always", DeprecationWarning) try: with warnings.catch_warnings(record=True) as w: value = getattr(self, key, None) if len(w) and w[0].category == DeprecationWarning: # if the parameter is deprecated, don't show it continue finally: warnings.filters.pop(0) # XXX: should we rather test if instance of estimator? if deep and hasattr(value, 'get_params'): deep_items = value.get_params().items() out.update((key + '__' + k, val) for k, val in deep_items) out[key] = value return out def set_params(self, **params): """Set the parameters of this estimator. The method works on simple estimators as well as on nested objects (such as pipelines). The latter have parameters of the form ``__`` so that it's possible to update each component of a nested object. Returns ------- self """ if not params: # Simple optimization to gain speed (inspect is slow) return self valid_params = self.get_params(deep=True) nested_params = defaultdict(dict) # grouped by prefix for key, value in params.items(): key, delim, sub_key = key.partition('__') if key not in valid_params: raise ValueError('Invalid parameter %s for estimator %s. ' 'Check the list of available parameters ' 'with `estimator.get_params().keys()`.' % (key, self)) if delim: nested_params[key][sub_key] = value else: setattr(self, key, value) for key, sub_params in nested_params.items(): valid_params[key].set_params(**sub_params) return self def __repr__(self): class_name = self.__class__.__name__ return '%s(%s)' % (class_name, _pprint(self.get_params(deep=False), offset=len(class_name),),) def __getstate__(self): try: state = super(BaseEstimator, self).__getstate__() except AttributeError: state = self.__dict__.copy() if type(self).__module__.startswith('sklearn.'): return dict(state.items(), _sklearn_version=__version__) else: return state def __setstate__(self, state): if type(self).__module__.startswith('sklearn.'): pickle_version = state.pop("_sklearn_version", "pre-0.18") if pickle_version != __version__: warnings.warn( "Trying to unpickle estimator {0} from version {1} when " "using version {2}. This might lead to breaking code or " "invalid results. Use at your own risk.".format( self.__class__.__name__, pickle_version, __version__), UserWarning) try: super(BaseEstimator, self).__setstate__(state) except AttributeError: self.__dict__.update(state) class ClusterMixin(object): """Mixin class for all cluster estimators in scikit-learn.""" _estimator_type = "clusterer" def fit_predict(self, X, y=None): """Performs clustering on X and returns cluster labels. Parameters ---------- X : ndarray, shape (n_samples, n_features) Input data. Returns ------- y : ndarray, shape (n_samples,) cluster labels """ # non-optimized default implementation; override when a better # method is possible for a given clustering algorithm self.fit(X) return self.labels_ class TransformerMixin(object): """Mixin class for all transformers in scikit-learn.""" def fit_transform(self, X, y=None, **fit_params): """Fit to data, then transform it. Fits transformer to X and y with optional parameters fit_params and returns a transformed version of X. Parameters ---------- X : numpy array of shape [n_samples, n_features] Training set. y : numpy array of shape [n_samples] Target values. Returns ------- X_new : numpy array of shape [n_samples, n_features_new] Transformed array. """ # non-optimized default implementation; override when a better # method is possible for a given clustering algorithm if y is None: # fit method of arity 1 (unsupervised transformation) return self.fit(X, **fit_params).transform(X) else: # fit method of arity 2 (supervised transformation) return self.fit(X, y, **fit_params).transform(X) def _pprint(params, offset=0, printer=repr): """Pretty print the dictionary 'params' Parameters ---------- params : dict The dictionary to pretty print offset : int The offset in characters to add at the begin of each line. printer : callable The function to convert entries to strings, typically the builtin str or repr """ # Do a multi-line justified repr: options = np.get_printoptions() np.set_printoptions(precision=5, threshold=64, edgeitems=2) params_list = list() this_line_length = offset line_sep = ',\n' + (1 + offset // 2) * ' ' for i, (k, v) in enumerate(sorted(six.iteritems(params))): if type(v) is float: # use str for representing floating point numbers # this way we get consistent representation across # architectures and versions. this_repr = '%s=%s' % (k, str(v)) else: # use repr of the rest this_repr = '%s=%s' % (k, printer(v)) if len(this_repr) > 500: this_repr = this_repr[:300] + '...' + this_repr[-100:] if i > 0: if (this_line_length + len(this_repr) >= 75 or '\n' in this_repr): params_list.append(line_sep) this_line_length = len(line_sep) else: params_list.append(', ') this_line_length += 2 params_list.append(this_repr) this_line_length += len(this_repr) np.set_printoptions(**options) lines = ''.join(params_list) # Strip trailing space to avoid nightmare in doctests lines = '\n'.join(l.rstrip(' ') for l in lines.split('\n')) return lines ================================================ FILE: k_means_constrained/sklearn_import/cluster/__init__.py ================================================ ================================================ FILE: k_means_constrained/sklearn_import/cluster/_k_means.pyx ================================================ # cython: profile=True # distutils: define_macros=NPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION # Profiling is enabled by default as the overhead does not seem to be measurable # on this specific use case. # Author: Peter Prettenhofer # Olivier Grisel # Lars Buitinck # # License: BSD 3 clause import numpy as np cimport numpy as np cimport cython from cython cimport floating from k_means_constrained.sklearn_import.utils.sparsefuncs_fast import assign_rows_csr ctypedef np.float64_t DOUBLE ctypedef np.int32_t INT ctypedef floating (*DOT)(int N, floating *X, int incX, floating *Y, int incY) np.import_array() @cython.boundscheck(False) @cython.wraparound(False) @cython.cdivision(True) def _centers_dense(np.ndarray[floating, ndim=2] X, np.ndarray[INT, ndim=1] labels, int n_clusters, np.ndarray[floating, ndim=1] distances): """M step of the K-means EM algorithm Computation of cluster centers / means. Parameters ---------- X : array-like, shape (n_samples, n_features) labels : array of integers, shape (n_samples) Current label assignment n_clusters : int Number of desired clusters distances : array-like, shape (n_samples) Distance to closest cluster for each sample. Returns ------- centers : array, shape (n_clusters, n_features) The resulting centers """ ## TODO: add support for CSR input cdef int n_samples, n_features n_samples = X.shape[0] n_features = X.shape[1] cdef int i, j, c cdef np.ndarray[floating, ndim=2] centers if floating is float: centers = np.zeros((n_clusters, n_features), dtype=np.float32) else: centers = np.zeros((n_clusters, n_features), dtype=np.float64) n_samples_in_cluster = np.bincount(labels, minlength=n_clusters) empty_clusters = np.where(n_samples_in_cluster == 0)[0] # maybe also relocate small clusters? if len(empty_clusters): # find points to reassign empty clusters to far_from_centers = distances.argsort()[::-1] for i, cluster_id in enumerate(empty_clusters): # XXX two relocated clusters could be close to each other new_center = X[far_from_centers[i]] centers[cluster_id] = new_center n_samples_in_cluster[cluster_id] = 1 for i in range(n_samples): for j in range(n_features): centers[labels[i], j] += X[i, j] centers /= n_samples_in_cluster[:, np.newaxis] return centers @cython.boundscheck(False) @cython.wraparound(False) @cython.cdivision(True) def _centers_sparse(X, np.ndarray[INT, ndim=1] labels, n_clusters, np.ndarray[floating, ndim=1] distances): """M step of the K-means EM algorithm Computation of cluster centers / means. Parameters ---------- X : scipy.sparse.csr_matrix, shape (n_samples, n_features) labels : array of integers, shape (n_samples) Current label assignment n_clusters : int Number of desired clusters distances : array-like, shape (n_samples) Distance to closest cluster for each sample. Returns ------- centers : array, shape (n_clusters, n_features) The resulting centers """ cdef int n_features = X.shape[1] cdef int curr_label cdef np.ndarray[floating, ndim=1] data = X.data cdef np.ndarray[int, ndim=1] indices = X.indices cdef np.ndarray[int, ndim=1] indptr = X.indptr cdef np.ndarray[floating, ndim=2, mode="c"] centers cdef np.ndarray[np.npy_intp, ndim=1] far_from_centers cdef np.ndarray[np.npy_intp, ndim=1, mode="c"] n_samples_in_cluster = \ np.bincount(labels, minlength=n_clusters) cdef np.ndarray[np.npy_intp, ndim=1, mode="c"] empty_clusters = \ np.where(n_samples_in_cluster == 0)[0] cdef int n_empty_clusters = empty_clusters.shape[0] if floating is float: centers = np.zeros((n_clusters, n_features), dtype=np.float32) else: centers = np.zeros((n_clusters, n_features), dtype=np.float64) # maybe also relocate small clusters? if n_empty_clusters > 0: # find points to reassign empty clusters to far_from_centers = distances.argsort()[::-1][:n_empty_clusters] # XXX two relocated clusters could be close to each other assign_rows_csr(X, far_from_centers, empty_clusters, centers) for i in range(n_empty_clusters): n_samples_in_cluster[empty_clusters[i]] = 1 for i in range(labels.shape[0]): curr_label = labels[i] for ind in range(indptr[i], indptr[i + 1]): j = indices[ind] centers[curr_label, j] += data[ind] centers /= n_samples_in_cluster[:, np.newaxis] return centers ================================================ FILE: k_means_constrained/sklearn_import/cluster/k_means_.py ================================================ """K-means clustering""" # Authors: Gael Varoquaux # Thomas Rueckstiess # James Bergstra # Jan Schlueter # Nelle Varoquaux # Peter Prettenhofer # Olivier Grisel # Mathieu Blondel # Robert Layton # License: BSD 3 clause import warnings import numpy as np import scipy.sparse as sp from k_means_constrained.sklearn_import.base import BaseEstimator, ClusterMixin, TransformerMixin from six import string_types from k_means_constrained.sklearn_import.metrics.pairwise import euclidean_distances, pairwise_distances_argmin_min from k_means_constrained.sklearn_import.utils.validation import check_array, check_random_state, FLOAT_DTYPES, \ check_is_fitted from k_means_constrained.sklearn_import.utils.extmath import row_norms, stable_cumsum from k_means_constrained.sklearn_import.utils.sparsefuncs import mean_variance_axis from k_means_constrained.sklearn_import.cluster import _k_means ############################################################################### # Initialization heuristic def _k_init(X, n_clusters, x_squared_norms, random_state, n_local_trials=None): """Init n_clusters seeds according to k-means++ Parameters ----------- X : array or sparse matrix, shape (n_samples, n_features) The data to pick seeds for. To avoid memory copy, the input data should be double precision (dtype=np.float64). n_clusters : integer The number of seeds to choose x_squared_norms : array, shape (n_samples,) Squared Euclidean norm of each data point. random_state : numpy.RandomState The generator used to initialize the centers. n_local_trials : integer, optional The number of seeding trials for each center (except the first), of which the one reducing inertia the most is greedily chosen. Set to None to make the number of trials depend logarithmically on the number of seeds (2+log(k)); this is the default. Notes ----- Selects initial cluster centers for k-mean clustering in a smart way to speed up convergence. see: Arthur, D. and Vassilvitskii, S. "k-means++: the advantages of careful seeding". ACM-SIAM symposium on Discrete algorithms. 2007 Version ported from http://www.stanford.edu/~darthur/kMeansppTest.zip, which is the implementation used in the aforementioned paper. """ n_samples, n_features = X.shape centers = np.empty((n_clusters, n_features), dtype=X.dtype) assert x_squared_norms is not None, 'x_squared_norms None in _k_init' # Set the number of local seeding trials if none is given if n_local_trials is None: # This is what Arthur/Vassilvitskii tried, but did not report # specific results for other than mentioning in the conclusion # that it helped. n_local_trials = 2 + int(np.log(n_clusters)) # Pick first center randomly center_id = random_state.randint(n_samples) if sp.issparse(X): centers[0] = X[center_id].toarray() else: centers[0] = X[center_id] # Initialize list of closest distances and calculate current potential closest_dist_sq = euclidean_distances( centers[0, np.newaxis], X, Y_norm_squared=x_squared_norms, squared=True) current_pot = closest_dist_sq.sum() # Pick the remaining n_clusters-1 points for c in range(1, n_clusters): # Choose center candidates by sampling with probability proportional # to the squared distance to the closest existing center rand_vals = random_state.random_sample(n_local_trials) * current_pot candidate_ids = np.searchsorted(stable_cumsum(closest_dist_sq), rand_vals) # XXX: numerical imprecision can result in a candidate_id out of range np.clip(candidate_ids, None, closest_dist_sq.size - 1, out=candidate_ids) # Compute distances to center candidates distance_to_candidates = euclidean_distances( X[candidate_ids], X, Y_norm_squared=x_squared_norms, squared=True) # Decide which candidate is the best best_candidate = None best_pot = None best_dist_sq = None for trial in range(n_local_trials): # Compute potential when including center candidate new_dist_sq = np.minimum(closest_dist_sq, distance_to_candidates[trial]) new_pot = new_dist_sq.sum() # Store result if it is the best local trial so far if (best_candidate is None) or (new_pot < best_pot): best_candidate = candidate_ids[trial] best_pot = new_pot best_dist_sq = new_dist_sq # Permanently add best center candidate found in local tries if sp.issparse(X): centers[c] = X[best_candidate].toarray() else: centers[c] = X[best_candidate] current_pot = best_pot closest_dist_sq = best_dist_sq return centers ############################################################################### # K-means batch estimation by EM (expectation maximization) def _validate_center_shape(X, n_centers, centers): """Check if centers is compatible with X and n_centers""" if len(centers) != n_centers: raise ValueError('The shape of the initial centers (%s) ' 'does not match the number of clusters %i' % (centers.shape, n_centers)) if centers.shape[1] != X.shape[1]: raise ValueError( "The number of features of the initial centers %s " "does not match the number of features of the data %s." % (centers.shape[1], X.shape[1])) def _tolerance(X, tol): """Return a tolerance which is independent of the dataset""" if sp.issparse(X): variances = mean_variance_axis(X, axis=0)[1] else: variances = np.var(X, axis=0) return np.mean(variances) * tol def _labels_inertia_precompute_dense(X, x_squared_norms, centers, distances): """Compute labels and inertia using a full distance matrix. This will overwrite the 'distances' array in-place. Parameters ---------- X : numpy array, shape (n_sample, n_features) Input data. x_squared_norms : numpy array, shape (n_samples,) Precomputed squared norms of X. centers : numpy array, shape (n_clusters, n_features) Cluster centers which data is assigned to. distances : numpy array, shape (n_samples,) Pre-allocated array in which distances are stored. Returns ------- labels : numpy array, dtype=np.int, shape (n_samples,) Indices of clusters that samples are assigned to. inertia : float Sum of distances of samples to their closest cluster center. """ n_samples = X.shape[0] # Breakup nearest neighbor distance computation into batches to prevent # memory blowup in the case of a large number of samples and clusters. # TODO: Once PR #7383 is merged use check_inputs=False in metric_kwargs. labels, mindist = pairwise_distances_argmin_min( X=X, Y=centers, metric='euclidean', metric_kwargs={'squared': True}) # cython k-means code assumes int32 inputs labels = labels.astype(np.int32) if n_samples == distances.shape[0]: # distances will be changed in-place distances[:] = mindist inertia = mindist.sum() return labels, inertia def _labels_inertia(X, x_squared_norms, centers, precompute_distances=True, distances=None): """E step of the K-means EM algorithm. Compute the labels and the inertia of the given samples and centers. This will compute the distances in-place. Parameters ---------- X : float64 array-like or CSR sparse matrix, shape (n_samples, n_features) The input samples to assign to the labels. x_squared_norms : array, shape (n_samples,) Precomputed squared euclidean norm of each data point, to speed up computations. centers : float array, shape (k, n_features) The cluster centers. precompute_distances : boolean, default: True Precompute distances (faster but takes more memory). distances : float array, shape (n_samples,) Pre-allocated array to be filled in with each sample's distance to the closest center. Returns ------- labels : int array of shape(n) The resulting assignment inertia : float Sum of distances of samples to their closest cluster center. """ n_samples = X.shape[0] # set the default value of centers to -1 to be able to detect any anomaly # easily labels = -np.ones(n_samples, np.int32) if distances is None: distances = np.zeros(shape=(0,), dtype=X.dtype) # distances will be changed in-place if sp.issparse(X): inertia = _k_means._assign_labels_csr( X, x_squared_norms, centers, labels, distances=distances) else: if precompute_distances: return _labels_inertia_precompute_dense(X, x_squared_norms, centers, distances) inertia = _k_means._assign_labels_array( X, x_squared_norms, centers, labels, distances=distances) return labels, inertia def _init_centroids(X, k, init, random_state=None, x_squared_norms=None, init_size=None): """Compute the initial centroids Parameters ---------- X : array, shape (n_samples, n_features) k : int number of centroids init : {'k-means++', 'random' or ndarray or callable} optional Method for initialization random_state : int, RandomState instance or None, optional, default: None If int, random_state is the seed used by the random number generator; If RandomState instance, random_state is the random number generator; If None, the random number generator is the RandomState instance used by `np.random`. x_squared_norms : array, shape (n_samples,), optional Squared euclidean norm of each data point. Pass it if you have it at hands already to avoid it being recomputed here. Default: None init_size : int, optional Number of samples to randomly sample for speeding up the initialization (sometimes at the expense of accuracy): the only algorithm is initialized by running a batch KMeans on a random subset of the data. This needs to be larger than k. Returns ------- centers : array, shape(k, n_features) """ random_state = check_random_state(random_state) n_samples = X.shape[0] if x_squared_norms is None: x_squared_norms = row_norms(X, squared=True) if init_size is not None and init_size < n_samples: if init_size < k: warnings.warn( "init_size=%d should be larger than k=%d. " "Setting it to 3*k" % (init_size, k), RuntimeWarning, stacklevel=2) init_size = 3 * k init_indices = random_state.randint(0, n_samples, init_size) X = X[init_indices] x_squared_norms = x_squared_norms[init_indices] n_samples = X.shape[0] elif n_samples < k: raise ValueError( "n_samples=%d should be larger than k=%d" % (n_samples, k)) if isinstance(init, string_types) and init == 'k-means++': centers = _k_init(X, k, random_state=random_state, x_squared_norms=x_squared_norms) elif isinstance(init, string_types) and init == 'random': seeds = random_state.permutation(n_samples)[:k] centers = X[seeds] elif hasattr(init, '__array__'): # ensure that the centers have the same dtype as X # this is a requirement of fused types of cython centers = np.array(init, dtype=X.dtype) elif callable(init): centers = init(X, k, random_state=random_state) centers = np.asarray(centers, dtype=X.dtype) else: raise ValueError("the init parameter for the k-means should " "be 'k-means++' or 'random' or an ndarray, " "'%s' (type '%s') was passed." % (init, type(init))) if sp.issparse(centers): centers = centers.toarray() _validate_center_shape(X, k, centers) return centers class KMeans(BaseEstimator, ClusterMixin, TransformerMixin): """K-Means clustering Read more in the :ref:`User Guide `. Parameters ---------- n_clusters : int, optional, default: 8 The number of clusters to form as well as the number of centroids to generate. init : {'k-means++', 'random' or an ndarray} Method for initialization, defaults to 'k-means++': 'k-means++' : selects initial cluster centers for k-mean clustering in a smart way to speed up convergence. See section Notes in k_init for more details. 'random': choose k observations (rows) at random from data for the initial centroids. If an ndarray is passed, it should be of shape (n_clusters, n_features) and gives the initial centers. n_init : int, default: 10 Number of time the k-means algorithm will be run with different centroid seeds. The final results will be the best output of n_init consecutive runs in terms of inertia. max_iter : int, default: 300 Maximum number of iterations of the k-means algorithm for a single run. tol : float, default: 1e-4 Relative tolerance with regards to inertia to declare convergence precompute_distances : {'auto', True, False} Precompute distances (faster but takes more memory). 'auto' : do not precompute distances if n_samples * n_clusters > 12 million. This corresponds to about 100MB overhead per job using double precision. True : always precompute distances False : never precompute distances verbose : int, default 0 Verbosity mode. random_state : int, RandomState instance or None, optional, default: None If int, random_state is the seed used by the random number generator; If RandomState instance, random_state is the random number generator; If None, the random number generator is the RandomState instance used by `np.random`. copy_x : boolean, default True When pre-computing distances it is more numerically accurate to center the data first. If copy_x is True, then the original data is not modified. If False, the original data is modified, and put back before the function returns, but small numerical differences may be introduced by subtracting and then adding the data mean. n_jobs : int The number of jobs to use for the computation. This works by computing each of the n_init runs in parallel. If -1 all CPUs are used. If 1 is given, no parallel computing code is used at all, which is useful for debugging. For n_jobs below -1, (n_cpus + 1 + n_jobs) are used. Thus for n_jobs = -2, all CPUs but one are used. algorithm : "auto", "full" or "elkan", default="auto" K-means algorithm to use. The classical EM-style algorithm is "full". The "elkan" variation is more efficient by using the triangle inequality, but currently doesn't support sparse data. "auto" chooses "elkan" for dense data and "full" for sparse data. Attributes ---------- cluster_centers_ : array, [n_clusters, n_features] Coordinates of cluster centers labels_ : Labels of each point inertia_ : float Sum of distances of samples to their closest cluster center. Examples -------- >>> from sklearn.cluster import KMeans >>> import numpy as np >>> X = np.array([[1, 2], [1, 4], [1, 0], ... [4, 2], [4, 4], [4, 0]]) >>> kmeans = KMeans(n_clusters=2, random_state=0).fit(X) >>> kmeans.labels_ array([0, 0, 0, 1, 1, 1], dtype=int32) >>> kmeans.predict([[0, 0], [4, 4]]) array([0, 1], dtype=int32) >>> kmeans.cluster_centers_ array([[ 1., 2.], [ 4., 2.]]) See also -------- MiniBatchKMeans Alternative online implementation that does incremental updates of the centers positions using mini-batches. For large scale learning (say n_samples > 10k) MiniBatchKMeans is probably much faster than the default batch implementation. Notes ------ The k-means problem is solved using Lloyd's algorithm. The average complexity is given by O(k n T), were n is the number of samples and T is the number of iteration. The worst case complexity is given by O(n^(k+2/p)) with n = n_samples, p = n_features. (D. Arthur and S. Vassilvitskii, 'How slow is the k-means method?' SoCG2006) In practice, the k-means algorithm is very fast (one of the fastest clustering algorithms available), but it falls in local minima. That's why it can be useful to restart it several times. """ def __init__(self, n_clusters=8, init='k-means++', n_init=10, max_iter=300, tol=1e-4, precompute_distances='auto', verbose=0, random_state=None, copy_x=True, n_jobs=1, algorithm='auto'): self.n_clusters = n_clusters self.init = init self.max_iter = max_iter self.tol = tol self.precompute_distances = precompute_distances self.n_init = n_init self.verbose = verbose self.random_state = random_state self.copy_x = copy_x self.n_jobs = n_jobs self.algorithm = algorithm def _check_fit_data(self, X): """Verify that the number of samples given is larger than k""" X = check_array(X, accept_sparse='csr', dtype=[np.float64, np.float32]) if X.shape[0] < self.n_clusters: raise ValueError("n_samples=%d should be >= n_clusters=%d" % ( X.shape[0], self.n_clusters)) return X def _check_test_data(self, X): X = check_array(X, accept_sparse='csr', dtype=FLOAT_DTYPES) n_samples, n_features = X.shape expected_n_features = self.cluster_centers_.shape[1] if not n_features == expected_n_features: raise ValueError("Incorrect number of features. " "Got %d features, expected %d" % ( n_features, expected_n_features)) return X def fit(self, X, y=None): """Compute k-means clustering. Parameters ---------- X : array-like or sparse matrix, shape=(n_samples, n_features) Training instances to cluster. """ # Added to remove scikit-learn internal dependenceies raise NotImplemented def fit_predict(self, X, y=None): """Compute cluster centers and predict cluster index for each sample. Convenience method; equivalent to calling fit(X) followed by predict(X). Parameters ---------- X : {array-like, sparse matrix}, shape = [n_samples, n_features] New data to transform. Returns ------- labels : array, shape [n_samples,] Index of the cluster each sample belongs to. """ return self.fit(X).labels_ def fit_transform(self, X, y=None): """Compute clustering and transform X to cluster-distance space. Equivalent to fit(X).transform(X), but more efficiently implemented. Parameters ---------- X : {array-like, sparse matrix}, shape = [n_samples, n_features] New data to transform. Returns ------- X_new : array, shape [n_samples, k] X transformed in the new space. """ # Currently, this just skips a copy of the data if it is not in # np.array or CSR format already. # XXX This skips _check_test_data, which may change the dtype; # we should refactor the input validation. X = self._check_fit_data(X) return self.fit(X)._transform(X) def transform(self, X): """Transform X to a cluster-distance space. In the new space, each dimension is the distance to the cluster centers. Note that even if X is sparse, the array returned by `transform` will typically be dense. Parameters ---------- X : {array-like, sparse matrix}, shape = [n_samples, n_features] New data to transform. Returns ------- X_new : array, shape [n_samples, k] X transformed in the new space. """ check_is_fitted(self, 'cluster_centers_') X = self._check_test_data(X) return self._transform(X) def _transform(self, X): """guts of transform method; no input validation""" return euclidean_distances(X, self.cluster_centers_) def predict(self, X): """Predict the closest cluster each sample in X belongs to. In the vector quantization literature, `cluster_centers_` is called the code book and each value returned by `predict` is the index of the closest code in the code book. Parameters ---------- X : {array-like, sparse matrix}, shape = [n_samples, n_features] New data to predict. Returns ------- labels : array, shape [n_samples,] Index of the cluster each sample belongs to. """ check_is_fitted(self, 'cluster_centers_') X = self._check_test_data(X) x_squared_norms = row_norms(X, squared=True) return _labels_inertia(X, x_squared_norms, self.cluster_centers_)[0] def score(self, X, y=None): """Opposite of the value of X on the K-means objective. Parameters ---------- X : {array-like, sparse matrix}, shape = [n_samples, n_features] New data. Returns ------- score : float Opposite of the value of X on the K-means objective. """ check_is_fitted(self, 'cluster_centers_') X = self._check_test_data(X) x_squared_norms = row_norms(X, squared=True) return -_labels_inertia(X, x_squared_norms, self.cluster_centers_)[1] ================================================ FILE: k_means_constrained/sklearn_import/exceptions.py ================================================ class DataConversionWarning(UserWarning): """Warning used to notify implicit data conversions happening in the code. This warning occurs when some input data needs to be converted or interpreted in a way that may not match the user's expectations. For example, this warning may occur when the user - passes an integer array to a function which expects float input and will convert the input - requests a non-copying operation, but a copy is required to meet the implementation's data-type expectations; - passes an input whose shape can be interpreted ambiguously. .. versionchanged:: 0.18 Moved from sklearn.utils.validation. """ class NotFittedError(ValueError, AttributeError): """Exception class to raise if estimator is used before fitting. This class inherits from both ValueError and AttributeError to help with exception handling and backward compatibility. Examples -------- >>> from sklearn.svm import LinearSVC >>> from sklearn.exceptions import NotFittedError >>> try: ... LinearSVC().predict([[1, 2], [2, 3], [3, 4]]) ... except NotFittedError as e: ... print(repr(e)) ... # doctest: +NORMALIZE_WHITESPACE +ELLIPSIS NotFittedError('This LinearSVC instance is not fitted yet'...) .. versionchanged:: 0.18 Moved from sklearn.utils.validation. """ ================================================ FILE: k_means_constrained/sklearn_import/externals/__init__.py ================================================ ================================================ FILE: k_means_constrained/sklearn_import/externals/funcsigs.py ================================================ # Copyright 2001-2013 Python Software Foundation; All Rights Reserved """Function signature objects for callables Back port of Python 3.3's function signature tools from the inspect module, modified to be compatible with Python 2.7 and 3.2+. """ from __future__ import absolute_import, division, print_function import itertools import functools import re import types from collections import OrderedDict __version__ = "0.4" __all__ = ['BoundArguments', 'Parameter', 'Signature', 'signature'] _WrapperDescriptor = type(type.__call__) _MethodWrapper = type(all.__call__) _NonUserDefinedCallables = (_WrapperDescriptor, _MethodWrapper, types.BuiltinFunctionType) def formatannotation(annotation, base_module=None): if isinstance(annotation, type): if annotation.__module__ in ('builtins', '__builtin__', base_module): return annotation.__name__ return annotation.__module__+'.'+annotation.__name__ return repr(annotation) def _get_user_defined_method(cls, method_name, *nested): try: if cls is type: return meth = getattr(cls, method_name) for name in nested: meth = getattr(meth, name, meth) except AttributeError: return else: if not isinstance(meth, _NonUserDefinedCallables): # Once '__signature__' will be added to 'C'-level # callables, this check won't be necessary return meth def signature(obj): '''Get a signature object for the passed callable.''' if not callable(obj): raise TypeError('{0!r} is not a callable object'.format(obj)) if isinstance(obj, types.MethodType): sig = signature(obj.__func__) if obj.__self__ is None: # Unbound method: the first parameter becomes positional-only if sig.parameters: first = sig.parameters.values()[0].replace( kind=_POSITIONAL_ONLY) return sig.replace( parameters=(first,) + tuple(sig.parameters.values())[1:]) else: return sig else: # In this case we skip the first parameter of the underlying # function (usually `self` or `cls`). return sig.replace(parameters=tuple(sig.parameters.values())[1:]) try: sig = obj.__signature__ except AttributeError: pass else: if sig is not None: return sig try: # Was this function wrapped by a decorator? wrapped = obj.__wrapped__ except AttributeError: pass else: return signature(wrapped) if isinstance(obj, types.FunctionType): return Signature.from_function(obj) if isinstance(obj, functools.partial): sig = signature(obj.func) new_params = OrderedDict(sig.parameters.items()) partial_args = obj.args or () partial_keywords = obj.keywords or {} try: ba = sig.bind_partial(*partial_args, **partial_keywords) except TypeError as ex: msg = 'partial object {0!r} has incorrect arguments'.format(obj) raise ValueError(msg) for arg_name, arg_value in ba.arguments.items(): param = new_params[arg_name] if arg_name in partial_keywords: # We set a new default value, because the following code # is correct: # # >>> def foo(a): print(a) # >>> print(partial(partial(foo, a=10), a=20)()) # 20 # >>> print(partial(partial(foo, a=10), a=20)(a=30)) # 30 # # So, with 'partial' objects, passing a keyword argument is # like setting a new default value for the corresponding # parameter # # We also mark this parameter with '_partial_kwarg' # flag. Later, in '_bind', the 'default' value of this # parameter will be added to 'kwargs', to simulate # the 'functools.partial' real call. new_params[arg_name] = param.replace(default=arg_value, _partial_kwarg=True) elif (param.kind not in (_VAR_KEYWORD, _VAR_POSITIONAL) and not param._partial_kwarg): new_params.pop(arg_name) return sig.replace(parameters=new_params.values()) sig = None if isinstance(obj, type): # obj is a class or a metaclass # First, let's see if it has an overloaded __call__ defined # in its metaclass call = _get_user_defined_method(type(obj), '__call__') if call is not None: sig = signature(call) else: # Now we check if the 'obj' class has a '__new__' method new = _get_user_defined_method(obj, '__new__') if new is not None: sig = signature(new) else: # Finally, we should have at least __init__ implemented init = _get_user_defined_method(obj, '__init__') if init is not None: sig = signature(init) elif not isinstance(obj, _NonUserDefinedCallables): # An object with __call__ # We also check that the 'obj' is not an instance of # _WrapperDescriptor or _MethodWrapper to avoid # infinite recursion (and even potential segfault) call = _get_user_defined_method(type(obj), '__call__', 'im_func') if call is not None: sig = signature(call) if sig is not None: # For classes and objects we skip the first parameter of their # __call__, __new__, or __init__ methods return sig.replace(parameters=tuple(sig.parameters.values())[1:]) if isinstance(obj, types.BuiltinFunctionType): # Raise a nicer error message for builtins msg = 'no signature found for builtin function {0!r}'.format(obj) raise ValueError(msg) raise ValueError('callable {0!r} is not supported by signature'.format(obj)) class _void(object): '''A private marker - used in Parameter & Signature''' class _empty(object): pass class _ParameterKind(int): def __new__(self, *args, **kwargs): obj = int.__new__(self, *args) obj._name = kwargs['name'] return obj def __str__(self): return self._name def __repr__(self): return '<_ParameterKind: {0!r}>'.format(self._name) _POSITIONAL_ONLY = _ParameterKind(0, name='POSITIONAL_ONLY') _POSITIONAL_OR_KEYWORD = _ParameterKind(1, name='POSITIONAL_OR_KEYWORD') _VAR_POSITIONAL = _ParameterKind(2, name='VAR_POSITIONAL') _KEYWORD_ONLY = _ParameterKind(3, name='KEYWORD_ONLY') _VAR_KEYWORD = _ParameterKind(4, name='VAR_KEYWORD') class Parameter(object): '''Represents a parameter in a function signature. Has the following public attributes: * name : str The name of the parameter as a string. * default : object The default value for the parameter if specified. If the parameter has no default value, this attribute is not set. * annotation The annotation for the parameter if specified. If the parameter has no annotation, this attribute is not set. * kind : str Describes how argument values are bound to the parameter. Possible values: `Parameter.POSITIONAL_ONLY`, `Parameter.POSITIONAL_OR_KEYWORD`, `Parameter.VAR_POSITIONAL`, `Parameter.KEYWORD_ONLY`, `Parameter.VAR_KEYWORD`. ''' __slots__ = ('_name', '_kind', '_default', '_annotation', '_partial_kwarg') POSITIONAL_ONLY = _POSITIONAL_ONLY POSITIONAL_OR_KEYWORD = _POSITIONAL_OR_KEYWORD VAR_POSITIONAL = _VAR_POSITIONAL KEYWORD_ONLY = _KEYWORD_ONLY VAR_KEYWORD = _VAR_KEYWORD empty = _empty def __init__(self, name, kind, default=_empty, annotation=_empty, _partial_kwarg=False): if kind not in (_POSITIONAL_ONLY, _POSITIONAL_OR_KEYWORD, _VAR_POSITIONAL, _KEYWORD_ONLY, _VAR_KEYWORD): raise ValueError("invalid value for 'Parameter.kind' attribute") self._kind = kind if default is not _empty: if kind in (_VAR_POSITIONAL, _VAR_KEYWORD): msg = '{0} parameters cannot have default values'.format(kind) raise ValueError(msg) self._default = default self._annotation = annotation if name is None: if kind != _POSITIONAL_ONLY: raise ValueError("None is not a valid name for a " "non-positional-only parameter") self._name = name else: name = str(name) if kind != _POSITIONAL_ONLY and not re.match(r'[a-z_]\w*$', name, re.I): msg = '{0!r} is not a valid parameter name'.format(name) raise ValueError(msg) self._name = name self._partial_kwarg = _partial_kwarg @property def name(self): return self._name @property def default(self): return self._default @property def annotation(self): return self._annotation @property def kind(self): return self._kind def replace(self, name=_void, kind=_void, annotation=_void, default=_void, _partial_kwarg=_void): '''Creates a customized copy of the Parameter.''' if name is _void: name = self._name if kind is _void: kind = self._kind if annotation is _void: annotation = self._annotation if default is _void: default = self._default if _partial_kwarg is _void: _partial_kwarg = self._partial_kwarg return type(self)(name, kind, default=default, annotation=annotation, _partial_kwarg=_partial_kwarg) def __str__(self): kind = self.kind formatted = self._name if kind == _POSITIONAL_ONLY: if formatted is None: formatted = '' formatted = '<{0}>'.format(formatted) # Add annotation and default value if self._annotation is not _empty: formatted = '{0}:{1}'.format(formatted, formatannotation(self._annotation)) if self._default is not _empty: formatted = '{0}={1}'.format(formatted, repr(self._default)) if kind == _VAR_POSITIONAL: formatted = '*' + formatted elif kind == _VAR_KEYWORD: formatted = '**' + formatted return formatted def __repr__(self): return '<{0} at {1:#x} {2!r}>'.format(self.__class__.__name__, id(self), self.name) def __hash__(self): msg = "unhashable type: '{0}'".format(self.__class__.__name__) raise TypeError(msg) def __eq__(self, other): return (issubclass(other.__class__, Parameter) and self._name == other._name and self._kind == other._kind and self._default == other._default and self._annotation == other._annotation) def __ne__(self, other): return not self.__eq__(other) class BoundArguments(object): '''Result of `Signature.bind` call. Holds the mapping of arguments to the function's parameters. Has the following public attributes: * arguments : OrderedDict An ordered mutable mapping of parameters' names to arguments' values. Does not contain arguments' default values. * signature : Signature The Signature object that created this instance. * args : tuple Tuple of positional arguments values. * kwargs : dict Dict of keyword arguments values. ''' def __init__(self, signature, arguments): self.arguments = arguments self._signature = signature @property def signature(self): return self._signature @property def args(self): args = [] for param_name, param in self._signature.parameters.items(): if (param.kind in (_VAR_KEYWORD, _KEYWORD_ONLY) or param._partial_kwarg): # Keyword arguments mapped by 'functools.partial' # (Parameter._partial_kwarg is True) are mapped # in 'BoundArguments.kwargs', along with VAR_KEYWORD & # KEYWORD_ONLY break try: arg = self.arguments[param_name] except KeyError: # We're done here. Other arguments # will be mapped in 'BoundArguments.kwargs' break else: if param.kind == _VAR_POSITIONAL: # *args args.extend(arg) else: # plain argument args.append(arg) return tuple(args) @property def kwargs(self): kwargs = {} kwargs_started = False for param_name, param in self._signature.parameters.items(): if not kwargs_started: if (param.kind in (_VAR_KEYWORD, _KEYWORD_ONLY) or param._partial_kwarg): kwargs_started = True else: if param_name not in self.arguments: kwargs_started = True continue if not kwargs_started: continue try: arg = self.arguments[param_name] except KeyError: pass else: if param.kind == _VAR_KEYWORD: # **kwargs kwargs.update(arg) else: # plain keyword argument kwargs[param_name] = arg return kwargs def __hash__(self): msg = "unhashable type: '{0}'".format(self.__class__.__name__) raise TypeError(msg) def __eq__(self, other): return (issubclass(other.__class__, BoundArguments) and self.signature == other.signature and self.arguments == other.arguments) def __ne__(self, other): return not self.__eq__(other) class Signature(object): '''A Signature object represents the overall signature of a function. It stores a Parameter object for each parameter accepted by the function, as well as information specific to the function itself. A Signature object has the following public attributes and methods: * parameters : OrderedDict An ordered mapping of parameters' names to the corresponding Parameter objects (keyword-only arguments are in the same order as listed in `code.co_varnames`). * return_annotation : object The annotation for the return type of the function if specified. If the function has no annotation for its return type, this attribute is not set. * bind(*args, **kwargs) -> BoundArguments Creates a mapping from positional and keyword arguments to parameters. * bind_partial(*args, **kwargs) -> BoundArguments Creates a partial mapping from positional and keyword arguments to parameters (simulating 'functools.partial' behavior.) ''' __slots__ = ('_return_annotation', '_parameters') _parameter_cls = Parameter _bound_arguments_cls = BoundArguments empty = _empty def __init__(self, parameters=None, return_annotation=_empty, __validate_parameters__=True): '''Constructs Signature from the given list of Parameter objects and 'return_annotation'. All arguments are optional. ''' if parameters is None: params = OrderedDict() else: if __validate_parameters__: params = OrderedDict() top_kind = _POSITIONAL_ONLY for idx, param in enumerate(parameters): kind = param.kind if kind < top_kind: msg = 'wrong parameter order: {0} before {1}' msg = msg.format(top_kind, param.kind) raise ValueError(msg) else: top_kind = kind name = param.name if name is None: name = str(idx) param = param.replace(name=name) if name in params: msg = 'duplicate parameter name: {0!r}'.format(name) raise ValueError(msg) params[name] = param else: params = OrderedDict(((param.name, param) for param in parameters)) self._parameters = params self._return_annotation = return_annotation @classmethod def from_function(cls, func): '''Constructs Signature for the given python function''' if not isinstance(func, types.FunctionType): raise TypeError('{0!r} is not a Python function'.format(func)) Parameter = cls._parameter_cls # Parameter information. func_code = func.__code__ pos_count = func_code.co_argcount arg_names = func_code.co_varnames positional = tuple(arg_names[:pos_count]) keyword_only_count = getattr(func_code, 'co_kwonlyargcount', 0) keyword_only = arg_names[pos_count:(pos_count + keyword_only_count)] annotations = getattr(func, '__annotations__', {}) defaults = func.__defaults__ kwdefaults = getattr(func, '__kwdefaults__', None) if defaults: pos_default_count = len(defaults) else: pos_default_count = 0 parameters = [] # Non-keyword-only parameters w/o defaults. non_default_count = pos_count - pos_default_count for name in positional[:non_default_count]: annotation = annotations.get(name, _empty) parameters.append(Parameter(name, annotation=annotation, kind=_POSITIONAL_OR_KEYWORD)) # ... w/ defaults. for offset, name in enumerate(positional[non_default_count:]): annotation = annotations.get(name, _empty) parameters.append(Parameter(name, annotation=annotation, kind=_POSITIONAL_OR_KEYWORD, default=defaults[offset])) # *args if func_code.co_flags & 0x04: name = arg_names[pos_count + keyword_only_count] annotation = annotations.get(name, _empty) parameters.append(Parameter(name, annotation=annotation, kind=_VAR_POSITIONAL)) # Keyword-only parameters. for name in keyword_only: default = _empty if kwdefaults is not None: default = kwdefaults.get(name, _empty) annotation = annotations.get(name, _empty) parameters.append(Parameter(name, annotation=annotation, kind=_KEYWORD_ONLY, default=default)) # **kwargs if func_code.co_flags & 0x08: index = pos_count + keyword_only_count if func_code.co_flags & 0x04: index += 1 name = arg_names[index] annotation = annotations.get(name, _empty) parameters.append(Parameter(name, annotation=annotation, kind=_VAR_KEYWORD)) return cls(parameters, return_annotation=annotations.get('return', _empty), __validate_parameters__=False) @property def parameters(self): try: return types.MappingProxyType(self._parameters) except AttributeError: return OrderedDict(self._parameters.items()) @property def return_annotation(self): return self._return_annotation def replace(self, parameters=_void, return_annotation=_void): '''Creates a customized copy of the Signature. Pass 'parameters' and/or 'return_annotation' arguments to override them in the new copy. ''' if parameters is _void: parameters = self.parameters.values() if return_annotation is _void: return_annotation = self._return_annotation return type(self)(parameters, return_annotation=return_annotation) def __hash__(self): msg = "unhashable type: '{0}'".format(self.__class__.__name__) raise TypeError(msg) def __eq__(self, other): if (not issubclass(type(other), Signature) or self.return_annotation != other.return_annotation or len(self.parameters) != len(other.parameters)): return False other_positions = dict((param, idx) for idx, param in enumerate(other.parameters.keys())) for idx, (param_name, param) in enumerate(self.parameters.items()): if param.kind == _KEYWORD_ONLY: try: other_param = other.parameters[param_name] except KeyError: return False else: if param != other_param: return False else: try: other_idx = other_positions[param_name] except KeyError: return False else: if (idx != other_idx or param != other.parameters[param_name]): return False return True def __ne__(self, other): return not self.__eq__(other) def _bind(self, args, kwargs, partial=False): '''Private method. Don't use directly.''' arguments = OrderedDict() parameters = iter(self.parameters.values()) parameters_ex = () arg_vals = iter(args) if partial: # Support for binding arguments to 'functools.partial' objects. # See 'functools.partial' case in 'signature()' implementation # for details. for param_name, param in self.parameters.items(): if (param._partial_kwarg and param_name not in kwargs): # Simulating 'functools.partial' behavior kwargs[param_name] = param.default while True: # Let's iterate through the positional arguments and corresponding # parameters try: arg_val = next(arg_vals) except StopIteration: # No more positional arguments try: param = next(parameters) except StopIteration: # No more parameters. That's it. Just need to check that # we have no `kwargs` after this while loop break else: if param.kind == _VAR_POSITIONAL: # That's OK, just empty *args. Let's start parsing # kwargs break elif param.name in kwargs: if param.kind == _POSITIONAL_ONLY: msg = '{arg!r} parameter is positional only, ' \ 'but was passed as a keyword' msg = msg.format(arg=param.name) raise TypeError(msg) parameters_ex = (param,) break elif (param.kind == _VAR_KEYWORD or param.default is not _empty): # That's fine too - we have a default value for this # parameter. So, lets start parsing `kwargs`, starting # with the current parameter parameters_ex = (param,) break else: if partial: parameters_ex = (param,) break else: msg = '{arg!r} parameter lacking default value' msg = msg.format(arg=param.name) raise TypeError(msg) else: # We have a positional argument to process try: param = next(parameters) except StopIteration: raise TypeError('too many positional arguments') else: if param.kind in (_VAR_KEYWORD, _KEYWORD_ONLY): # Looks like we have no parameter for this positional # argument raise TypeError('too many positional arguments') if param.kind == _VAR_POSITIONAL: # We have an '*args'-like argument, let's fill it with # all positional arguments we have left and move on to # the next phase values = [arg_val] values.extend(arg_vals) arguments[param.name] = tuple(values) break if param.name in kwargs: raise TypeError('multiple values for argument ' '{arg!r}'.format(arg=param.name)) arguments[param.name] = arg_val # Now, we iterate through the remaining parameters to process # keyword arguments kwargs_param = None for param in itertools.chain(parameters_ex, parameters): if param.kind == _POSITIONAL_ONLY: # This should never happen in case of a properly built # Signature object (but let's have this check here # to ensure correct behaviour just in case) raise TypeError('{arg!r} parameter is positional only, ' 'but was passed as a keyword'. \ format(arg=param.name)) if param.kind == _VAR_KEYWORD: # Memorize that we have a '**kwargs'-like parameter kwargs_param = param continue param_name = param.name try: arg_val = kwargs.pop(param_name) except KeyError: # We have no value for this parameter. It's fine though, # if it has a default value, or it is an '*args'-like # parameter, left alone by the processing of positional # arguments. if (not partial and param.kind != _VAR_POSITIONAL and param.default is _empty): raise TypeError('{arg!r} parameter lacking default value'. \ format(arg=param_name)) else: arguments[param_name] = arg_val if kwargs: if kwargs_param is not None: # Process our '**kwargs'-like parameter arguments[kwargs_param.name] = kwargs else: raise TypeError('too many keyword arguments') return self._bound_arguments_cls(self, arguments) def bind(self, *args, **kwargs): '''Get a BoundArguments object, that maps the passed `args` and `kwargs` to the function's signature. Raises `TypeError` if the passed arguments can not be bound. ''' return self._bind(args, kwargs) def bind_partial(self, *args, **kwargs): '''Get a BoundArguments object, that partially maps the passed `args` and `kwargs` to the function's signature. Raises `TypeError` if the passed arguments can not be bound. ''' return self._bind(args, kwargs, partial=True) def __str__(self): result = [] render_kw_only_separator = True for idx, param in enumerate(self.parameters.values()): formatted = str(param) kind = param.kind if kind == _VAR_POSITIONAL: # OK, we have an '*args'-like parameter, so we won't need # a '*' to separate keyword-only arguments render_kw_only_separator = False elif kind == _KEYWORD_ONLY and render_kw_only_separator: # We have a keyword-only parameter to render and we haven't # rendered an '*args'-like parameter before, so add a '*' # separator to the parameters list ("foo(arg1, *, arg2)" case) result.append('*') # This condition should be only triggered once, so # reset the flag render_kw_only_separator = False result.append(formatted) rendered = '({0})'.format(', '.join(result)) if self.return_annotation is not _empty: anno = formatannotation(self.return_annotation) rendered += ' -> {0}'.format(anno) return rendered ================================================ FILE: k_means_constrained/sklearn_import/fixes.py ================================================ def _parse_version(version_string): version = [] for x in version_string.split('.'): try: version.append(int(x)) except ValueError: # x may be of the form dev-1ea1592 version.append(x) return tuple(version) ================================================ FILE: k_means_constrained/sklearn_import/funcsigs.py ================================================ import functools import types from collections import OrderedDict from k_means_constrained.sklearn_import.externals.funcsigs import _NonUserDefinedCallables, _get_user_defined_method, \ _POSITIONAL_ONLY, _VAR_POSITIONAL, _VAR_KEYWORD, Signature def signature(obj): '''Get a signature object for the passed callable.''' if not callable(obj): raise TypeError('{0!r} is not a callable object'.format(obj)) if isinstance(obj, types.MethodType): sig = signature(obj.__func__) if obj.__self__ is None: # Unbound method: the first parameter becomes positional-only if sig.parameters: first = sig.parameters.values()[0].replace( kind=_POSITIONAL_ONLY) return sig.replace( parameters=(first,) + tuple(sig.parameters.values())[1:]) else: return sig else: # In this case we skip the first parameter of the underlying # function (usually `self` or `cls`). return sig.replace(parameters=tuple(sig.parameters.values())[1:]) try: sig = obj.__signature__ except AttributeError: pass else: if sig is not None: return sig try: # Was this function wrapped by a decorator? wrapped = obj.__wrapped__ except AttributeError: pass else: return signature(wrapped) if isinstance(obj, types.FunctionType): return Signature.from_function(obj) if isinstance(obj, functools.partial): sig = signature(obj.func) new_params = OrderedDict(sig.parameters.items()) partial_args = obj.args or () partial_keywords = obj.keywords or {} try: ba = sig.bind_partial(*partial_args, **partial_keywords) except TypeError as ex: msg = 'partial object {0!r} has incorrect arguments'.format(obj) raise ValueError(msg) for arg_name, arg_value in ba.arguments.items(): param = new_params[arg_name] if arg_name in partial_keywords: # We set a new default value, because the following code # is correct: # # >>> def foo(a): print(a) # >>> print(partial(partial(foo, a=10), a=20)()) # 20 # >>> print(partial(partial(foo, a=10), a=20)(a=30)) # 30 # # So, with 'partial' objects, passing a keyword argument is # like setting a new default value for the corresponding # parameter # # We also mark this parameter with '_partial_kwarg' # flag. Later, in '_bind', the 'default' value of this # parameter will be added to 'kwargs', to simulate # the 'functools.partial' real call. new_params[arg_name] = param.replace(default=arg_value, _partial_kwarg=True) elif (param.kind not in (_VAR_KEYWORD, _VAR_POSITIONAL) and not param._partial_kwarg): new_params.pop(arg_name) return sig.replace(parameters=new_params.values()) sig = None if isinstance(obj, type): # obj is a class or a metaclass # First, let's see if it has an overloaded __call__ defined # in its metaclass call = _get_user_defined_method(type(obj), '__call__') if call is not None: sig = signature(call) else: # Now we check if the 'obj' class has a '__new__' method new = _get_user_defined_method(obj, '__new__') if new is not None: sig = signature(new) else: # Finally, we should have at least __init__ implemented init = _get_user_defined_method(obj, '__init__') if init is not None: sig = signature(init) elif not isinstance(obj, _NonUserDefinedCallables): # An object with __call__ # We also check that the 'obj' is not an instance of # _WrapperDescriptor or _MethodWrapper to avoid # infinite recursion (and even potential segfault) call = _get_user_defined_method(type(obj), '__call__', 'im_func') if call is not None: sig = signature(call) if sig is not None: # For classes and objects we skip the first parameter of their # __call__, __new__, or __init__ methods return sig.replace(parameters=tuple(sig.parameters.values())[1:]) if isinstance(obj, types.BuiltinFunctionType): # Raise a nicer error message for builtins msg = 'no signature found for builtin function {0!r}'.format(obj) raise ValueError(msg) raise ValueError('callable {0!r} is not supported by signature'.format(obj)) ================================================ FILE: k_means_constrained/sklearn_import/metrics/__init__.py ================================================ ================================================ FILE: k_means_constrained/sklearn_import/metrics/pairwise.py ================================================ import itertools import warnings from functools import partial import numpy as np from scipy.sparse import issparse, csr_matrix from scipy.spatial import distance from joblib import cpu_count, delayed, Parallel from k_means_constrained.sklearn_import.metrics.pairwise_fast import _sparse_manhattan from k_means_constrained.sklearn_import.preprocessing.data import normalize from k_means_constrained.sklearn_import.utils import gen_batches, gen_even_slices from k_means_constrained.sklearn_import.utils.validation import check_array from k_means_constrained.sklearn_import.utils.extmath import row_norms, safe_sparse_dot def euclidean_distances(X, Y=None, Y_norm_squared=None, squared=False, X_norm_squared=None): """ Considering the rows of X (and Y=X) as vectors, compute the distance matrix between each pair of vectors. For efficiency reasons, the euclidean distance between a pair of row vector x and y is computed as:: dist(x, y) = sqrt(dot(x, x) - 2 * dot(x, y) + dot(y, y)) This formulation has two advantages over other ways of computing distances. First, it is computationally efficient when dealing with sparse data. Second, if one argument varies but the other remains unchanged, then `dot(x, x)` and/or `dot(y, y)` can be pre-computed. However, this is not the most precise way of doing this computation, and the distance matrix returned by this function may not be exactly symmetric as required by, e.g., ``scipy.spatial.distance`` functions. Read more in the :ref:`User Guide `. Parameters ---------- X : {array-like, sparse matrix}, shape (n_samples_1, n_features) Y : {array-like, sparse matrix}, shape (n_samples_2, n_features) Y_norm_squared : array-like, shape (n_samples_2, ), optional Pre-computed dot-products of vectors in Y (e.g., ``(Y**2).sum(axis=1)``) squared : boolean, optional Return squared Euclidean distances. X_norm_squared : array-like, shape = [n_samples_1], optional Pre-computed dot-products of vectors in X (e.g., ``(X**2).sum(axis=1)``) Returns ------- distances : {array, sparse matrix}, shape (n_samples_1, n_samples_2) Examples -------- >>> from sklearn.metrics.pairwise import euclidean_distances >>> X = [[0, 1], [1, 1]] >>> # distance between rows of X >>> euclidean_distances(X, X) array([[ 0., 1.], [ 1., 0.]]) >>> # get distance to origin >>> euclidean_distances(X, [[0, 0]]) array([[ 1. ], [ 1.41421356]]) See also -------- paired_distances : distances betweens pairs of elements of X and Y. """ X, Y = check_pairwise_arrays(X, Y) if X_norm_squared is not None: XX = check_array(X_norm_squared) if XX.shape == (1, X.shape[0]): XX = XX.T elif XX.shape != (X.shape[0], 1): raise ValueError( "Incompatible dimensions for X and X_norm_squared") else: XX = row_norms(X, squared=True)[:, np.newaxis] if X is Y: # shortcut in the common case euclidean_distances(X, X) YY = XX.T elif Y_norm_squared is not None: YY = np.atleast_2d(Y_norm_squared) if YY.shape != (1, Y.shape[0]): raise ValueError( "Incompatible dimensions for Y and Y_norm_squared") else: YY = row_norms(Y, squared=True)[np.newaxis, :] distances = safe_sparse_dot(X, Y.T, dense_output=True) distances *= -2 distances += XX distances += YY np.maximum(distances, 0, out=distances) if X is Y: # Ensure that distances between vectors and themselves are set to 0.0. # This may not be the case due to floating point rounding errors. distances.flat[::distances.shape[0] + 1] = 0.0 return distances if squared else np.sqrt(distances, out=distances) def pairwise_distances_argmin_min(X, Y, axis=1, metric="euclidean", batch_size=500, metric_kwargs=None): """Compute minimum distances between one point and a set of points. This function computes for each row in X, the index of the row of Y which is closest (according to the specified distance). The minimal distances are also returned. This is mostly equivalent to calling: (pairwise_distances(X, Y=Y, metric=metric).argmin(axis=axis), pairwise_distances(X, Y=Y, metric=metric).min(axis=axis)) but uses much less memory, and is faster for large arrays. Parameters ---------- X : {array-like, sparse matrix}, shape (n_samples1, n_features) Array containing points. Y : {array-like, sparse matrix}, shape (n_samples2, n_features) Arrays containing points. axis : int, optional, default 1 Axis along which the argmin and distances are to be computed. metric : string or callable, default 'euclidean' metric to use for distance computation. Any metric from scikit-learn or scipy.spatial.distance can be used. If metric is a callable function, it is called on each pair of instances (rows) and the resulting value recorded. The callable should take two arrays as input and return one value indicating the distance between them. This works for Scipy's metrics, but is less efficient than passing the metric name as a string. Distance matrices are not supported. Valid values for metric are: - from scikit-learn: ['cityblock', 'cosine', 'euclidean', 'l1', 'l2', 'manhattan'] - from scipy.spatial.distance: ['braycurtis', 'canberra', 'chebyshev', 'correlation', 'dice', 'hamming', 'jaccard', 'kulsinski', 'mahalanobis', 'matching', 'minkowski', 'rogerstanimoto', 'russellrao', 'seuclidean', 'sokalmichener', 'sokalsneath', 'sqeuclidean', 'yule'] See the documentation for scipy.spatial.distance for details on these metrics. batch_size : integer To reduce memory consumption over the naive solution, data are processed in batches, comprising batch_size rows of X and batch_size rows of Y. The default value is quite conservative, but can be changed for fine-tuning. The larger the number, the larger the memory usage. metric_kwargs : dict, optional Keyword arguments to pass to specified metric function. Returns ------- argmin : numpy.ndarray Y[argmin[i], :] is the row in Y that is closest to X[i, :]. distances : numpy.ndarray distances[i] is the distance between the i-th row in X and the argmin[i]-th row in Y. See also -------- sklearn.metrics.pairwise_distances sklearn.metrics.pairwise_distances_argmin """ dist_func = None if metric in PAIRWISE_DISTANCE_FUNCTIONS: dist_func = PAIRWISE_DISTANCE_FUNCTIONS[metric] elif not callable(metric) and not isinstance(metric, str): raise ValueError("'metric' must be a string or a callable") X, Y = check_pairwise_arrays(X, Y) if metric_kwargs is None: metric_kwargs = {} if axis == 0: X, Y = Y, X # Allocate output arrays indices = np.empty(X.shape[0], dtype=np.intp) values = np.empty(X.shape[0]) values.fill(np.inf) for chunk_x in gen_batches(X.shape[0], batch_size): X_chunk = X[chunk_x, :] for chunk_y in gen_batches(Y.shape[0], batch_size): Y_chunk = Y[chunk_y, :] if dist_func is not None: if metric == 'euclidean': # special case, for speed d_chunk = safe_sparse_dot(X_chunk, Y_chunk.T, dense_output=True) d_chunk *= -2 d_chunk += row_norms(X_chunk, squared=True)[:, np.newaxis] d_chunk += row_norms(Y_chunk, squared=True)[np.newaxis, :] np.maximum(d_chunk, 0, d_chunk) else: d_chunk = dist_func(X_chunk, Y_chunk, **metric_kwargs) else: d_chunk = pairwise_distances(X_chunk, Y_chunk, metric=metric, **metric_kwargs) # Update indices and minimum values using chunk min_indices = d_chunk.argmin(axis=1) min_values = d_chunk[np.arange(chunk_x.stop - chunk_x.start), min_indices] flags = values[chunk_x] > min_values indices[chunk_x][flags] = min_indices[flags] + chunk_y.start values[chunk_x][flags] = min_values[flags] if metric == "euclidean" and not metric_kwargs.get("squared", False): np.sqrt(values, values) return indices, values def check_pairwise_arrays(X, Y, precomputed=False, dtype=None): """ Set X and Y appropriately and checks inputs If Y is None, it is set as a pointer to X (i.e. not a copy). If Y is given, this does not happen. All distance metrics should use this function first to assert that the given parameters are correct and safe to use. Specifically, this function first ensures that both X and Y are arrays, then checks that they are at least two dimensional while ensuring that their elements are floats (or dtype if provided). Finally, the function checks that the size of the second dimension of the two arrays is equal, or the equivalent check for a precomputed distance matrix. Parameters ---------- X : {array-like, sparse matrix}, shape (n_samples_a, n_features) Y : {array-like, sparse matrix}, shape (n_samples_b, n_features) precomputed : bool True if X is to be treated as precomputed distances to the samples in Y. dtype : string, type, list of types or None (default=None) Data type required for X and Y. If None, the dtype will be an appropriate float type selected by _return_float_dtype. .. versionadded:: 0.18 Returns ------- safe_X : {array-like, sparse matrix}, shape (n_samples_a, n_features) An array equal to X, guaranteed to be a numpy array. safe_Y : {array-like, sparse matrix}, shape (n_samples_b, n_features) An array equal to Y if Y was not None, guaranteed to be a numpy array. If Y was None, safe_Y will be a pointer to X. """ X, Y, dtype_float = _return_float_dtype(X, Y) warn_on_dtype = dtype is not None estimator = 'check_pairwise_arrays' if dtype is None: dtype = dtype_float if Y is X or Y is None: X = Y = check_array(X, accept_sparse='csr', dtype=dtype, warn_on_dtype=warn_on_dtype, estimator=estimator) else: X = check_array(X, accept_sparse='csr', dtype=dtype, warn_on_dtype=warn_on_dtype, estimator=estimator) Y = check_array(Y, accept_sparse='csr', dtype=dtype, warn_on_dtype=warn_on_dtype, estimator=estimator) if precomputed: if X.shape[1] != Y.shape[0]: raise ValueError("Precomputed metric requires shape " "(n_queries, n_indexed). Got (%d, %d) " "for %d indexed." % (X.shape[0], X.shape[1], Y.shape[0])) elif X.shape[1] != Y.shape[1]: raise ValueError("Incompatible dimension for X and Y matrices: " "X.shape[1] == %d while Y.shape[1] == %d" % ( X.shape[1], Y.shape[1])) return X, Y def manhattan_distances(X, Y=None, sum_over_features=True, size_threshold=None): """ Compute the L1 distances between the vectors in X and Y. With sum_over_features equal to False it returns the componentwise distances. Read more in the :ref:`User Guide `. Parameters ---------- X : array_like An array with shape (n_samples_X, n_features). Y : array_like, optional An array with shape (n_samples_Y, n_features). sum_over_features : bool, default=True If True the function returns the pairwise distance matrix else it returns the componentwise L1 pairwise-distances. Not supported for sparse matrix inputs. size_threshold : int, default=5e8 Unused parameter. Returns ------- D : array If sum_over_features is False shape is (n_samples_X * n_samples_Y, n_features) and D contains the componentwise L1 pairwise-distances (ie. absolute difference), else shape is (n_samples_X, n_samples_Y) and D contains the pairwise L1 distances. Examples -------- >>> from sklearn.metrics.pairwise import manhattan_distances >>> manhattan_distances([[3]], [[3]])#doctest:+ELLIPSIS array([[ 0.]]) >>> manhattan_distances([[3]], [[2]])#doctest:+ELLIPSIS array([[ 1.]]) >>> manhattan_distances([[2]], [[3]])#doctest:+ELLIPSIS array([[ 1.]]) >>> manhattan_distances([[1, 2], [3, 4]],\ [[1, 2], [0, 3]])#doctest:+ELLIPSIS array([[ 0., 2.], [ 4., 4.]]) >>> import numpy as np >>> X = np.ones((1, 2)) >>> y = 2 * np.ones((2, 2)) >>> manhattan_distances(X, y, sum_over_features=False)#doctest:+ELLIPSIS array([[ 1., 1.], [ 1., 1.]]...) """ if size_threshold is not None: warnings.warn('Use of the "size_threshold" is deprecated ' 'in 0.19 and it will be removed version ' '0.21 of scikit-learn', DeprecationWarning) X, Y = check_pairwise_arrays(X, Y) if issparse(X) or issparse(Y): if not sum_over_features: raise TypeError("sum_over_features=%r not supported" " for sparse matrices" % sum_over_features) X = csr_matrix(X, copy=False) Y = csr_matrix(Y, copy=False) D = np.zeros((X.shape[0], Y.shape[0])) _sparse_manhattan(X.data, X.indices, X.indptr, Y.data, Y.indices, Y.indptr, X.shape[1], D) return D if sum_over_features: return distance.cdist(X, Y, 'cityblock') D = X[:, np.newaxis, :] - Y[np.newaxis, :, :] D = np.abs(D, D) return D.reshape((-1, X.shape[1])) def cosine_distances(X, Y=None): """Compute cosine distance between samples in X and Y. Cosine distance is defined as 1.0 minus the cosine similarity. Read more in the :ref:`User Guide `. Parameters ---------- X : array_like, sparse matrix with shape (n_samples_X, n_features). Y : array_like, sparse matrix (optional) with shape (n_samples_Y, n_features). Returns ------- distance matrix : array An array with shape (n_samples_X, n_samples_Y). See also -------- sklearn.metrics.pairwise.cosine_similarity scipy.spatial.distance.cosine (dense matrices only) """ # 1.0 - cosine_similarity(X, Y) without copy S = cosine_similarity(X, Y) S *= -1 S += 1 np.clip(S, 0, 2, out=S) if X is Y or Y is None: # Ensure that distances between vectors and themselves are set to 0.0. # This may not be the case due to floating point rounding errors. S[np.diag_indices_from(S)] = 0.0 return S PAIRWISE_DISTANCE_FUNCTIONS = { # If updating this dictionary, update the doc in both distance_metrics() # and also in pairwise_distances()! 'cityblock': manhattan_distances, 'cosine': cosine_distances, 'euclidean': euclidean_distances, 'l2': euclidean_distances, 'l1': manhattan_distances, 'manhattan': manhattan_distances, 'precomputed': None, # HACK: precomputed is always allowed, never called } def pairwise_distances(X, Y=None, metric="euclidean", n_jobs=1, **kwds): """ Compute the distance matrix from a vector array X and optional Y. This method takes either a vector array or a distance matrix, and returns a distance matrix. If the input is a vector array, the distances are computed. If the input is a distances matrix, it is returned instead. This method provides a safe way to take a distance matrix as input, while preserving compatibility with many other algorithms that take a vector array. If Y is given (default is None), then the returned matrix is the pairwise distance between the arrays from both X and Y. Valid values for metric are: - From scikit-learn: ['cityblock', 'cosine', 'euclidean', 'l1', 'l2', 'manhattan']. These metrics support sparse matrix inputs. - From scipy.spatial.distance: ['braycurtis', 'canberra', 'chebyshev', 'correlation', 'dice', 'hamming', 'jaccard', 'kulsinski', 'mahalanobis', 'matching', 'minkowski', 'rogerstanimoto', 'russellrao', 'seuclidean', 'sokalmichener', 'sokalsneath', 'sqeuclidean', 'yule'] See the documentation for scipy.spatial.distance for details on these metrics. These metrics do not support sparse matrix inputs. Note that in the case of 'cityblock', 'cosine' and 'euclidean' (which are valid scipy.spatial.distance metrics), the scikit-learn implementation will be used, which is faster and has support for sparse matrices (except for 'cityblock'). For a verbose description of the metrics from scikit-learn, see the __doc__ of the sklearn.pairwise.distance_metrics function. Read more in the :ref:`User Guide `. Parameters ---------- X : array [n_samples_a, n_samples_a] if metric == "precomputed", or, \ [n_samples_a, n_features] otherwise Array of pairwise distances between samples, or a feature array. Y : array [n_samples_b, n_features], optional An optional second feature array. Only allowed if metric != "precomputed". metric : string, or callable The metric to use when calculating distance between instances in a feature array. If metric is a string, it must be one of the options allowed by scipy.spatial.distance.pdist for its metric parameter, or a metric listed in pairwise.PAIRWISE_DISTANCE_FUNCTIONS. If metric is "precomputed", X is assumed to be a distance matrix. Alternatively, if metric is a callable function, it is called on each pair of instances (rows) and the resulting value recorded. The callable should take two arrays from X as input and return a value indicating the distance between them. n_jobs : int The number of jobs to use for the computation. This works by breaking down the pairwise matrix into n_jobs even slices and computing them in parallel. If -1 all CPUs are used. If 1 is given, no parallel computing code is used at all, which is useful for debugging. For n_jobs below -1, (n_cpus + 1 + n_jobs) are used. Thus for n_jobs = -2, all CPUs but one are used. **kwds : optional keyword parameters Any further parameters are passed directly to the distance function. If using a scipy.spatial.distance metric, the parameters are still metric dependent. See the scipy docs for usage examples. Returns ------- D : array [n_samples_a, n_samples_a] or [n_samples_a, n_samples_b] A distance matrix D such that D_{i, j} is the distance between the ith and jth vectors of the given matrix X, if Y is None. If Y is not None, then D_{i, j} is the distance between the ith array from X and the jth array from Y. """ if (metric not in _VALID_METRICS and not callable(metric) and metric != "precomputed"): raise ValueError("Unknown metric %s. " "Valid metrics are %s, or 'precomputed', or a " "callable" % (metric, _VALID_METRICS)) if metric == "precomputed": X, _ = check_pairwise_arrays(X, Y, precomputed=True) return X elif metric in PAIRWISE_DISTANCE_FUNCTIONS: func = PAIRWISE_DISTANCE_FUNCTIONS[metric] elif callable(metric): func = partial(_pairwise_callable, metric=metric, **kwds) else: if issparse(X) or issparse(Y): raise TypeError("scipy distance metrics do not" " support sparse matrices.") dtype = bool if metric in PAIRWISE_BOOLEAN_FUNCTIONS else None X, Y = check_pairwise_arrays(X, Y, dtype=dtype) if n_jobs == 1 and X is Y: return distance.squareform(distance.pdist(X, metric=metric, **kwds)) func = partial(distance.cdist, metric=metric, **kwds) return _parallel_pairwise(X, Y, func, n_jobs, **kwds) def _return_float_dtype(X, Y): """ 1. If dtype of X and Y is float32, then dtype float32 is returned. 2. Else dtype float is returned. """ if not issparse(X) and not isinstance(X, np.ndarray): X = np.asarray(X) if Y is None: Y_dtype = X.dtype elif not issparse(Y) and not isinstance(Y, np.ndarray): Y = np.asarray(Y) Y_dtype = Y.dtype else: Y_dtype = Y.dtype if X.dtype == Y_dtype == np.float32: dtype = np.float32 else: dtype = float return X, Y, dtype def _parallel_pairwise(X, Y, func, n_jobs, **kwds): """Break the pairwise matrix in n_jobs even slices and compute them in parallel""" if n_jobs < 0: n_jobs = max(cpu_count() + 1 + n_jobs, 1) if Y is None: Y = X if n_jobs == 1: # Special case to avoid picklability checks in delayed return func(X, Y, **kwds) # TODO: in some cases, backend='threading' may be appropriate fd = delayed(func) ret = Parallel(n_jobs=n_jobs, verbose=0)( fd(X, Y[s], **kwds) for s in gen_even_slices(Y.shape[0], n_jobs)) return np.hstack(ret) def _pairwise_callable(X, Y, metric, **kwds): """Handle the callable case for pairwise_{distances,kernels} """ X, Y = check_pairwise_arrays(X, Y) if X is Y: # Only calculate metric for upper triangle out = np.zeros((X.shape[0], Y.shape[0]), dtype='float') iterator = itertools.combinations(range(X.shape[0]), 2) for i, j in iterator: out[i, j] = metric(X[i], Y[j], **kwds) # Make symmetric # NB: out += out.T will produce incorrect results out = out + out.T # Calculate diagonal # NB: nonzero diagonals are allowed for both metrics and kernels for i in range(X.shape[0]): x = X[i] out[i, i] = metric(x, x, **kwds) else: # Calculate all cells out = np.empty((X.shape[0], Y.shape[0]), dtype='float') iterator = itertools.product(range(X.shape[0]), range(Y.shape[0])) for i, j in iterator: out[i, j] = metric(X[i], Y[j], **kwds) return out PAIRWISE_BOOLEAN_FUNCTIONS = [ 'dice', 'jaccard', 'kulsinski', 'matching', 'rogerstanimoto', 'russellrao', 'sokalmichener', 'sokalsneath', 'yule', ] def cosine_similarity(X, Y=None, dense_output=True): """Compute cosine similarity between samples in X and Y. Cosine similarity, or the cosine kernel, computes similarity as the normalized dot product of X and Y: K(X, Y) = / (||X||*||Y||) On L2-normalized data, this function is equivalent to linear_kernel. Read more in the :ref:`User Guide `. Parameters ---------- X : ndarray or sparse array, shape: (n_samples_X, n_features) Input data. Y : ndarray or sparse array, shape: (n_samples_Y, n_features) Input data. If ``None``, the output will be the pairwise similarities between all samples in ``X``. dense_output : boolean (optional), default True Whether to return dense output even when the input is sparse. If ``False``, the output is sparse if both input arrays are sparse. .. versionadded:: 0.17 parameter ``dense_output`` for dense output. Returns ------- kernel matrix : array An array with shape (n_samples_X, n_samples_Y). """ # to avoid recursive import X, Y = check_pairwise_arrays(X, Y) X_normalized = normalize(X, copy=True) if X is Y: Y_normalized = X_normalized else: Y_normalized = normalize(Y, copy=True) K = safe_sparse_dot(X_normalized, Y_normalized.T, dense_output=dense_output) return K _VALID_METRICS = ['euclidean', 'l2', 'l1', 'manhattan', 'cityblock', 'braycurtis', 'canberra', 'chebyshev', 'correlation', 'cosine', 'dice', 'hamming', 'jaccard', 'kulsinski', 'mahalanobis', 'matching', 'minkowski', 'rogerstanimoto', 'russellrao', 'seuclidean', 'sokalmichener', 'sokalsneath', 'sqeuclidean', 'yule', "wminkowski"] ================================================ FILE: k_means_constrained/sklearn_import/metrics/pairwise_fast.pyx ================================================ #cython: boundscheck=False #cython: cdivision=True #cython: wraparound=False # distutils: define_macros=NPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION # Author: Andreas Mueller # Lars Buitinck # # License: BSD 3 clause from libc.string cimport memset import numpy as np cimport numpy as np ctypedef float [:, :] float_array_2d_t ctypedef double [:, :] double_array_2d_t cdef fused floating1d: float[::1] double[::1] cdef fused floating_array_2d_t: float_array_2d_t double_array_2d_t np.import_array() def _sparse_manhattan(floating1d X_data, int[:] X_indices, int[:] X_indptr, floating1d Y_data, int[:] Y_indices, int[:] Y_indptr, np.npy_intp n_features, double[:, ::1] D): """Pairwise L1 distances for CSR matrices. Usage: >>> D = np.zeros(X.shape[0], Y.shape[0]) >>> sparse_manhattan(X.data, X.indices, X.indptr, ... Y.data, Y.indices, Y.indptr, ... X.shape[1], D) """ cdef double[::1] row = np.empty(n_features) cdef np.npy_intp ix, iy, j with nogil: for ix in range(D.shape[0]): for iy in range(D.shape[1]): # Simple strategy: densify current row of X, then subtract the # corresponding row of Y. memset(&row[0], 0, n_features * sizeof(double)) for j in range(X_indptr[ix], X_indptr[ix + 1]): row[X_indices[j]] = X_data[j] for j in range(Y_indptr[iy], Y_indptr[iy + 1]): row[Y_indices[j]] -= Y_data[j] with gil: D[ix, iy] = row[0].abs().sum() ================================================ FILE: k_means_constrained/sklearn_import/preprocessing/__init__.py ================================================ ================================================ FILE: k_means_constrained/sklearn_import/preprocessing/data.py ================================================ import numpy as np from scipy import sparse from k_means_constrained.sklearn_import.utils.sparsefuncs_fast import inplace_csr_row_normalize_l1, inplace_csr_row_normalize_l2 from k_means_constrained.sklearn_import.utils.sparsefuncs import min_max_axis from k_means_constrained.sklearn_import.utils.extmath import row_norms from k_means_constrained.sklearn_import.utils.validation import check_array, FLOAT_DTYPES def normalize(X, norm='l2', axis=1, copy=True, return_norm=False): """Scale input vectors individually to unit norm (vector length). Read more in the :ref:`User Guide `. Parameters ---------- X : {array-like, sparse matrix}, shape [n_samples, n_features] The data to normalize, element by element. scipy.sparse matrices should be in CSR format to avoid an un-necessary copy. norm : 'l1', 'l2', or 'max', optional ('l2' by default) The norm to use to normalize each non zero sample (or each non-zero feature if axis is 0). axis : 0 or 1, optional (1 by default) axis used to normalize the data along. If 1, independently normalize each sample, otherwise (if 0) normalize each feature. copy : boolean, optional, default True set to False to perform inplace row normalization and avoid a copy (if the input is already a numpy array or a scipy.sparse CSR matrix and if axis is 1). return_norm : boolean, default False whether to return the computed norms Returns ------- X : {array-like, sparse matrix}, shape [n_samples, n_features] Normalized input X. norms : array, shape [n_samples] if axis=1 else [n_features] An array of norms along given axis for X. When X is sparse, a NotImplementedError will be raised for norm 'l1' or 'l2'. See also -------- Normalizer: Performs normalization using the ``Transformer`` API (e.g. as part of a preprocessing :class:`sklearn.pipeline.Pipeline`). Notes ----- For a comparison of the different scalers, transformers, and normalizers, see :ref:`examples/preprocessing/plot_all_scaling.py `. """ if norm not in ('l1', 'l2', 'max'): raise ValueError("'%s' is not a supported norm" % norm) if axis == 0: sparse_format = 'csc' elif axis == 1: sparse_format = 'csr' else: raise ValueError("'%d' is not a supported axis" % axis) X = check_array(X, sparse_format, copy=copy, estimator='the normalize function', dtype=FLOAT_DTYPES) if axis == 0: X = X.T if sparse.issparse(X): if return_norm and norm in ('l1', 'l2'): raise NotImplementedError("return_norm=True is not implemented " "for sparse matrices with norm 'l1' " "or norm 'l2'") if norm == 'l1': inplace_csr_row_normalize_l1(X) elif norm == 'l2': inplace_csr_row_normalize_l2(X) elif norm == 'max': _, norms = min_max_axis(X, 1) norms_elementwise = norms.repeat(np.diff(X.indptr)) mask = norms_elementwise != 0 X.data[mask] /= norms_elementwise[mask] else: if norm == 'l1': norms = np.abs(X).sum(axis=1) elif norm == 'l2': norms = row_norms(X) elif norm == 'max': norms = np.max(X, axis=1) norms = _handle_zeros_in_scale(norms, copy=False) X /= norms[:, np.newaxis] if axis == 0: X = X.T if return_norm: return X, norms else: return X def _handle_zeros_in_scale(scale, copy=True): ''' Makes sure that whenever scale is zero, we handle it correctly. This happens in most scalers when we have constant features.''' # if we are fitting on 1D arrays, scale might be a scalar if np.isscalar(scale): if scale == .0: scale = 1. return scale elif isinstance(scale, np.ndarray): if copy: # New array to avoid side-effects scale = scale.copy() scale[scale == 0.0] = 1.0 return scale ================================================ FILE: k_means_constrained/sklearn_import/utils/__init__.py ================================================ def gen_batches(n, batch_size): """Generator to create slices containing batch_size elements, from 0 to n. The last slice may contain less than batch_size elements, when batch_size does not divide n. Examples -------- >>> from sklearn.utils import gen_batches >>> list(gen_batches(7, 3)) [slice(0, 3, None), slice(3, 6, None), slice(6, 7, None)] >>> list(gen_batches(6, 3)) [slice(0, 3, None), slice(3, 6, None)] >>> list(gen_batches(2, 3)) [slice(0, 2, None)] """ start = 0 for _ in range(int(n // batch_size)): end = start + batch_size yield slice(start, end) start = end if start < n: yield slice(start, n) def gen_even_slices(n, n_packs, n_samples=None): """Generator to create n_packs slices going up to n. Pass n_samples when the slices are to be used for sparse matrix indexing; slicing off-the-end raises an exception, while it works for NumPy arrays. Examples -------- >>> from sklearn.utils import gen_even_slices >>> list(gen_even_slices(10, 1)) [slice(0, 10, None)] >>> list(gen_even_slices(10, 10)) #doctest: +ELLIPSIS [slice(0, 1, None), slice(1, 2, None), ..., slice(9, 10, None)] >>> list(gen_even_slices(10, 5)) #doctest: +ELLIPSIS [slice(0, 2, None), slice(2, 4, None), ..., slice(8, 10, None)] >>> list(gen_even_slices(10, 3)) [slice(0, 4, None), slice(4, 7, None), slice(7, 10, None)] """ start = 0 if n_packs < 1: raise ValueError("gen_even_slices got n_packs=%s, must be >=1" % n_packs) for pack_num in range(n_packs): this_n = n // n_packs if pack_num < n % n_packs: this_n += 1 if this_n > 0: end = start + this_n if n_samples is not None: end = min(n_samples, end) yield slice(start, end, None) start = end ================================================ FILE: k_means_constrained/sklearn_import/utils/extmath.py ================================================ import warnings import numpy as np from scipy.sparse import issparse, csr_matrix from k_means_constrained.sklearn_import.utils.sparsefuncs_fast import csr_row_norms from k_means_constrained.sklearn_import.utils.fixes import np_version def row_norms(X, squared=False): """Row-wise (squared) Euclidean norm of X. Equivalent to np.sqrt((X * X).sum(axis=1)), but also supports sparse matrices and does not create an X.shape-sized temporary. Performs no input validation. """ if issparse(X): if not isinstance(X, csr_matrix): X = csr_matrix(X) norms = csr_row_norms(X) else: norms = np.einsum('ij,ij->i', X, X) if not squared: np.sqrt(norms, norms) return norms def squared_norm(x): """Squared Euclidean or Frobenius norm of x. Returns the Euclidean norm when x is a vector, the Frobenius norm when x is a matrix (2-d array). Faster than norm(x) ** 2. """ x = np.ravel(x, order='K') if np.issubdtype(x.dtype, np.integer): warnings.warn('Array type is integer, np.dot may overflow. ' 'Data should be float type to avoid this issue', UserWarning) return np.dot(x, x) def cartesian(arrays, out=None): """Generate a cartesian product of input arrays. Parameters ---------- arrays : list of array-like 1-D arrays to form the cartesian product of. out : ndarray Array to place the cartesian product in. Returns ------- out : ndarray 2-D array of shape (M, len(arrays)) containing cartesian products formed of input arrays. Examples -------- >>> cartesian(([1, 2, 3], [4, 5], [6, 7])) array([[1, 4, 6], [1, 4, 7], [1, 5, 6], [1, 5, 7], [2, 4, 6], [2, 4, 7], [2, 5, 6], [2, 5, 7], [3, 4, 6], [3, 4, 7], [3, 5, 6], [3, 5, 7]]) """ arrays = [np.asarray(x) for x in arrays] shape = (len(x) for x in arrays) dtype = arrays[0].dtype ix = np.indices(shape) ix = ix.reshape(len(arrays), -1).T if out is None: out = np.empty_like(ix, dtype=dtype) for n, arr in enumerate(arrays): out[:, n] = arrays[n][ix[:, n]] return out def stable_cumsum(arr, axis=None, rtol=1e-05, atol=1e-08): """Use high precision for cumsum and check that final value matches sum Parameters ---------- arr : array-like To be cumulatively summed as flat axis : int, optional Axis along which the cumulative sum is computed. The default (None) is to compute the cumsum over the flattened array. rtol : float Relative tolerance, see ``np.allclose`` atol : float Absolute tolerance, see ``np.allclose`` """ # sum is as unstable as cumsum for numpy < 1.9 if np_version < (1, 9): return np.cumsum(arr, axis=axis, dtype=np.float64) out = np.cumsum(arr, axis=axis, dtype=np.float64) expected = np.sum(arr, axis=axis, dtype=np.float64) if not np.all(np.isclose(out.take(-1, axis=axis), expected, rtol=rtol, atol=atol, equal_nan=True)): warnings.warn('cumsum was found to be unstable: ' 'its last element does not correspond to sum', RuntimeWarning) return out def safe_sparse_dot(a, b, dense_output=False): """Dot product that handle the sparse matrix case correctly Uses BLAS GEMM as replacement for numpy.dot where possible to avoid unnecessary copies. Parameters ---------- a : array or sparse matrix b : array or sparse matrix dense_output : boolean, default False When False, either ``a`` or ``b`` being sparse will yield sparse output. When True, output will always be an array. Returns ------- dot_product : array or sparse matrix sparse if ``a`` or ``b`` is sparse and ``dense_output=False``. """ if issparse(a) or issparse(b): ret = a * b if dense_output and hasattr(ret, "toarray"): ret = ret.toarray() return ret else: return np.dot(a, b) ================================================ FILE: k_means_constrained/sklearn_import/utils/fixes.py ================================================ import numpy as np from k_means_constrained.sklearn_import.fixes import _parse_version np_version = _parse_version(np.__version__) def sparse_min_max(X, axis): return (X.min(axis=axis).toarray().ravel(), X.max(axis=axis).toarray().ravel()) ================================================ FILE: k_means_constrained/sklearn_import/utils/sparsefuncs.py ================================================ from scipy import sparse as sp from k_means_constrained.sklearn_import.utils.fixes import sparse_min_max from .sparsefuncs_fast import ( csr_mean_variance_axis0 as _csr_mean_var_axis0, csc_mean_variance_axis0 as _csc_mean_var_axis0) def mean_variance_axis(X, axis): """Compute mean and variance along an axix on a CSR or CSC matrix Parameters ---------- X : CSR or CSC sparse matrix, shape (n_samples, n_features) Input data. axis : int (either 0 or 1) Axis along which the axis should be computed. Returns ------- means : float array with shape (n_features,) Feature-wise means variances : float array with shape (n_features,) Feature-wise variances """ _raise_error_wrong_axis(axis) if isinstance(X, sp.csr_matrix): if axis == 0: return _csr_mean_var_axis0(X) else: return _csc_mean_var_axis0(X.T) elif isinstance(X, sp.csc_matrix): if axis == 0: return _csc_mean_var_axis0(X) else: return _csr_mean_var_axis0(X.T) else: _raise_typeerror(X) def min_max_axis(X, axis): """Compute minimum and maximum along an axis on a CSR or CSC matrix Parameters ---------- X : CSR or CSC sparse matrix, shape (n_samples, n_features) Input data. axis : int (either 0 or 1) Axis along which the axis should be computed. Returns ------- mins : float array with shape (n_features,) Feature-wise minima maxs : float array with shape (n_features,) Feature-wise maxima """ if isinstance(X, sp.csr_matrix) or isinstance(X, sp.csc_matrix): return sparse_min_max(X, axis=axis) else: _raise_typeerror(X) def _raise_typeerror(X): """Raises a TypeError if X is not a CSR or CSC matrix""" input_type = X.format if sp.issparse(X) else type(X) err = "Expected a CSR or CSC sparse matrix, got %s." % input_type raise TypeError(err) def _raise_error_wrong_axis(axis): if axis not in (0, 1): raise ValueError( "Unknown axis value: %d. Use 0 for rows, or 1 for columns" % axis) ================================================ FILE: k_means_constrained/sklearn_import/utils/sparsefuncs_fast.pyx ================================================ # Authors: Mathieu Blondel # Olivier Grisel # Peter Prettenhofer # Lars Buitinck # Giorgio Patrini # # License: BSD 3 clause #!python #cython: boundscheck=False, wraparound=False, cdivision=True # distutils: define_macros=NPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION from libc.math cimport fabs, sqrt, pow cimport numpy as np import numpy as np import scipy.sparse as sp cimport cython from cython cimport floating np.import_array() ctypedef np.float64_t DOUBLE def csr_row_norms(X): """L2 norm of each row in CSR matrix X.""" if X.dtype != np.float32: X = X.astype(np.float64) return _csr_row_norms(X.data, X.shape, X.indices, X.indptr) def _csr_row_norms(np.ndarray[floating, ndim=1, mode="c"] X_data, shape, np.ndarray[int, ndim=1, mode="c"] X_indices, np.ndarray[int, ndim=1, mode="c"] X_indptr): cdef: unsigned int n_samples = shape[0] unsigned int n_features = shape[1] np.ndarray[DOUBLE, ndim=1, mode="c"] norms np.npy_intp i, j double sum_ norms = np.zeros(n_samples, dtype=np.float64) for i in range(n_samples): sum_ = 0.0 for j in range(X_indptr[i], X_indptr[i + 1]): sum_ += X_data[j] * X_data[j] norms[i] = sum_ return norms def csr_mean_variance_axis0(X): """Compute mean and variance along axis 0 on a CSR matrix Parameters ---------- X : CSR sparse matrix, shape (n_samples, n_features) Input data. Returns ------- means : float array with shape (n_features,) Feature-wise means variances : float array with shape (n_features,) Feature-wise variances """ if X.dtype != np.float32: X = X.astype(np.float64) return _csr_mean_variance_axis0(X.data, X.shape, X.indices) def _csr_mean_variance_axis0(np.ndarray[floating, ndim=1, mode="c"] X_data, shape, np.ndarray[int, ndim=1] X_indices): # Implement the function here since variables using fused types # cannot be declared directly and can only be passed as function arguments cdef unsigned int n_samples = shape[0] cdef unsigned int n_features = shape[1] cdef unsigned int i cdef unsigned int non_zero = X_indices.shape[0] cdef unsigned int col_ind cdef floating diff # means[j] contains the mean of feature j cdef np.ndarray[floating, ndim=1] means # variances[j] contains the variance of feature j cdef np.ndarray[floating, ndim=1] variances if floating is float: dtype = np.float32 else: dtype = np.float64 means = np.zeros(n_features, dtype=dtype) variances = np.zeros_like(means, dtype=dtype) # counts[j] contains the number of samples where feature j is non-zero cdef np.ndarray[int, ndim=1] counts = np.zeros(n_features, dtype=np.int32) for i in xrange(non_zero): col_ind = X_indices[i] means[col_ind] += X_data[i] means /= n_samples for i in xrange(non_zero): col_ind = X_indices[i] diff = X_data[i] - means[col_ind] variances[col_ind] += diff * diff counts[col_ind] += 1 for i in xrange(n_features): variances[i] += (n_samples - counts[i]) * means[i] ** 2 variances[i] /= n_samples return means, variances def csc_mean_variance_axis0(X): """Compute mean and variance along axis 0 on a CSC matrix Parameters ---------- X : CSC sparse matrix, shape (n_samples, n_features) Input data. Returns ------- means : float array with shape (n_features,) Feature-wise means variances : float array with shape (n_features,) Feature-wise variances """ if X.dtype != np.float32: X = X.astype(np.float64) return _csc_mean_variance_axis0(X.data, X.shape, X.indices, X.indptr) def _csc_mean_variance_axis0(np.ndarray[floating, ndim=1] X_data, shape, np.ndarray[int, ndim=1] X_indices, np.ndarray[int, ndim=1] X_indptr): # Implement the function here since variables using fused types # cannot be declared directly and can only be passed as function arguments cdef unsigned int n_samples = shape[0] cdef unsigned int n_features = shape[1] cdef unsigned int i cdef unsigned int j cdef unsigned int counts cdef unsigned int startptr cdef unsigned int endptr cdef floating diff # means[j] contains the mean of feature j cdef np.ndarray[floating, ndim=1] means # variances[j] contains the variance of feature j cdef np.ndarray[floating, ndim=1] variances if floating is float: dtype = np.float32 else: dtype = np.float64 means = np.zeros(n_features, dtype=dtype) variances = np.zeros_like(means, dtype=dtype) for i in xrange(n_features): startptr = X_indptr[i] endptr = X_indptr[i + 1] counts = endptr - startptr for j in xrange(startptr, endptr): means[i] += X_data[j] means[i] /= n_samples for j in xrange(startptr, endptr): diff = X_data[j] - means[i] variances[i] += diff * diff variances[i] += (n_samples - counts) * means[i] * means[i] variances[i] /= n_samples return means, variances def incr_mean_variance_axis0(X, last_mean, last_var, unsigned long last_n): """Compute mean and variance along axis 0 on a CSR or CSC matrix. last_mean, last_var are the statistics computed at the last step by this function. Both must be initilized to 0.0. last_n is the number of samples encountered until now and is initialized at 0. Parameters ---------- X : CSR or CSC sparse matrix, shape (n_samples, n_features) Input data. last_mean : float array with shape (n_features,) Array of feature-wise means to update with the new data X. last_var : float array with shape (n_features,) Array of feature-wise var to update with the new data X. last_n : int Number of samples seen so far, before X. Returns ------- updated_mean : float array with shape (n_features,) Feature-wise means updated_variance : float array with shape (n_features,) Feature-wise variances updated_n : int Updated number of samples seen References ---------- T. Chan, G. Golub, R. LeVeque. Algorithms for computing the sample variance: recommendations, The American Statistician, Vol. 37, No. 3, pp. 242-247 Also, see the non-sparse implementation of this in `utils.extmath._batch_mean_variance_update`. """ if X.dtype != np.float32: X = X.astype(np.float64) return _incr_mean_variance_axis0(X.data, X.shape, X.indices, X.indptr, X.format, last_mean, last_var, last_n) def _incr_mean_variance_axis0(np.ndarray[floating, ndim=1] X_data, shape, np.ndarray[int, ndim=1] X_indices, np.ndarray[int, ndim=1] X_indptr, X_format, last_mean, last_var, unsigned long last_n): # Implement the function here since variables using fused types # cannot be declared directly and can only be passed as function arguments cdef unsigned long n_samples = shape[0] cdef unsigned int n_features = shape[1] cdef unsigned int i # last = stats until now # new = the current increment # updated = the aggregated stats # when arrays, they are indexed by i per-feature cdef np.ndarray[floating, ndim=1] new_mean cdef np.ndarray[floating, ndim=1] new_var cdef np.ndarray[floating, ndim=1] updated_mean cdef np.ndarray[floating, ndim=1] updated_var if floating is float: dtype = np.float32 else: dtype = np.float64 new_mean = np.zeros(n_features, dtype=dtype) new_var = np.zeros_like(new_mean, dtype=dtype) updated_mean = np.zeros_like(new_mean, dtype=dtype) updated_var = np.zeros_like(new_mean, dtype=dtype) cdef unsigned long new_n cdef unsigned long updated_n cdef floating last_over_new_n # Obtain new stats first new_n = n_samples if X_format == 'csr': # X is a CSR matrix new_mean, new_var = _csr_mean_variance_axis0(X_data, shape, X_indices) else: # X is a CSC matrix new_mean, new_var = _csc_mean_variance_axis0(X_data, shape, X_indices, X_indptr) # First pass if last_n == 0: return new_mean, new_var, new_n # Next passes else: updated_n = last_n + new_n last_over_new_n = last_n / new_n for i in xrange(n_features): # Unnormalized old stats last_mean[i] *= last_n last_var[i] *= last_n # Unnormalized new stats new_mean[i] *= new_n new_var[i] *= new_n # Update stats updated_var[i] = (last_var[i] + new_var[i] + last_over_new_n / updated_n * (last_mean[i] / last_over_new_n - new_mean[i]) ** 2) updated_mean[i] = (last_mean[i] + new_mean[i]) / updated_n updated_var[i] = updated_var[i] / updated_n return updated_mean, updated_var, updated_n def inplace_csr_row_normalize_l1(X): """Inplace row normalize using the l1 norm""" _inplace_csr_row_normalize_l1(X.data, X.shape, X.indices, X.indptr) def _inplace_csr_row_normalize_l1(np.ndarray[floating, ndim=1] X_data, shape, np.ndarray[int, ndim=1] X_indices, np.ndarray[int, ndim=1] X_indptr): cdef unsigned int n_samples = shape[0] cdef unsigned int n_features = shape[1] # the column indices for row i are stored in: # indices[indptr[i]:indices[i+1]] # and their corresponding values are stored in: # data[indptr[i]:indptr[i+1]] cdef unsigned int i cdef unsigned int j cdef double sum_ for i in xrange(n_samples): sum_ = 0.0 for j in xrange(X_indptr[i], X_indptr[i + 1]): sum_ += fabs(X_data[j]) if sum_ == 0.0: # do not normalize empty rows (can happen if CSR is not pruned # correctly) continue for j in xrange(X_indptr[i], X_indptr[i + 1]): X_data[j] /= sum_ def inplace_csr_row_normalize_l2(X): """Inplace row normalize using the l2 norm""" _inplace_csr_row_normalize_l2(X.data, X.shape, X.indices, X.indptr) def _inplace_csr_row_normalize_l2(np.ndarray[floating, ndim=1] X_data, shape, np.ndarray[int, ndim=1] X_indices, np.ndarray[int, ndim=1] X_indptr): cdef unsigned int n_samples = shape[0] cdef unsigned int n_features = shape[1] cdef unsigned int i cdef unsigned int j cdef double sum_ for i in xrange(n_samples): sum_ = 0.0 for j in xrange(X_indptr[i], X_indptr[i + 1]): sum_ += (X_data[j] * X_data[j]) if sum_ == 0.0: # do not normalize empty rows (can happen if CSR is not pruned # correctly) continue sum_ = sqrt(sum_) for j in xrange(X_indptr[i], X_indptr[i + 1]): X_data[j] /= sum_ def assign_rows_csr(X, np.ndarray[np.npy_intp, ndim=1] X_rows, np.ndarray[np.npy_intp, ndim=1] out_rows, np.ndarray[floating, ndim=2, mode="c"] out): """Densify selected rows of a CSR matrix into a preallocated array. Like out[out_rows] = X[X_rows].toarray() but without copying. No-copy supported for both dtype=np.float32 and dtype=np.float64. Parameters ---------- X : scipy.sparse.csr_matrix, shape=(n_samples, n_features) X_rows : array, dtype=np.intp, shape=n_rows out_rows : array, dtype=np.intp, shape=n_rows out : array, shape=(arbitrary, n_features) """ cdef: # npy_intp (np.intp in Python) is what np.where returns, # but int is what scipy.sparse uses. int i, ind, j np.npy_intp rX np.ndarray[floating, ndim=1] data = X.data np.ndarray[int, ndim=1] indices = X.indices, indptr = X.indptr if X_rows.shape[0] != out_rows.shape[0]: raise ValueError("cannot assign %d rows to %d" % (X_rows.shape[0], out_rows.shape[0])) out[out_rows] = 0. for i in range(X_rows.shape[0]): rX = X_rows[i] for ind in range(indptr[rX], indptr[rX + 1]): j = indices[ind] out[out_rows[i], j] = data[ind] ================================================ FILE: k_means_constrained/sklearn_import/utils/validation.py ================================================ import numbers import warnings import numpy as np from scipy import sparse as sp from k_means_constrained.sklearn_import.exceptions import NotFittedError from k_means_constrained.sklearn_import import get_config as _get_config from k_means_constrained.sklearn_import.exceptions import DataConversionWarning import six def check_array(array, accept_sparse=False, dtype="numeric", order=None, force_all_finite=True, ensure_2d=True, allow_nd=False, ensure_min_samples=1, ensure_min_features=1, warn_on_dtype=False, estimator=None): """Input validation on an array, list, sparse matrix or similar. By default, the input is converted to an at least 2D numpy array. If the dtype of the array is object, attempt converting to float, raising on failure. Parameters ---------- array : object Input object to check / convert. accept_sparse : string, boolean or list/tuple of strings (default=False) String[s] representing allowed sparse matrix formats, such as 'csc', 'csr', etc. If the input is sparse but not in the allowed format, it will be converted to the first listed format. True allows the input to be any format. False means that a sparse matrix input will raise an error. .. deprecated:: 0.19 Passing 'None' to parameter ``accept_sparse`` in methods is deprecated in version 0.19 "and will be removed in 0.21. Use ``accept_sparse=False`` instead. dtype : string, type, list of types or None (default="numeric") Data type of result. If None, the dtype of the input is preserved. If "numeric", dtype is preserved unless array.dtype is object. If dtype is a list of types, conversion on the first type is only performed if the dtype of the input is not in the list. order : 'F', 'C' or None (default=None) Whether an array will be forced to be fortran or c-style. When order is None (default), the memory layout of the returned array is kept as close as possible to the original array. force_all_finite : boolean (default=True) Whether to raise an error on np.inf and np.nan in X. ensure_2d : boolean (default=True) Whether to raise a value error if X is not 2d. allow_nd : boolean (default=False) Whether to allow X.ndim > 2. ensure_min_samples : int (default=1) Make sure that the array has a minimum number of samples in its first axis (rows for a 2D array). Setting to 0 disables this check. ensure_min_features : int (default=1) Make sure that the 2D array has some minimum number of features (columns). The default value of 1 rejects empty datasets. This check is only enforced when the input data has effectively 2 dimensions or is originally 1D and ``ensure_2d`` is True. Setting to 0 disables this check. warn_on_dtype : boolean (default=False) Raise DataConversionWarning if the dtype of the input data structure does not match the requested dtype, causing a memory copy. estimator : str or estimator instance (default=None) If passed, include the name of the estimator in warning messages. Returns ------- X_converted : object The converted and validated X. """ # accept_sparse 'None' deprecation check if accept_sparse is None: warnings.warn( "Passing 'None' to parameter 'accept_sparse' in methods " "check_array and check_X_y is deprecated in version 0.19 " "and will be removed in 0.21. Use 'accept_sparse=False' " " instead.", DeprecationWarning) accept_sparse = False # store whether originally we wanted numeric dtype dtype_numeric = isinstance(dtype, six.string_types) and dtype == "numeric" dtype_orig = getattr(array, "dtype", None) if not hasattr(dtype_orig, 'kind'): # not a data type (e.g. a column named dtype in a pandas DataFrame) dtype_orig = None if dtype_numeric: if dtype_orig is not None and dtype_orig.kind == "O": # if input is object, convert to float. dtype = np.float64 else: dtype = None if isinstance(dtype, (list, tuple)): if dtype_orig is not None and dtype_orig in dtype: # no dtype conversion required dtype = None else: # dtype conversion required. Let's select the first element of the # list of accepted types. dtype = dtype[0] if estimator is not None: if isinstance(estimator, six.string_types): estimator_name = estimator else: estimator_name = estimator.__class__.__name__ else: estimator_name = "Estimator" context = " by %s" % estimator_name if estimator is not None else "" if sp.issparse(array): array = _ensure_sparse_format(array, accept_sparse, dtype, force_all_finite, copy=True) else: array = np.array(array, dtype=dtype, order=order, copy=True) if ensure_2d: if array.ndim == 1: raise ValueError( "Expected 2D array, got 1D array instead:\narray={}.\n" "Reshape your data either using array.reshape(-1, 1) if " "your data has a single feature or array.reshape(1, -1) " "if it contains a single sample.".format(array)) array = np.atleast_2d(array) # To ensure that array flags are maintained array = np.array(array, dtype=dtype, order=order, copy=True) # make sure we actually converted to numeric: if dtype_numeric and array.dtype.kind == "O": array = array.astype(np.float64) if not allow_nd and array.ndim >= 3: raise ValueError("Found array with dim %d. %s expected <= 2." % (array.ndim, estimator_name)) if force_all_finite: _assert_all_finite(array) shape_repr = _shape_repr(array.shape) if ensure_min_samples > 0: n_samples = _num_samples(array) if n_samples < ensure_min_samples: raise ValueError("Found array with %d sample(s) (shape=%s) while a" " minimum of %d is required%s." % (n_samples, shape_repr, ensure_min_samples, context)) if ensure_min_features > 0 and array.ndim == 2: n_features = array.shape[1] if n_features < ensure_min_features: raise ValueError("Found array with %d feature(s) (shape=%s) while" " a minimum of %d is required%s." % (n_features, shape_repr, ensure_min_features, context)) if warn_on_dtype and dtype_orig is not None and array.dtype != dtype_orig: msg = ("Data with input dtype %s was converted to %s%s." % (dtype_orig, array.dtype, context)) warnings.warn(msg, DataConversionWarning) return array def check_random_state(seed): """Turn seed into a np.random.RandomState instance Parameters ---------- seed : None | int | instance of RandomState If seed is None, return the RandomState singleton used by np.random. If seed is an int, return a new RandomState instance seeded with seed. If seed is already a RandomState instance, return it. Otherwise raise ValueError. """ if seed is None or seed is np.random: return np.random.mtrand._rand if isinstance(seed, (numbers.Integral, np.integer)): return np.random.RandomState(seed) if isinstance(seed, np.random.RandomState): return seed raise ValueError('%r cannot be used to seed a numpy.random.RandomState' ' instance' % seed) def as_float_array(X, copy=True, force_all_finite=True): """Converts an array-like to an array of floats. The new dtype will be np.float32 or np.float64, depending on the original type. The function can create a copy or modify the argument depending on the argument copy. Parameters ---------- X : {array-like, sparse matrix} copy : bool, optional If True, a copy of X will be created. If False, a copy may still be returned if X's dtype is not a floating point type. force_all_finite : boolean (default=True) Whether to raise an error on np.inf and np.nan in X. Returns ------- XT : {array, sparse matrix} An array of type np.float """ if isinstance(X, np.matrix) or (not isinstance(X, np.ndarray) and not sp.issparse(X)): return check_array(X, ['csr', 'csc', 'coo'], dtype=np.float64, copy=copy, force_all_finite=force_all_finite, ensure_2d=False) elif sp.issparse(X) and X.dtype in [np.float32, np.float64]: return X.copy() if copy else X elif X.dtype in [np.float32, np.float64]: # is numpy array return X.copy('F' if X.flags['F_CONTIGUOUS'] else 'C') if copy else X else: if X.dtype.kind in 'uib' and X.dtype.itemsize <= 4: return_dtype = np.float32 else: return_dtype = np.float64 return X.astype(return_dtype) def _assert_all_finite(X): """Like assert_all_finite, but only for ndarray.""" if _get_config()['assume_finite']: return X = np.asanyarray(X) # First try an O(n) time, O(1) space solution for the common case that # everything is finite; fall back to O(n) space np.isfinite to prevent # false positives from overflow in sum method. if (X.dtype.char in np.typecodes['AllFloat'] and not np.isfinite(X.sum()) and not np.isfinite(X).all()): raise ValueError("Input contains NaN, infinity" " or a value too large for %r." % X.dtype) def _num_samples(x): """Return number of samples in array-like x.""" if hasattr(x, 'fit') and callable(x.fit): # Don't get num_samples from an ensembles length! raise TypeError('Expected sequence or array-like, got ' 'estimator %s' % x) if not hasattr(x, '__len__') and not hasattr(x, 'shape'): if hasattr(x, '__array__'): x = np.asarray(x) else: raise TypeError("Expected sequence or array-like, got %s" % type(x)) if hasattr(x, 'shape'): if len(x.shape) == 0: raise TypeError("Singleton array %r cannot be considered" " a valid collection." % x) return x.shape[0] else: return len(x) def _shape_repr(shape): """Return a platform independent representation of an array shape Under Python 2, the `long` type introduces an 'L' suffix when using the default %r format for tuples of integers (typically used to store the shape of an array). Under Windows 64 bit (and Python 2), the `long` type is used by default in numpy shapes even when the integer dimensions are well below 32 bit. The platform specific type causes string messages or doctests to change from one platform to another which is not desirable. Under Python 3, there is no more `long` type so the `L` suffix is never introduced in string representation. >>> _shape_repr((1, 2)) '(1, 2)' >>> one = 2 ** 64 / 2 ** 64 # force an upcast to `long` under Python 2 >>> _shape_repr((one, 2 * one)) '(1, 2)' >>> _shape_repr((1,)) '(1,)' >>> _shape_repr(()) '()' """ if len(shape) == 0: return "()" joined = ", ".join("%d" % e for e in shape) if len(shape) == 1: # special notation for singleton tuples joined += ',' return "(%s)" % joined def _ensure_sparse_format(spmatrix, accept_sparse, dtype, copy, force_all_finite): """Convert a sparse matrix to a given format. Checks the sparse format of spmatrix and converts if necessary. Parameters ---------- spmatrix : scipy sparse matrix Input to validate and convert. accept_sparse : string, boolean or list/tuple of strings String[s] representing allowed sparse matrix formats ('csc', 'csr', 'coo', 'dok', 'bsr', 'lil', 'dia'). If the input is sparse but not in the allowed format, it will be converted to the first listed format. True allows the input to be any format. False means that a sparse matrix input will raise an error. dtype : string, type or None Data type of result. If None, the dtype of the input is preserved. copy : boolean Whether a forced copy will be triggered. If copy=False, a copy might be triggered by a conversion. force_all_finite : boolean Whether to raise an error on np.inf and np.nan in X. Returns ------- spmatrix_converted : scipy sparse matrix. Matrix that is ensured to have an allowed type. """ if dtype is None: dtype = spmatrix.dtype changed_format = False if isinstance(accept_sparse, six.string_types): accept_sparse = [accept_sparse] if accept_sparse is False: raise TypeError('A sparse matrix was passed, but dense ' 'data is required. Use X.toarray() to ' 'convert to a dense numpy array.') elif isinstance(accept_sparse, (list, tuple)): if len(accept_sparse) == 0: raise ValueError("When providing 'accept_sparse' " "as a tuple or list, it must contain at " "least one string value.") # ensure correct sparse format if spmatrix.format not in accept_sparse: # create new with correct sparse spmatrix = spmatrix.asformat(accept_sparse[0]) changed_format = True elif accept_sparse is not True: # any other type raise ValueError("Parameter 'accept_sparse' should be a string, " "boolean or list of strings. You provided " "'accept_sparse={}'.".format(accept_sparse)) if dtype != spmatrix.dtype: # convert dtype spmatrix = spmatrix.astype(dtype) elif copy and not changed_format: # force copy spmatrix = spmatrix.copy() if force_all_finite: if not hasattr(spmatrix, "data"): warnings.warn("Can't check %s sparse matrix for nan or inf." % spmatrix.format) else: _assert_all_finite(spmatrix.data) return spmatrix FLOAT_DTYPES = (np.float64, np.float32, np.float16) def check_is_fitted(estimator, attributes, msg=None, all_or_any=all): """Perform is_fitted validation for estimator. Checks if the estimator is fitted by verifying the presence of "all_or_any" of the passed attributes and raises a NotFittedError with the given message. Parameters ---------- estimator : estimator instance. estimator instance for which the check is performed. attributes : attribute name(s) given as string or a list/tuple of strings Eg.: ``["coef_", "estimator_", ...], "coef_"`` msg : string The default error message is, "This %(name)s instance is not fitted yet. Call 'fit' with appropriate arguments before using this method." For custom messages if "%(name)s" is present in the message string, it is substituted for the estimator name. Eg. : "Estimator, %(name)s, must be fitted before sparsifying". all_or_any : callable, {all, any}, default all Specify whether all or any of the given attributes must exist. Returns ------- None Raises ------ NotFittedError If the attributes are not found. """ if msg is None: msg = ("This %(name)s instance is not fitted yet. Call 'fit' with " "appropriate arguments before using this method.") if not hasattr(estimator, 'fit'): raise TypeError("%s is not an estimator instance." % (estimator)) if not isinstance(attributes, (list, tuple)): attributes = [attributes] if not all_or_any([hasattr(estimator, attr) for attr in attributes]): raise NotFittedError(msg % {'name': type(estimator).__name__}) ================================================ FILE: pyproject.toml ================================================ [build-system] requires = ["setuptools", "wheel", "cython>=3.0.11", "numpy>=2.0,<3"] ================================================ FILE: requirements-dev.txt ================================================ -r requirements.txt pytest>=5.1 pandas>=2.2.3 twine sphinx sphinx-rtd-theme numpydoc bump2version nose scikit-learn>=1.5.2 cython>=3.0.11 ================================================ FILE: requirements.txt ================================================ ortools >= 9.15.6755 scipy >= 1.14.1 numpy >= 2.1.1 six joblib ================================================ FILE: setup.cfg ================================================ [metadata] name = k-means-constrained version = 0.9.0 description = K-Means clustering constrained with minimum and maximum cluster size long_description = file: README.md long_description_content_type = text/markdown license = BSD 3-Clause author = Josh Levy-Kramer url = https://github.com/joshlk/k-means-constrained download_urls = https://pypi.org/project/k-means-constrained/ project_urls = Documentation = https://joshlk.github.io/k-means-constrained/ Code = https://github.com/joshlk/k-means-constrained Issue tracker = https://github.com/joshlk/k-means-constrained/issues classifiers = Development Status :: 5 - Production/Stable Intended Audience :: Developers Topic :: Scientific/Engineering License :: OSI Approved :: BSD License Programming Language :: Python :: 3 [options] zip_safe = False ; Currently includes the venv `k-means-env` directory. Can't work out how to exclude it ; Dont try. Its a HUGE RABAT HOLE packages = find: ================================================ FILE: setup.py ================================================ #!/usr/bin/env python3 """ Based on template: https://github.com/FedericoStra/cython-package-example """ from setuptools import dist, find_packages import os from setuptools import setup, Extension try: from numpy import get_include except: def get_include(): # Defer import to later from numpy import get_include return get_include() try: from Cython.Build import cythonize except ImportError: print("! Could not import Cython !") cythonize = None # https://cython.readthedocs.io/en/latest/src/userguide/source_files_and_compilation.html#distributing-cython-modules def no_cythonize(extensions, **_ignore): for extension in extensions: sources = [] for sfile in extension.sources: path, ext = os.path.splitext(sfile) if ext in (".pyx", ".py"): if extension.language == "c++": ext = ".cpp" else: ext = ".c" sfile = path + ext sources.append(sfile) extension.sources[:] = sources return extensions extensions = [ Extension("k_means_constrained.sklearn_import.cluster._k_means", ["k_means_constrained/sklearn_import/cluster/_k_means.pyx"], include_dirs=[get_include()]), Extension("k_means_constrained.sklearn_import.metrics.pairwise_fast", ["k_means_constrained/sklearn_import/metrics/pairwise_fast.pyx"], include_dirs=[get_include()]), Extension("k_means_constrained.sklearn_import.utils.sparsefuncs_fast", ["k_means_constrained/sklearn_import/utils/sparsefuncs_fast.pyx"], include_dirs=[get_include()]), ] CYTHONIZE = bool(int(os.getenv("CYTHONIZE", 1))) and cythonize is not None if CYTHONIZE: compiler_directives = {"language_level": 3, "embedsignature": True} extensions = cythonize(extensions, compiler_directives=compiler_directives) else: extensions = no_cythonize(extensions) with open("requirements.txt") as fp: install_requires = fp.read().strip().split("\n") setup( ext_modules=extensions, install_requires=install_requires, ) ================================================ FILE: tests/test_k_means_constrained_.py ================================================ #!/usr/bin/env python import numpy as np import pandas as pd import pytest from scipy.sparse import csc_matrix, issparse from k_means_constrained.sklearn_import.metrics.pairwise import euclidean_distances from k_means_constrained.k_means_constrained_ import minimum_cost_flow_problem_graph, solve_min_cost_flow_graph, \ KMeansConstrained, _labels_constrained def sort_coordinates(array): array = array[np.lexsort(np.fliplr(array).T)] return array def test_minimum_cost_flow_problem_graph(): # Setup graph X = np.array([ [0, 0], [1, 2], [1, 4], [1, 0], [4, 2], [4, 4], [4, 0], [4, 4] ]) C = np.array([ [0, 0], [4, 4] ]) size_min, size_max = 3, 10 D = euclidean_distances(X, C, squared=True) edges, costs, capacities, supplies, n_C, n_X = minimum_cost_flow_problem_graph(X, C, D, size_min, size_max) assert edges.shape[0] == len(costs) assert edges.shape[0] == len(capacities) assert len(np.unique(edges)) == len(supplies) assert costs.sum() > 0 assert supplies.sum() == 0 def test_solve_min_cost_flow_graph(): # Setup graph X = np.array([ [0, 0], [1, 2], [1, 4], [1, 0], [4, 2], [4, 4], [4, 0], [4, 4] ]) C = np.array([ [0, 0], [4, 4] ]) size_min, size_max = 3, 10 D = euclidean_distances(X, C, squared=True) edges, costs, capacities, supplies, n_C, n_X = minimum_cost_flow_problem_graph(X, C, D, size_min, size_max) labels = solve_min_cost_flow_graph(edges, costs, capacities, supplies, n_C, n_X) cluster_size = pd.Series(labels).value_counts() assert (cluster_size > size_max).sum() == 0 assert (cluster_size < size_min).sum() == 0 def test__labels_constrained(): # Setup graph X = np.array([ [0, 0], [1, 2], [1, 4], [1, 0], [4, 2], [4, 4], [4, 0], [4, 4] ]) centers = np.array([ [0, 0], [4, 4] ]) size_min, size_max = 3, 10 distances = np.zeros(shape=(X.shape[0],), dtype=X.dtype) labels, inertia = _labels_constrained(X, centers, size_min, size_max, distances) # Labels cluster_size = pd.Series(labels).value_counts() assert (cluster_size > size_max).sum() == 0 assert (cluster_size < size_min).sum() == 0 # Distances assert distances.sum() > 0 # Inertia assert inertia > 0 def test_KMeansConstrained(): X = np.array([ [0, 0], [1, 2], [1, 4], [1, 0], [4, 2], [4, 4], [4, 0], [3, 0], [4, 4] ]) k = 3 size_min, size_max = 3, 7 clf = KMeansConstrained( n_clusters=k, size_min=size_min, size_max=size_max ) y = clf.fit_predict(X) # Labels cluster_size = pd.Series(y).value_counts() assert (cluster_size > size_max).sum() == 0 assert (cluster_size < size_min).sum() == 0 def test_KMeansConstrained_predict_method(): X = np.array([ [0, 0], [0, 0], [0, 0], [1, 1], ]) k = 2 size_max = 2 clf = KMeansConstrained( n_clusters=k, size_max=size_max ) clf.fit(X) y_constrained = clf.predict(X) # Expected np.array([0, 0, 1, 1]) y_normal = super(KMeansConstrained, clf).predict(X) # Expected np.array([0, 0, 0, 1]) cluster_size_constrained = pd.Series(y_constrained).value_counts() assert (cluster_size_constrained > size_max).any() == False assert len(cluster_size_constrained) == k cluster_size_normal = pd.Series(y_normal).value_counts() assert (cluster_size_normal > size_max).any() == True assert len(cluster_size_normal) == k def test_spare_not_implemented(): X = np.array([ [0, 0], [1, 2], [1, 4], [1, 0], [4, 2], [4, 4], [4, 0], [3, 0], [4, 4] ]) k = 3 size_min, size_max = 3, 7 clf = KMeansConstrained( n_clusters=k, size_min=size_min, size_max=size_max ) X = csc_matrix(X) with pytest.raises(NotImplementedError): clf.fit(X) with pytest.raises(NotImplementedError): clf.fit_predict(X) ####### # Parity tests only works with sklearn v0.19.2 but does not run on Python 3.8+ ####### # from sklearn.cluster import KMeans # from sklearn.cluster.k_means_ import _labels_inertia # from numpy.testing import assert_array_equal, assert_almost_equal # from k_means_constrained.sklearn_import.utils.extmath import row_norms # Test passes on Python 3.7 # def test__labels_constrained_kmeans_parity(): # X = np.array([ # [0, 0], # [1, 2], # [1, 4], # [1, 0], # [4, 2], # [4, 4], # [4, 0], # [4, 4] # ]).astype('float') # centers = np.array([ # [0, 0], # [4, 4] # ]).astype('float') # size_min, size_max = 0, len(X) # No restrictions and so should be the same as K-means # # x_squared_norms = row_norms(X, squared=True) # # distances_constrained = np.zeros(shape=(X.shape[0],), dtype=X.dtype) # labels_constrained, inertia_constrained = _labels_constrained(X, centers, size_min, size_max, distances_constrained) # # distances_kmeans = np.zeros(shape=(X.shape[0],), dtype=X.dtype) # labels_kmeans, inertia_kmeans = \ # _labels_inertia(X=X, x_squared_norms=x_squared_norms, centers=centers, precompute_distances=False, # distances=distances_kmeans) # # assert_array_equal(labels_constrained, labels_kmeans) # assert_almost_equal(distances_constrained, distances_kmeans) # assert inertia_constrained == inertia_kmeans # Test passes on Python 3.7 # def test_KMeansConstrained_parity_digits(): # iris = datasets.load_iris() # X = iris.data # # k = 8 # random_state = 1 # size_min, size_max = None, None # No restrictions and so should produce same result # # clf_constrained = KMeansConstrained( # size_min=size_min, # size_max=size_max, # n_clusters=k, # random_state=random_state, # init='k-means++', # n_init=10, # max_iter=300, # tol=1e-4 # ) # y_constrained = clf_constrained.fit_predict(X) # # # TODO: Testing scikit-learn has be set to v0.19. This is because there is a discrepancy scikit-learn v0.22 https://github.com/scikit-learn/scikit-learn/issues/16623 # clf_kmeans = KMeans( # n_clusters=k, # random_state=random_state, # init='k-means++', # n_init=10, # max_iter=300, # tol=1e-4 # ) # y_kmeans = clf_kmeans.fit_predict(X) # # # Each cluster should have the same number of datapoints assigned to it # constrained_ndp = pd.Series(y_constrained).value_counts().values # kmeans_ndp = pd.Series(y_kmeans).value_counts().values # # assert_almost_equal(constrained_ndp, kmeans_ndp) # # # Sort the cluster coordinates (otherwise in a random order) # constrained_cluster_centers = sort_coordinates(clf_constrained.cluster_centers_) # kmean_cluster_centers = sort_coordinates(clf_kmeans.cluster_centers_) # # assert_almost_equal(constrained_cluster_centers, kmean_cluster_centers) #### # Further tests removed as removed sklearn dependency #### # from sklearn import datasets # # def test_KMeansConstrained_n_jobs(): # X, _ = datasets.make_blobs(n_samples=100, n_features=5, centers=10, random_state=1) # # n_jobs = -1 # k = 20 # size_min, size_max = 3, 40 # # clf = KMeansConstrained( # n_clusters=k, # size_min=size_min, # size_max=size_max, # n_jobs=n_jobs # ) # # y = clf.fit_predict(X) # # # Labels # cluster_size = pd.Series(y).value_counts() # assert (cluster_size > size_max).sum() == 0 # assert (cluster_size < size_min).sum() == 0 ================================================ FILE: tests/test_kmeans_constrained_from_sklearn.py ================================================ # Tests copied and modified from: https://github.com/scikit-learn/scikit-learn/blob/0.19.X/sklearn/cluster/tests/test_k_means.py import sys import numpy as np from numpy.testing import assert_equal, assert_warns, assert_array_almost_equal, assert_array_equal, assert_raises,\ assert_raises_regex from k_means_constrained.k_means_constrained_ import k_means_constrained, _labels_constrained from k_means_constrained import KMeansConstrained from sklearn.datasets import make_blobs from sklearn.metrics.cluster import v_measure_score from unittest import SkipTest import pytest # non centered, sparse centers to check the centers = np.array([ [0.0, 5.0, 0.0, 0.0, 0.0], [1.0, 1.0, 4.0, 0.0, 0.0], [1.0, 0.0, 0.0, 5.0, 1.0], ]) n_samples = 100 n_clusters, n_features = centers.shape X, true_labels = make_blobs(n_samples=n_samples, centers=centers, cluster_std=1., random_state=42) def test_labels_assignment_and_inertia(): # pure numpy implementation as easily auditable reference gold # implementation rng = np.random.RandomState(42) noisy_centers = centers + rng.normal(size=centers.shape) labels_gold = - np.ones(n_samples, dtype=int) mindist = np.empty(n_samples) mindist.fill(np.inf) for center_id in range(n_clusters): dist = np.sum((X - noisy_centers[center_id]) ** 2, axis=1) labels_gold[dist < mindist] = center_id mindist = np.minimum(dist, mindist) inertia_gold = mindist.sum() assert (mindist >= 0.0).all() assert (labels_gold != -1).all() # perform label assignment using the dense array input distances = np.zeros(shape=(len(X),), dtype=X.dtype) labels_array, inertia_array = _labels_constrained( X, noisy_centers, size_min=0, size_max=len(X), distances=distances) assert_array_almost_equal(inertia_array, inertia_gold) assert_array_equal(labels_array, labels_gold) def _check_fitted_model(km): # check that the number of clusters centers and distinct labels match # the expectation centers = km.cluster_centers_ assert_equal(centers.shape, (n_clusters, n_features)) labels = km.labels_ assert_equal(np.unique(labels).shape[0], n_clusters) # check that the labels assignment are perfect (up to a permutation) assert_equal(v_measure_score(true_labels, labels), 1.0) assert km.inertia_ > 0.0 # check error on dataset being too small assert_raises(ValueError, km.fit, [[0., 1.]]) def test_k_means_plus_plus_init(): km = KMeansConstrained(init="k-means++", n_clusters=n_clusters, random_state=42).fit(X) _check_fitted_model(km) def test_k_means_new_centers(): # Explore the part of the code where a new center is reassigned X = np.array([[0, 0, 1, 1], [0, 0, 0, 0], [0, 1, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 1, 0, 0]]) labels = [0, 1, 2, 1, 1, 2] bad_centers = np.array([[+0, 1, 0, 0], [.2, 0, .2, .2], [+0, 0, 0, 0]]) km = KMeansConstrained(n_clusters=3, init=bad_centers, n_init=1, max_iter=10, random_state=1) for i in range(2): km.fit(X) this_labels = km.labels_ # Reorder the labels so that the first instance is in cluster 0, # the second in cluster 1, ... this_labels = np.unique(this_labels, return_index=True)[1][this_labels] np.testing.assert_array_equal(this_labels, labels) def test_k_means_plus_plus_init_2_jobs(): if sys.version_info[:2] < (3, 4): raise SkipTest( "Possible multi-process bug with some BLAS under Python < 3.4") km = KMeansConstrained(init="k-means++", n_clusters=n_clusters, n_jobs=2, random_state=42).fit(X) _check_fitted_model(km) def test_k_means_random_init(): km = KMeansConstrained(init="random", n_clusters=n_clusters, random_state=42) km.fit(X) _check_fitted_model(km) def test_k_means_perfect_init(): km = KMeansConstrained(init=centers.copy(), n_clusters=n_clusters, random_state=42, n_init=1) km.fit(X) _check_fitted_model(km) def test_k_means_n_init(): rnd = np.random.RandomState(0) X = rnd.normal(size=(40, 2)) # two regression tests on bad n_init argument # previous bug: n_init <= 0 threw non-informative TypeError (#3858) assert_raises_regex(ValueError, "n_init", KMeansConstrained(n_init=0).fit, X) assert_raises_regex(ValueError, "n_init", KMeansConstrained(n_init=-1).fit, X) def test_k_means_explicit_init_shape(): # test for sensible errors when giving explicit init # with wrong number of features or clusters rnd = np.random.RandomState(0) X = rnd.normal(size=(40, 3)) # mismatch of number of features km = KMeansConstrained(n_init=1, init=X[:, :2], n_clusters=len(X)) msg = "does not match the number of features of the data" assert_raises_regex(ValueError, msg, km.fit, X) # for callable init km = KMeansConstrained(n_init=1, init=lambda X_, k, random_state: X_[:, :2], n_clusters=len(X)) assert_raises_regex(ValueError, msg, km.fit, X) # mismatch of number of clusters msg = "does not match the number of clusters" km = KMeansConstrained(n_init=1, init=X[:2, :], n_clusters=3) assert_raises_regex(ValueError, msg, km.fit, X) # for callable init km = KMeansConstrained(n_init=1, init=lambda X_, k, random_state: X_[:2, :], n_clusters=3) assert_raises_regex(ValueError, msg, km.fit, X) def test_k_means_fortran_aligned_data(): # Check the KMeans will work well, even if X is a fortran-aligned data. X = np.asfortranarray([[0, 0], [0, 1], [0, 1]]) centers = np.array([[0, 0], [0, 1]]) labels = np.array([0, 1, 1]) km = KMeansConstrained(n_init=1, init=centers, random_state=42, n_clusters=2) km.fit(X) assert_array_equal(km.cluster_centers_, centers) assert_array_equal(km.labels_, labels) def test_k_means_invalid_init(): km = KMeansConstrained(init="invalid", n_init=1, n_clusters=n_clusters) assert_raises(ValueError, km.fit, X) def test_k_means_copyx(): # Check if copy_x=False returns nearly equal X after de-centering. my_X = X.copy() km = KMeansConstrained(copy_x=False, n_clusters=n_clusters, random_state=42) km.fit(my_X) _check_fitted_model(km) # check if my_X is centered assert_array_almost_equal(my_X, X) def test_k_means_non_collapsed(): # Check k_means with a bad initialization does not yield a singleton # Starting with bad centers that are quickly ignored should not # result in a repositioning of the centers to the center of mass that # would lead to collapsed centers which in turns make the clustering # dependent of the numerical unstabilities. my_X = np.array([[1.1, 1.1], [0.9, 1.1], [1.1, 0.9], [0.9, 1.1]]) array_init = np.array([[1.0, 1.0], [5.0, 5.0], [-5.0, -5.0]]) km = KMeansConstrained(init=array_init, n_clusters=3, random_state=42, n_init=1) km.fit(my_X) # centers must not been collapsed assert_equal(len(np.unique(km.labels_)), 3) centers = km.cluster_centers_ assert (np.linalg.norm(centers[0] - centers[1]) >= 0.1).all() assert (np.linalg.norm(centers[0] - centers[2]) >= 0.1).all() assert (np.linalg.norm(centers[1] - centers[2]) >= 0.1).all() def test_predict(): km = KMeansConstrained(n_clusters=n_clusters, random_state=42) km.fit(X) # sanity check: predict centroid labels pred = km.predict(km.cluster_centers_) assert_array_equal(pred, np.arange(n_clusters)) # sanity check: re-predict labeling for training set samples pred = km.predict(X) assert_array_equal(pred, km.labels_) # re-predict labels for training set using fit_predict pred = km.fit_predict(X) assert_array_equal(pred, km.labels_) def test_score(): km1 = KMeansConstrained(n_clusters=n_clusters, max_iter=1, random_state=42, n_init=1) s1 = km1.fit(X).score(X) km2 = KMeansConstrained(n_clusters=n_clusters, max_iter=10, random_state=42, n_init=1) s2 = km2.fit(X).score(X) assert s2 > s1 def test_transform(): km = KMeansConstrained(n_clusters=n_clusters) km.fit(X) X_new = km.transform(km.cluster_centers_) for c in range(n_clusters): assert_array_almost_equal(X_new[c, c], 0) for c2 in range(n_clusters): if c != c2: assert X_new[c, c2] > 0 def test_fit_transform(): X1 = KMeansConstrained(n_clusters=3, random_state=51).fit(X).transform(X) X2 = KMeansConstrained(n_clusters=3, random_state=51).fit_transform(X) assert_array_equal(X1, X2) def test_n_init(): # Check that increasing the number of init increases the quality n_runs = 5 n_init_range = [1, 5, 10] inertia = np.zeros((len(n_init_range), n_runs)) for i, n_init in enumerate(n_init_range): for j in range(n_runs): km = KMeansConstrained(n_clusters=n_clusters, init="random", n_init=n_init, random_state=j).fit(X) inertia[i, j] = km.inertia_ inertia = inertia.mean(axis=1) failure_msg = ("Inertia %r should be decreasing" " when n_init is increasing.") % list(inertia) for i in range(len(n_init_range) - 1): assert (inertia[i] >= inertia[i + 1]).all(), failure_msg def test_k_means_function(): # test calling the k_means function directly # catch output old_stdout = sys.stdout #sys.stdout = StringIO() try: cluster_centers, labels, inertia = k_means_constrained(X, n_clusters=n_clusters, verbose=True) finally: sys.stdout = old_stdout centers = cluster_centers assert_equal(centers.shape, (n_clusters, n_features)) labels = labels assert_equal(np.unique(labels).shape[0], n_clusters) # check that the labels assignment are perfect (up to a permutation) assert_equal(v_measure_score(true_labels, labels), 1.0) assert inertia > 0.0 # check warning when centers are passed assert_warns(RuntimeWarning, k_means_constrained, X, n_clusters=n_clusters, init=centers) # to many clusters desired assert_raises(ValueError, k_means_constrained, X, n_clusters=X.shape[0] + 1) def test_max_iter_error(): km = KMeansConstrained(max_iter=-1) with pytest.raises(ValueError, match='Number of iterations should be'): km.fit(X) def test_float_precision(): km = KMeansConstrained(n_init=1, random_state=30) inertia = {} X_new = {} centers = {} for dtype in [np.float64, np.float32]: X_test = X.astype(dtype) km.fit(X_test) # dtype of cluster centers has to be the dtype of the input # data assert_equal(km.cluster_centers_.dtype, dtype) inertia[dtype] = km.inertia_ X_new[dtype] = km.transform(X_test) centers[dtype] = km.cluster_centers_ # ensure the extracted row is a 2d array assert_equal(km.predict(X_test[:1]), km.labels_[0]) if hasattr(km, 'partial_fit'): km.partial_fit(X_test[0:3]) # dtype of cluster centers has to stay the same after # partial_fit assert_equal(km.cluster_centers_.dtype, dtype) # compare arrays with low precision since the difference between # 32 and 64 bit sometimes makes a difference up to the 4th decimal # place assert_array_almost_equal(inertia[np.float32], inertia[np.float64], decimal=4) assert_array_almost_equal(X_new[np.float32], X_new[np.float64], decimal=4) assert_array_almost_equal(centers[np.float32], centers[np.float64], decimal=4) def test_k_means_init_centers(): # This test is used to check KMeans won't mutate the user provided input # array silently even if input data and init centers have the same type X_small = np.array([[1.1, 1.1], [-7.5, -7.5], [-1.1, -1.1], [7.5, 7.5]]) init_centers = np.array([[0.0, 0.0], [5.0, 5.0], [-5.0, -5.0]]) for dtype in [np.int32, np.int64, np.float32, np.float64]: X_test = dtype(X_small) init_centers_test = dtype(init_centers) assert_array_equal(init_centers, init_centers_test) km = KMeansConstrained(init=init_centers_test, n_clusters=3, n_init=1) km.fit(X_test) assert_equal(False, np.may_share_memory(km.cluster_centers_, init_centers)) def test_sparse_k_means_init_centers(): from sklearn.datasets import load_iris iris = load_iris() X = iris.data # Get a local optimum centers = KMeansConstrained(n_clusters=3, size_min=50).fit(X).cluster_centers_ # Fit starting from a local optimum shouldn't change the solution np.testing.assert_allclose( centers, KMeansConstrained(n_clusters=3, size_min=50, init=centers, n_init=1).fit(X).cluster_centers_ ) def test_sparse_validate_centers(): from sklearn.datasets import load_iris iris = load_iris() X = iris.data # Get a local optimum centers = KMeansConstrained(n_clusters=4).fit(X).cluster_centers_ # Test that a ValueError is raised for validate_center_shape classifier = KMeansConstrained(n_clusters=3, init=centers, n_init=1) assert_raises(ValueError, classifier.fit, X) ================================================ FILE: tox.ini ================================================ # Needed for setup.py to work correctly (no idea why) [tox] envlist = py{38,39} [testenv] basepython = py38: python3.8 py39: python3.9 deps = check-manifest readme_renderer flake8 pytest commands = check-manifest --ignore tox.ini,tests* python setup.py check -m -r -s flake8 . py.test tests [flake8] exclude = .tox,*.egg,build,data select = E,W,F