├── .gitignore ├── LICENSE ├── README.md ├── publish ├── requirements.txt ├── sequencelearn ├── __init__.py ├── data │ └── sample_entities.json ├── metrics.py ├── modules │ ├── __init__.py │ └── crf_head.py ├── point_tagger.py ├── samples.py ├── sequence_tagger.py └── util.py ├── setup.py └── tutorials └── Learning to predict named entities.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/sequence-learn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/sequence-learn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/sequence-learn/HEAD/README.md -------------------------------------------------------------------------------- /publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/sequence-learn/HEAD/publish -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/sequence-learn/HEAD/requirements.txt -------------------------------------------------------------------------------- /sequencelearn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/sequence-learn/HEAD/sequencelearn/__init__.py -------------------------------------------------------------------------------- /sequencelearn/data/sample_entities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/sequence-learn/HEAD/sequencelearn/data/sample_entities.json -------------------------------------------------------------------------------- /sequencelearn/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/sequence-learn/HEAD/sequencelearn/metrics.py -------------------------------------------------------------------------------- /sequencelearn/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sequencelearn/modules/crf_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/sequence-learn/HEAD/sequencelearn/modules/crf_head.py -------------------------------------------------------------------------------- /sequencelearn/point_tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/sequence-learn/HEAD/sequencelearn/point_tagger.py -------------------------------------------------------------------------------- /sequencelearn/samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/sequence-learn/HEAD/sequencelearn/samples.py -------------------------------------------------------------------------------- /sequencelearn/sequence_tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/sequence-learn/HEAD/sequencelearn/sequence_tagger.py -------------------------------------------------------------------------------- /sequencelearn/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/sequence-learn/HEAD/sequencelearn/util.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/sequence-learn/HEAD/setup.py -------------------------------------------------------------------------------- /tutorials/Learning to predict named entities.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/code-kern-ai/sequence-learn/HEAD/tutorials/Learning to predict named entities.ipynb --------------------------------------------------------------------------------