Anchor-annotator 0.8.1__tar.gz → 0.9.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/.readthedocs.yaml +2 -2
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0/Anchor_annotator.egg-info}/PKG-INFO +3 -2
- {anchor_annotator-0.8.1/Anchor_annotator.egg-info → anchor_annotator-0.9.0}/PKG-INFO +3 -2
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/_version.py +9 -4
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/command_line.py +1 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/main.py +113 -6
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/main_window.ui +15 -36
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/models.py +402 -23
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/plot.py +835 -104
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/settings.py +6 -10
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/ui_main_window.py +14 -8
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/undo.py +672 -11
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/widgets.py +308 -44
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/workers.py +632 -351
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/environment.yml +2 -2
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/rtd_environment.yml +1 -2
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/.github/workflows/publish.yml +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/.gitignore +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/.pre-commit-config.yaml +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/Anchor_annotator.egg-info/SOURCES.txt +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/Anchor_annotator.egg-info/dependency_links.txt +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/Anchor_annotator.egg-info/requires.txt +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/Anchor_annotator.egg-info/top_level.txt +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/LICENSE +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/README.md +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/__init__.py +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/__main__.py +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/corpus_manager.ui +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/db.py +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/error_dialog.ui +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/preferences.ui +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/fonts/GentiumPlus-R.ttf +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/anchor-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/angle-double-left-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/angle-double-right-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/arrows-left-right-to-line-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/book-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/bug-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/caret-down-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/caret-left-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/caret-right-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/caret-up-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/case.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/check-circle-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/check-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/chevron-down-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/chevron-left-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/chevron-right-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/chevron-up-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/circle-question-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/cloud-arrow-down-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/cog-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/compress-arrows-alt-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/edit-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/exclamation-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/exclamation-triangle-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/expand-arrows-alt-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/external-link-alt-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/fast-backward-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/fast-forward-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/file-arrow-down-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/file-circle-check-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/file-circle-question-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/file-circle-xmark-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/file-export-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/folder-open-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/history-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/keyboard-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/life-ring-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/lock-open-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/lock-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/magic-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/magnifying-glass-location-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/magnifying-glass-minus-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/magnifying-glass-plus-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/magnifying-glass-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/oov-check.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/pause-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/pen-nib-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/play-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/redo-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/regex.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/rotate.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/save-book.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/save-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/scissors-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/sort-down-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/sort-up-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/speaker.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/sync-alt-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/times-circle-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/times-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/trash-alt-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/undo-book.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/undo-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/user-edit-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/user-minus-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/user-plus-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/user-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/user-times-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/users-slash-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/users-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/volume-mute-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/volume-up-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/actions/word.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_dark/index.theme +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/anchor-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/angle-double-left-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/angle-double-right-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/arrows-left-right-to-line-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/book-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/bug-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/caret-down-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/caret-left-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/caret-right-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/caret-up-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/case.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/check-circle-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/check-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/chevron-down-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/chevron-left-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/chevron-right-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/chevron-up-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/circle-question-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/cloud-arrow-down-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/cog-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/compress-arrows-alt-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/edit-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/exclamation-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/exclamation-triangle-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/expand-arrows-alt-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/external-link-alt-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/fast-backward-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/fast-forward-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/file-arrow-down-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/file-circle-check-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/file-circle-question-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/file-circle-xmark-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/file-export-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/folder-open-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/history-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/keyboard-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/life-ring-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/lock-open-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/lock-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/magic-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/magnifying-glass-location-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/magnifying-glass-minus-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/magnifying-glass-plus-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/magnifying-glass-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/oov-check.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/pause-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/pen-nib-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/play-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/redo-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/regex.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/rotate.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/save-book.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/save-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/scissors-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/sort-down-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/sort-up-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/speaker.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/sync-alt-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/times-circle-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/times-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/trash-alt-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/undo-book.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/undo-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/user-edit-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/user-minus-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/user-plus-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/user-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/user-times-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/users-slash-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/users-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/volume-mute-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/volume-up-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/actions/word.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/anchor_light/index.theme +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/custom_icons/case-checked.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/custom_icons/oov-check.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/custom_icons/regex-checked.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/custom_icons/spinning_blue.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/custom_icons/spinning_yellow.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/icons/custom_icons/word-checked.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/logos/anchor-blue.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/logos/anchor-yellow.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/logos/loading_screen.gif +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/logos/logo_full.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/logos/logo_text.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources/logos/splash_screen.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources.qrc +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/resources_rc.py +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/title_screen.ui +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/ui_corpus_manager.py +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/ui_error_dialog.py +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/anchor/ui_preferences.py +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/Makefile +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/make.bat +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/anchor-yellow.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/anchor-yellow.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/favicon.ico +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/alignment_interface.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/alignment_settings.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/corpus_menu_load_recent.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/diarization_interface.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/diarization_progress_bar.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/diarization_results.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/diarization_search.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/diarization_utterance.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/dictionary_context_menu.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/dictionary_interface.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/dictionary_menu.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/dictionary_pronunciation.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/dictionary_results.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/dictionary_search.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/edit_menu.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/models_menu_acoustic.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/models_menu_g2p.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/models_menu_ivector.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/models_menu_lm.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/oov_interface.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/oov_pronunciation.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/oov_results.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/oov_search.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/preferences_appearance.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/preferences_general.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/preferences_keybinds.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/preferences_pitch.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/preferences_spec.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/speaker_add.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/speaker_cluster.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/speaker_cluster_legend.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/speaker_cluster_select_multiple.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/speaker_cluster_select_one.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/speaker_cluster_settings.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/speaker_cluster_toolbar.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/speaker_context_menu.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/speaker_interface.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/speaker_results.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/speaker_search.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/speaker_utterance.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_advanced.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_alignment.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_audio.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_bad_alignment.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_edit.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_help.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_interface.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_interface_change_speaker.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_interface_lookup.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_interface_oov.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_interface_tiers.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_list.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_list_header.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_play.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_results.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_search.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_toolbar.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_transcript.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_unaligned.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_waveform.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/img/utterance_zoom.png +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/_static/logo_full.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/changelog/index.rst +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/conf.py +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/first_steps/index.rst +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/getting_started.rst +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/index.rst +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/installation.rst +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/reference/index.rst +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/user_guide/configuration.rst +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/user_guide/diarization.rst +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/user_guide/dictionary.rst +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/user_guide/index.rst +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/user_guide/known_issues.rst +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/user_guide/oovs.rst +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/user_guide/speakers.rst +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/docs/source/user_guide/utterances.rst +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/anchor-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/angle-double-left-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/angle-double-right-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/arrows-left-right-to-line-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/book-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/bug-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/caret-down-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/caret-left-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/caret-right-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/caret-up-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/case.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/check-circle-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/check-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/chevron-down-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/chevron-left-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/chevron-right-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/chevron-up-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/circle-question-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/cloud-arrow-down-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/cog-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/compress-arrows-alt-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/edit-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/exclamation-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/exclamation-triangle-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/expand-arrows-alt-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/external-link-alt-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/fast-backward-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/fast-forward-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/file-arrow-down-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/file-circle-check-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/file-circle-question-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/file-circle-xmark-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/file-export-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/folder-open-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/history-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/keyboard-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/life-ring-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/lock-open-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/lock-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/magic-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/magnifying-glass-location-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/magnifying-glass-minus-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/magnifying-glass-plus-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/magnifying-glass-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/oov-check.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/pause-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/play-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/redo-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/regex.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/rotate.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/save-book.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/save-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/sort-down-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/sort-up-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/speaker.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/sync-alt-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/times-circle-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/times-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/trash-alt-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/undo-book.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/undo-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/user-edit-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/user-minus-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/user-plus-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/user-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/user-times-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/users-slash-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/users-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/volume-mute-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/volume-up-solid.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/icons/base_tool_buttons/word.svg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/pyproject.toml +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/requirements.txt +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/setup.cfg +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/setup.py +0 -0
- {anchor_annotator-0.8.1 → anchor_annotator-0.9.0}/utility/create_colored_icons.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: Anchor_annotator
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.9.0
|
4
4
|
Summary: Anchor annotator is a program for inspecting corpora for the Montreal Forced Aligner and correcting transcriptions and pronunciations.
|
5
5
|
Home-page: https://github.com/MontrealCorpusTools/Anchor-annotator
|
6
6
|
Author: Montreal Corpus Tools
|
@@ -24,6 +24,7 @@ License-File: LICENSE
|
|
24
24
|
Requires-Dist: montreal-forced-aligner
|
25
25
|
Requires-Dist: pyqtgraph
|
26
26
|
Requires-Dist: pyside6
|
27
|
+
Dynamic: license-file
|
27
28
|
|
28
29
|
# Anchor annotator
|
29
30
|
Anchor annotator is a program for inspecting corpora for the [Montreal Forced Aligner](https://montreal-forced-aligner.readthedocs.io/en/latest/) and correcting transcriptions and pronunciations
|
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.4
|
2
2
|
Name: Anchor_annotator
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.9.0
|
4
4
|
Summary: Anchor annotator is a program for inspecting corpora for the Montreal Forced Aligner and correcting transcriptions and pronunciations.
|
5
5
|
Home-page: https://github.com/MontrealCorpusTools/Anchor-annotator
|
6
6
|
Author: Montreal Corpus Tools
|
@@ -24,6 +24,7 @@ License-File: LICENSE
|
|
24
24
|
Requires-Dist: montreal-forced-aligner
|
25
25
|
Requires-Dist: pyqtgraph
|
26
26
|
Requires-Dist: pyside6
|
27
|
+
Dynamic: license-file
|
27
28
|
|
28
29
|
# Anchor annotator
|
29
30
|
Anchor annotator is a program for inspecting corpora for the [Montreal Forced Aligner](https://montreal-forced-aligner.readthedocs.io/en/latest/) and correcting transcriptions and pronunciations
|
@@ -1,8 +1,13 @@
|
|
1
|
-
# file generated by
|
1
|
+
# file generated by setuptools-scm
|
2
2
|
# don't change, don't track in version control
|
3
|
+
|
4
|
+
__all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
|
5
|
+
|
3
6
|
TYPE_CHECKING = False
|
4
7
|
if TYPE_CHECKING:
|
5
|
-
from typing import Tuple
|
8
|
+
from typing import Tuple
|
9
|
+
from typing import Union
|
10
|
+
|
6
11
|
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
7
12
|
else:
|
8
13
|
VERSION_TUPLE = object
|
@@ -12,5 +17,5 @@ __version__: str
|
|
12
17
|
__version_tuple__: VERSION_TUPLE
|
13
18
|
version_tuple: VERSION_TUPLE
|
14
19
|
|
15
|
-
__version__ = version = '0.
|
16
|
-
__version_tuple__ = version_tuple = (0,
|
20
|
+
__version__ = version = '0.9.0'
|
21
|
+
__version_tuple__ = version_tuple = (0, 9, 0)
|
@@ -15,7 +15,7 @@ from montreal_forced_aligner.config import MfaConfiguration, get_temporary_direc
|
|
15
15
|
from montreal_forced_aligner.corpus import AcousticCorpus
|
16
16
|
from montreal_forced_aligner.data import Language, WorkflowType
|
17
17
|
from montreal_forced_aligner.db import CorpusWorkflow
|
18
|
-
from montreal_forced_aligner.diarization.speaker_diarizer import FOUND_SPEECHBRAIN
|
18
|
+
from montreal_forced_aligner.diarization.speaker_diarizer import FOUND_PYANNOTE, FOUND_SPEECHBRAIN
|
19
19
|
from montreal_forced_aligner.exceptions import DatabaseError
|
20
20
|
from montreal_forced_aligner.g2p.generator import PyniniValidator
|
21
21
|
from montreal_forced_aligner.models import (
|
@@ -33,6 +33,7 @@ import anchor.db
|
|
33
33
|
from anchor import workers
|
34
34
|
from anchor.models import (
|
35
35
|
AcousticModelTableModel,
|
36
|
+
AlignmentAnalysisModel,
|
36
37
|
CorpusModel,
|
37
38
|
CorpusSelectionModel,
|
38
39
|
CorpusTableModel,
|
@@ -52,7 +53,7 @@ from anchor.ui_corpus_manager import Ui_CorpusManagerDialog
|
|
52
53
|
from anchor.ui_error_dialog import Ui_ErrorDialog
|
53
54
|
from anchor.ui_main_window import Ui_MainWindow
|
54
55
|
from anchor.ui_preferences import Ui_PreferencesDialog
|
55
|
-
from anchor.widgets import MediaPlayer, ProgressWidget
|
56
|
+
from anchor.widgets import MediaPlayer, ProgressWidget, ScrollableMenuStyle
|
56
57
|
|
57
58
|
|
58
59
|
class MainWindow(QtWidgets.QMainWindow):
|
@@ -104,6 +105,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
104
105
|
self.status_indicator = ProgressWidget()
|
105
106
|
self.status_indicator.setFixedWidth(self.ui.statusbar.height())
|
106
107
|
self.ui.statusbar.addPermanentWidget(self.status_indicator, 0)
|
108
|
+
|
107
109
|
self.settings = AnchorSettings()
|
108
110
|
self.settings.themeUpdated.connect(self.refresh_style_sheets)
|
109
111
|
self.style_hints = QtGui.QGuiApplication.styleHints()
|
@@ -122,6 +124,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
122
124
|
self.tabifyDockWidget(self.ui.utteranceDockWidget, self.ui.languageModelDockWidget)
|
123
125
|
self.tabifyDockWidget(self.ui.utteranceDockWidget, self.ui.speakerDockWidget)
|
124
126
|
self.tabifyDockWidget(self.ui.utteranceDockWidget, self.ui.diarizationDockWidget)
|
127
|
+
self.tabifyDockWidget(self.ui.utteranceDockWidget, self.ui.alignmentAnalysisDockWidget)
|
125
128
|
self.media_player = MediaPlayer(self)
|
126
129
|
self.media_player.playbackStateChanged.connect(self.handleAudioState)
|
127
130
|
self.media_player.audioReady.connect(self.file_loaded)
|
@@ -143,6 +146,8 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
143
146
|
"Counting speaker results": None,
|
144
147
|
"Counting diarization results": None,
|
145
148
|
"Diarizing utterances": None,
|
149
|
+
"Counting alignment analysis results": None,
|
150
|
+
"Analyzing alignments": None,
|
146
151
|
"Recalculating speaker ivectors": None,
|
147
152
|
"Finding duplicates": None,
|
148
153
|
"Querying utterances": None,
|
@@ -421,17 +426,20 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
421
426
|
elif function == "Counting utterance results":
|
422
427
|
worker = workers.QueryUtterancesWorker(self.corpus_model.session, **extra_args[0])
|
423
428
|
worker.signals.result.connect(finished_function)
|
429
|
+
elif function in {"Analyzing alignments", "Counting alignment analysis results"}:
|
430
|
+
worker = workers.AlignmentAnalysisWorker(self.corpus_model.session, **extra_args[0])
|
431
|
+
worker.signals.result.connect(finished_function)
|
424
432
|
elif function == "Diarizing utterances":
|
425
433
|
worker = workers.SpeakerDiarizationWorker(self.corpus_model.session, **extra_args[0])
|
426
434
|
worker.signals.result.connect(finished_function)
|
427
435
|
elif function == "Diarizing speakers":
|
428
|
-
worker = workers.
|
436
|
+
worker = workers.SpeakerComparisonWorker(self.corpus_model.session, **extra_args[0])
|
429
437
|
worker.signals.result.connect(finished_function)
|
430
438
|
elif function == "Counting utterance diarization results":
|
431
439
|
worker = workers.SpeakerDiarizationWorker(self.corpus_model.session, **extra_args[0])
|
432
440
|
worker.signals.result.connect(finished_function)
|
433
441
|
elif function == "Counting speaker diarization results":
|
434
|
-
worker = workers.
|
442
|
+
worker = workers.SpeakerComparisonWorker(self.corpus_model.session, **extra_args[0])
|
435
443
|
worker.signals.result.connect(finished_function)
|
436
444
|
elif function == "Merging speakers":
|
437
445
|
self.set_application_state("loading")
|
@@ -532,12 +540,14 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
532
540
|
self.file_utterances_model = FileUtterancesModel(self)
|
533
541
|
self.speaker_model = SpeakerModel(self)
|
534
542
|
self.diarization_model = DiarizationModel(self)
|
543
|
+
self.alignment_analysis_model = AlignmentAnalysisModel(self)
|
535
544
|
|
536
545
|
self.file_utterances_model.set_corpus_model(self.corpus_model)
|
537
546
|
|
538
547
|
self.corpus_model.databaseSynced.connect(self.handle_changes_synced)
|
539
548
|
self.corpus_model.runFunction.connect(self.execute_runnable)
|
540
549
|
self.diarization_model.runFunction.connect(self.execute_runnable)
|
550
|
+
self.alignment_analysis_model.runFunction.connect(self.execute_runnable)
|
541
551
|
self.corpus_model.lockCorpus.connect(self.anchor_lock_corpus)
|
542
552
|
self.corpus_model.statusUpdate.connect(self.update_status_message)
|
543
553
|
self.corpus_model.unlockCorpus.connect(self.anchor_unlock_corpus)
|
@@ -551,6 +561,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
551
561
|
self.corpus_model.set_dictionary_model(self.dictionary_model)
|
552
562
|
self.speaker_model.set_corpus_model(self.corpus_model)
|
553
563
|
self.diarization_model.set_corpus_model(self.corpus_model)
|
564
|
+
self.alignment_analysis_model.set_corpus_model(self.corpus_model)
|
554
565
|
self.oov_model.set_corpus_model(self.corpus_model)
|
555
566
|
self.selection_model = CorpusSelectionModel(self.corpus_model)
|
556
567
|
self.file_selection_model = FileSelectionModel(self.file_utterances_model)
|
@@ -575,6 +586,9 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
575
586
|
self.ui.languageModelWidget.set_models(self.corpus_model)
|
576
587
|
self.ui.dictionaryWidget.set_models(self.dictionary_model)
|
577
588
|
self.ui.diarizationWidget.set_models(self.diarization_model, self.file_selection_model)
|
589
|
+
self.ui.alignmentAnalysisWidget.set_models(
|
590
|
+
self.alignment_analysis_model, self.file_selection_model
|
591
|
+
)
|
578
592
|
self.ui.oovWidget.set_models(self.oov_model)
|
579
593
|
self.file_selection_model.currentUtteranceChanged.connect(self.change_utterance)
|
580
594
|
self.file_selection_model.currentUtteranceChanged.connect(
|
@@ -665,7 +679,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
665
679
|
else:
|
666
680
|
if (
|
667
681
|
not self.corpus_model.corpus.has_alignments()
|
668
|
-
or not self.corpus_model.corpus.has_alignments(
|
682
|
+
or not self.corpus_model.corpus.has_alignments()
|
669
683
|
):
|
670
684
|
self.ui.evaluateAlignmentsAct.setEnabled(False)
|
671
685
|
# if self.corpus_model.corpus.alignment_done:
|
@@ -777,6 +791,10 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
777
791
|
self.settings.setValue(
|
778
792
|
AnchorSettings.DIARIZATION_VISIBLE, self.ui.diarizationDockWidget.isVisible()
|
779
793
|
)
|
794
|
+
self.settings.setValue(
|
795
|
+
AnchorSettings.ALIGNMENT_ANALYSIS_VISIBLE,
|
796
|
+
self.ui.alignmentAnalysisDockWidget.isVisible(),
|
797
|
+
)
|
780
798
|
self.settings.setValue(AnchorSettings.GEOMETRY, self.saveGeometry())
|
781
799
|
self.settings.setValue(AnchorSettings.WINDOW_STATE, self.saveState())
|
782
800
|
|
@@ -925,6 +943,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
925
943
|
self.ui.menuWindow.addAction(self.ui.alignmentDockWidget.toggleViewAction())
|
926
944
|
self.ui.menuWindow.addAction(self.ui.transcriptionDockWidget.toggleViewAction())
|
927
945
|
self.ui.menuWindow.addAction(self.ui.diarizationDockWidget.toggleViewAction())
|
946
|
+
self.ui.menuWindow.addAction(self.ui.alignmentAnalysisDockWidget.toggleViewAction())
|
928
947
|
|
929
948
|
self.merge_all_action = QtGui.QAction(self)
|
930
949
|
self.merge_all_action.setObjectName("merge_all_action")
|
@@ -1063,6 +1082,41 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1063
1082
|
f"Found {duplicate_count} duplicate files, see {duplicate_path}."
|
1064
1083
|
)
|
1065
1084
|
|
1085
|
+
def refresh_local_dictionaries(self):
|
1086
|
+
for a in self.ui.mfaDictionaryMenu.actions():
|
1087
|
+
self.dictionary_action_group.removeAction(a)
|
1088
|
+
self.ui.mfaDictionaryMenu.clear()
|
1089
|
+
with sqlalchemy.orm.Session(self.db_engine) as session:
|
1090
|
+
current_corpus = (
|
1091
|
+
session.query(anchor.db.AnchorCorpus)
|
1092
|
+
.options(
|
1093
|
+
sqlalchemy.orm.joinedload(anchor.db.AnchorCorpus.acoustic_model),
|
1094
|
+
sqlalchemy.orm.joinedload(anchor.db.AnchorCorpus.language_model),
|
1095
|
+
sqlalchemy.orm.joinedload(anchor.db.AnchorCorpus.dictionary),
|
1096
|
+
sqlalchemy.orm.joinedload(anchor.db.AnchorCorpus.ivector_extractor),
|
1097
|
+
sqlalchemy.orm.joinedload(anchor.db.AnchorCorpus.g2p_model),
|
1098
|
+
sqlalchemy.orm.joinedload(anchor.db.AnchorCorpus.sad_model),
|
1099
|
+
)
|
1100
|
+
.filter(anchor.db.AnchorCorpus.current == True) # noqa
|
1101
|
+
.first()
|
1102
|
+
)
|
1103
|
+
for m in (
|
1104
|
+
session.query(anchor.db.Dictionary)
|
1105
|
+
.filter_by(available_locally=True)
|
1106
|
+
.order_by(anchor.db.Dictionary.last_used.desc())
|
1107
|
+
):
|
1108
|
+
a = QtGui.QAction(text=f"{m.path} [{m.name}]", parent=self)
|
1109
|
+
a.setData(m.id)
|
1110
|
+
if (
|
1111
|
+
current_corpus is not None
|
1112
|
+
and current_corpus.dictionary is not None
|
1113
|
+
and current_corpus.dictionary == m
|
1114
|
+
):
|
1115
|
+
a.setChecked(True)
|
1116
|
+
a.triggered.connect(self.change_dictionary)
|
1117
|
+
self.dictionary_action_group.addAction(a)
|
1118
|
+
self.ui.mfaDictionaryMenu.addAction(a)
|
1119
|
+
|
1066
1120
|
def refresh_model_actions(self):
|
1067
1121
|
self.ui.menuLanguage.clear()
|
1068
1122
|
for lang in sorted(Language, key=lambda x: x.display_name):
|
@@ -1230,6 +1284,24 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1230
1284
|
a.triggered.connect(self.change_ivector_extractor)
|
1231
1285
|
self.ui.ivectorExtractorMenu.addAction(a)
|
1232
1286
|
self.ivector_action_group.addAction(a)
|
1287
|
+
if FOUND_PYANNOTE:
|
1288
|
+
m = (
|
1289
|
+
session.query(anchor.db.IvectorExtractor)
|
1290
|
+
.filter(anchor.db.IvectorExtractor.path == "pyannote")
|
1291
|
+
.first()
|
1292
|
+
)
|
1293
|
+
if m is None:
|
1294
|
+
m = anchor.db.IvectorExtractor(
|
1295
|
+
name="pyannote", path="pyannote", available_locally=True
|
1296
|
+
)
|
1297
|
+
session.add(m)
|
1298
|
+
session.flush()
|
1299
|
+
session.commit()
|
1300
|
+
a = QtGui.QAction(text="pyannote", parent=self)
|
1301
|
+
a.setData(m.id)
|
1302
|
+
a.triggered.connect(self.change_ivector_extractor)
|
1303
|
+
self.ui.ivectorExtractorMenu.addAction(a)
|
1304
|
+
self.ivector_action_group.addAction(a)
|
1233
1305
|
for m_name, found in [("speechbrain", FOUND_SPEECHBRAIN), ("whisper", FOUND_WHISPERX)]:
|
1234
1306
|
if not found:
|
1235
1307
|
continue
|
@@ -1356,7 +1428,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1356
1428
|
self.set_application_state("loading")
|
1357
1429
|
self.ui.loadingScreen.setCorpusName(f"Loading {c.path}...")
|
1358
1430
|
dictionary_path = None
|
1359
|
-
if c.dictionary is not None:
|
1431
|
+
if c.dictionary is not None and c.dictionary.path != ".":
|
1360
1432
|
dictionary_path = c.dictionary.path
|
1361
1433
|
self.corpus_worker.set_params(c.path, dictionary_path)
|
1362
1434
|
self.corpus_worker.start()
|
@@ -1406,6 +1478,8 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1406
1478
|
self.corpus_model.has_per_speaker_transcribed_alignments = True
|
1407
1479
|
|
1408
1480
|
def finalize_load_corpus(self, corpus: AcousticCorpus):
|
1481
|
+
from montreal_forced_aligner.db import Dictionary
|
1482
|
+
|
1409
1483
|
if corpus is None:
|
1410
1484
|
self.set_application_state("unloaded")
|
1411
1485
|
self.corpus = corpus
|
@@ -1414,6 +1488,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1414
1488
|
plda_path = self.corpus_model.corpus.output_directory.joinpath(
|
1415
1489
|
"speaker_diarization"
|
1416
1490
|
).joinpath("plda")
|
1491
|
+
self.corpus_model.corpus.create_new_current_workflow(WorkflowType.reference)
|
1417
1492
|
if plda_path.exists():
|
1418
1493
|
self.corpus_model.plda = read_kaldi_object(Plda, plda_path)
|
1419
1494
|
self.corpus_model.runFunction.emit(
|
@@ -1430,6 +1505,33 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1430
1505
|
c = session.query(anchor.db.AnchorCorpus).filter_by(current=True).first()
|
1431
1506
|
if c.custom_mapping_path:
|
1432
1507
|
self.dictionary_model.set_custom_mapping(c.custom_mapping_path)
|
1508
|
+
dictionaries = self.corpus_model.session.query(Dictionary).all()
|
1509
|
+
refresh_dictionaries = c.dictionary_id is None and dictionaries
|
1510
|
+
if refresh_dictionaries:
|
1511
|
+
for d in dictionaries:
|
1512
|
+
dictionary_path = d.path
|
1513
|
+
if not os.path.exists(dictionary_path):
|
1514
|
+
continue
|
1515
|
+
self.settings.setValue(
|
1516
|
+
AnchorSettings.DEFAULT_DICTIONARY_DIRECTORY,
|
1517
|
+
os.path.dirname(dictionary_path),
|
1518
|
+
)
|
1519
|
+
d = (
|
1520
|
+
session.query(anchor.db.Dictionary)
|
1521
|
+
.filter_by(path=dictionary_path)
|
1522
|
+
.first()
|
1523
|
+
)
|
1524
|
+
if not d:
|
1525
|
+
d_name = os.path.splitext(os.path.basename(dictionary_path))[0]
|
1526
|
+
d = anchor.db.Dictionary(
|
1527
|
+
name=d_name, path=dictionary_path, available_locally=True
|
1528
|
+
)
|
1529
|
+
session.add(d)
|
1530
|
+
c.dictionary = d
|
1531
|
+
session.commit()
|
1532
|
+
if refresh_dictionaries:
|
1533
|
+
self.refresh_local_dictionaries()
|
1534
|
+
self.check_actions()
|
1433
1535
|
|
1434
1536
|
def finalize_reload_corpus(self):
|
1435
1537
|
self.set_application_state("loaded")
|
@@ -1709,6 +1811,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1709
1811
|
self.ui.alignmentDockWidget.setVisible(False)
|
1710
1812
|
self.ui.languageModelDockWidget.setVisible(False)
|
1711
1813
|
self.ui.diarizationDockWidget.setVisible(False)
|
1814
|
+
self.ui.alignmentAnalysisDockWidget.setVisible(False)
|
1712
1815
|
self.ui.toolBar.setVisible(False)
|
1713
1816
|
|
1714
1817
|
self.ui.utteranceDetailWidget.setVisible(False)
|
@@ -1760,6 +1863,9 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1760
1863
|
self.ui.diarizationDockWidget.setVisible(
|
1761
1864
|
self.settings.value(AnchorSettings.DIARIZATION_VISIBLE)
|
1762
1865
|
)
|
1866
|
+
self.ui.alignmentAnalysisDockWidget.setVisible(
|
1867
|
+
self.settings.value(AnchorSettings.ALIGNMENT_ANALYSIS_VISIBLE)
|
1868
|
+
)
|
1763
1869
|
self.ui.toolBar.setVisible(True)
|
1764
1870
|
|
1765
1871
|
self.ui.utteranceDetailWidget.setVisible(True)
|
@@ -1795,6 +1901,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1795
1901
|
self.ui.speakerDockWidget.setVisible(False)
|
1796
1902
|
self.ui.utteranceDetailWidget.setVisible(False)
|
1797
1903
|
self.ui.diarizationDockWidget.setVisible(False)
|
1904
|
+
self.ui.alignmentAnalysisDockWidget.setVisible(False)
|
1798
1905
|
|
1799
1906
|
self.ui.changeTemporaryDirectoryAct.setEnabled(True)
|
1800
1907
|
self.ui.openPreferencesAct.setEnabled(True)
|
@@ -71,12 +71,6 @@
|
|
71
71
|
<string>Corpus</string>
|
72
72
|
</property>
|
73
73
|
<widget class="QMenu" name="loadRecentCorpusMenu">
|
74
|
-
<property name="maximumSize">
|
75
|
-
<size>
|
76
|
-
<width>200</width>
|
77
|
-
<height>400</height>
|
78
|
-
</size>
|
79
|
-
</property>
|
80
74
|
<property name="title">
|
81
75
|
<string>Load a recent corpus</string>
|
82
76
|
</property>
|
@@ -115,12 +109,6 @@
|
|
115
109
|
<addaction name="separator"/>
|
116
110
|
</widget>
|
117
111
|
<widget class="QMenu" name="menuDownload_dictionary">
|
118
|
-
<property name="maximumSize">
|
119
|
-
<size>
|
120
|
-
<width>200</width>
|
121
|
-
<height>400</height>
|
122
|
-
</size>
|
123
|
-
</property>
|
124
112
|
<property name="title">
|
125
113
|
<string>Download dictionary</string>
|
126
114
|
</property>
|
@@ -172,48 +160,24 @@
|
|
172
160
|
<addaction name="separator"/>
|
173
161
|
</widget>
|
174
162
|
<widget class="QMenu" name="menuDownload_acoustic_model">
|
175
|
-
<property name="maximumSize">
|
176
|
-
<size>
|
177
|
-
<width>200</width>
|
178
|
-
<height>400</height>
|
179
|
-
</size>
|
180
|
-
</property>
|
181
163
|
<property name="title">
|
182
164
|
<string>Download acoustic model</string>
|
183
165
|
</property>
|
184
166
|
<addaction name="separator"/>
|
185
167
|
</widget>
|
186
168
|
<widget class="QMenu" name="menuDownload_ivector_extractor">
|
187
|
-
<property name="maximumSize">
|
188
|
-
<size>
|
189
|
-
<width>200</width>
|
190
|
-
<height>400</height>
|
191
|
-
</size>
|
192
|
-
</property>
|
193
169
|
<property name="title">
|
194
170
|
<string>Download ivector extractor</string>
|
195
171
|
</property>
|
196
172
|
<addaction name="separator"/>
|
197
173
|
</widget>
|
198
174
|
<widget class="QMenu" name="menuDownload_language_model">
|
199
|
-
<property name="maximumSize">
|
200
|
-
<size>
|
201
|
-
<width>200</width>
|
202
|
-
<height>400</height>
|
203
|
-
</size>
|
204
|
-
</property>
|
205
175
|
<property name="title">
|
206
176
|
<string>Download language model</string>
|
207
177
|
</property>
|
208
178
|
<addaction name="separator"/>
|
209
179
|
</widget>
|
210
180
|
<widget class="QMenu" name="menuDownload_G2P_model">
|
211
|
-
<property name="maximumSize">
|
212
|
-
<size>
|
213
|
-
<width>200</width>
|
214
|
-
<height>400</height>
|
215
|
-
</size>
|
216
|
-
</property>
|
217
181
|
<property name="title">
|
218
182
|
<string>Download G2P model</string>
|
219
183
|
</property>
|
@@ -431,6 +395,15 @@
|
|
431
395
|
</attribute>
|
432
396
|
<widget class="DiarizationWidget" name="diarizationWidget"/>
|
433
397
|
</widget>
|
398
|
+
<widget class="QDockWidget" name="alignmentAnalysisDockWidget">
|
399
|
+
<property name="windowTitle">
|
400
|
+
<string>Alignment analysis</string>
|
401
|
+
</property>
|
402
|
+
<attribute name="dockWidgetArea">
|
403
|
+
<number>1</number>
|
404
|
+
</attribute>
|
405
|
+
<widget class="AlignmentAnalysisWidget" name="alignmentAnalysisWidget"/>
|
406
|
+
</widget>
|
434
407
|
<action name="loadCorpusAct">
|
435
408
|
<property name="text">
|
436
409
|
<string>Load a corpus</string>
|
@@ -998,6 +971,12 @@
|
|
998
971
|
<header>anchor.widgets</header>
|
999
972
|
<container>1</container>
|
1000
973
|
</customwidget>
|
974
|
+
<customwidget>
|
975
|
+
<class>AlignmentAnalysisWidget</class>
|
976
|
+
<extends>QWidget</extends>
|
977
|
+
<header>anchor.widgets</header>
|
978
|
+
<container>1</container>
|
979
|
+
</customwidget>
|
1001
980
|
</customwidgets>
|
1002
981
|
<resources>
|
1003
982
|
<include location="resources.qrc"/>
|