├── .gitattributes ├── .github └── workflows │ ├── doc.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .python-version ├── CHANGELOG.md ├── LICENSE ├── README.md ├── doc ├── Makefile └── source │ ├── changelog.rst │ ├── conf.py │ ├── index.rst │ ├── pyplots │ ├── annotation.py │ ├── introduction.py │ ├── segment.py │ └── timeline.py │ ├── reference.rst │ ├── structure.rst │ └── visualization.rst ├── notebook ├── index.ipynb ├── pyannote.core.annotation.ipynb ├── pyannote.core.feature.ipynb ├── pyannote.core.scores.ipynb ├── pyannote.core.segment.ipynb └── pyannote.core.timeline.ipynb ├── pyproject.toml ├── src └── pyannote │ └── core │ ├── __init__.py │ ├── annotation.py │ ├── feature.py │ ├── notebook.py │ ├── segment.py │ ├── timeline.py │ └── utils │ ├── __init__.py │ ├── cluster.py │ ├── distance.py │ ├── generators.py │ ├── helper.py │ ├── hierarchy.py │ ├── numpy.py │ ├── random.py │ └── types.py ├── tests ├── __init__.py ├── test_annotations.py ├── test_features.py ├── test_segment.py ├── test_timeline.py └── utils.py └── uv.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | doc/source/conf.py export-subst 2 | -------------------------------------------------------------------------------- /.github/workflows/doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/.github/workflows/doc.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/README.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/source/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/doc/source/changelog.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/pyplots/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/doc/source/pyplots/annotation.py -------------------------------------------------------------------------------- /doc/source/pyplots/introduction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/doc/source/pyplots/introduction.py -------------------------------------------------------------------------------- /doc/source/pyplots/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/doc/source/pyplots/segment.py -------------------------------------------------------------------------------- /doc/source/pyplots/timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/doc/source/pyplots/timeline.py -------------------------------------------------------------------------------- /doc/source/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/doc/source/reference.rst -------------------------------------------------------------------------------- /doc/source/structure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/doc/source/structure.rst -------------------------------------------------------------------------------- /doc/source/visualization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/doc/source/visualization.rst -------------------------------------------------------------------------------- /notebook/index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/notebook/index.ipynb -------------------------------------------------------------------------------- /notebook/pyannote.core.annotation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/notebook/pyannote.core.annotation.ipynb -------------------------------------------------------------------------------- /notebook/pyannote.core.feature.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/notebook/pyannote.core.feature.ipynb -------------------------------------------------------------------------------- /notebook/pyannote.core.scores.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/notebook/pyannote.core.scores.ipynb -------------------------------------------------------------------------------- /notebook/pyannote.core.segment.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/notebook/pyannote.core.segment.ipynb -------------------------------------------------------------------------------- /notebook/pyannote.core.timeline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/notebook/pyannote.core.timeline.ipynb -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pyannote/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/src/pyannote/core/__init__.py -------------------------------------------------------------------------------- /src/pyannote/core/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/src/pyannote/core/annotation.py -------------------------------------------------------------------------------- /src/pyannote/core/feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/src/pyannote/core/feature.py -------------------------------------------------------------------------------- /src/pyannote/core/notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/src/pyannote/core/notebook.py -------------------------------------------------------------------------------- /src/pyannote/core/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/src/pyannote/core/segment.py -------------------------------------------------------------------------------- /src/pyannote/core/timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/src/pyannote/core/timeline.py -------------------------------------------------------------------------------- /src/pyannote/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/src/pyannote/core/utils/__init__.py -------------------------------------------------------------------------------- /src/pyannote/core/utils/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/src/pyannote/core/utils/cluster.py -------------------------------------------------------------------------------- /src/pyannote/core/utils/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/src/pyannote/core/utils/distance.py -------------------------------------------------------------------------------- /src/pyannote/core/utils/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/src/pyannote/core/utils/generators.py -------------------------------------------------------------------------------- /src/pyannote/core/utils/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/src/pyannote/core/utils/helper.py -------------------------------------------------------------------------------- /src/pyannote/core/utils/hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/src/pyannote/core/utils/hierarchy.py -------------------------------------------------------------------------------- /src/pyannote/core/utils/numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/src/pyannote/core/utils/numpy.py -------------------------------------------------------------------------------- /src/pyannote/core/utils/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/src/pyannote/core/utils/random.py -------------------------------------------------------------------------------- /src/pyannote/core/utils/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/src/pyannote/core/utils/types.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/tests/test_annotations.py -------------------------------------------------------------------------------- /tests/test_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/tests/test_features.py -------------------------------------------------------------------------------- /tests/test_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/tests/test_segment.py -------------------------------------------------------------------------------- /tests/test_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/tests/test_timeline.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/tests/utils.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyannote/pyannote-core/HEAD/uv.lock --------------------------------------------------------------------------------