├── .flake8 ├── .github └── workflows │ ├── handle_stale.yml │ └── run_tests.yml ├── .gitignore ├── .readthedocs.yml ├── .style.yapf ├── LICENSE.txt ├── Makefile ├── README.rst ├── docs ├── Makefile ├── conf.py ├── index.rst └── requirements.txt ├── pre-commit.sh ├── pytest.ini ├── requirements-test.txt ├── requirements.txt ├── setup.py ├── tests └── test_crf.py └── torchcrf └── __init__.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E,W # let yapf handle styles 3 | show-source = True 4 | -------------------------------------------------------------------------------- /.github/workflows/handle_stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/.github/workflows/handle_stale.yml -------------------------------------------------------------------------------- /.github/workflows/run_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/.github/workflows/run_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/.style.yapf -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/pre-commit.sh -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/tests/test_crf.py -------------------------------------------------------------------------------- /torchcrf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kmkurn/pytorch-crf/HEAD/torchcrf/__init__.py --------------------------------------------------------------------------------