├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── examples ├── Example misspelling classification.ipynb └── Highered dataset.ipynb ├── pyhacrf ├── __init__.py ├── algorithms.pyx ├── feature_extraction.py ├── pyhacrf.py ├── state_machine.py └── tests │ ├── __init__.py │ ├── profile.py │ ├── test_features.py │ └── test_model.py ├── requirements-dev.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirko/pyhacrf/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirko/pyhacrf/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirko/pyhacrf/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirko/pyhacrf/HEAD/README.rst -------------------------------------------------------------------------------- /examples/Example misspelling classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirko/pyhacrf/HEAD/examples/Example misspelling classification.ipynb -------------------------------------------------------------------------------- /examples/Highered dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirko/pyhacrf/HEAD/examples/Highered dataset.ipynb -------------------------------------------------------------------------------- /pyhacrf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirko/pyhacrf/HEAD/pyhacrf/__init__.py -------------------------------------------------------------------------------- /pyhacrf/algorithms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirko/pyhacrf/HEAD/pyhacrf/algorithms.pyx -------------------------------------------------------------------------------- /pyhacrf/feature_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirko/pyhacrf/HEAD/pyhacrf/feature_extraction.py -------------------------------------------------------------------------------- /pyhacrf/pyhacrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirko/pyhacrf/HEAD/pyhacrf/pyhacrf.py -------------------------------------------------------------------------------- /pyhacrf/state_machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirko/pyhacrf/HEAD/pyhacrf/state_machine.py -------------------------------------------------------------------------------- /pyhacrf/tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pyhacrf/tests/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirko/pyhacrf/HEAD/pyhacrf/tests/profile.py -------------------------------------------------------------------------------- /pyhacrf/tests/test_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirko/pyhacrf/HEAD/pyhacrf/tests/test_features.py -------------------------------------------------------------------------------- /pyhacrf/tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirko/pyhacrf/HEAD/pyhacrf/tests/test_model.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | cython>=0.22 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirko/pyhacrf/HEAD/setup.py --------------------------------------------------------------------------------