├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── ctc_segmentation ├── __init__.py ├── ctc_segmentation.py ├── ctc_segmentation_dyn.pyx └── partitioning.py ├── doc ├── 1_forward.png ├── 2_backtracking.png └── 3_scoring.png ├── pyproject.toml ├── setup.py └── tests ├── __init__.py ├── test_ctc_segmentation.py └── test_partitioning.py /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/README.md -------------------------------------------------------------------------------- /ctc_segmentation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/ctc_segmentation/__init__.py -------------------------------------------------------------------------------- /ctc_segmentation/ctc_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/ctc_segmentation/ctc_segmentation.py -------------------------------------------------------------------------------- /ctc_segmentation/ctc_segmentation_dyn.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/ctc_segmentation/ctc_segmentation_dyn.pyx -------------------------------------------------------------------------------- /ctc_segmentation/partitioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/ctc_segmentation/partitioning.py -------------------------------------------------------------------------------- /doc/1_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/doc/1_forward.png -------------------------------------------------------------------------------- /doc/2_backtracking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/doc/2_backtracking.png -------------------------------------------------------------------------------- /doc/3_scoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/doc/3_scoring.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_ctc_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/tests/test_ctc_segmentation.py -------------------------------------------------------------------------------- /tests/test_partitioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumaku/ctc-segmentation/HEAD/tests/test_partitioning.py --------------------------------------------------------------------------------