├── .github ├── ISSUE_TEMPLATE │ ├── 01_bugs.md │ ├── 02_docs.md │ ├── 03_feature-request.md │ └── config.yml ├── dependabot.yml └── workflows │ ├── dependabot_automerge.yml │ ├── documentation.yml │ ├── release.yml │ ├── stale.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── citation.cff ├── docs ├── Makefile ├── _static │ ├── favicon.ico │ ├── icon.png │ └── icon_dark.png ├── conf.py ├── faq.rst ├── index.rst ├── installation.rst ├── news.rst └── wrap.pipeline_component.rst ├── pyproject.toml ├── readme.md ├── src └── spacy_wrap │ ├── __init__.py │ ├── about.py │ ├── architectures.py │ ├── layers │ ├── __init__.py │ └── clf_transformer_model.py │ ├── pipeline_component_seq_clf.py │ ├── pipeline_component_tok_clf.py │ └── util.py └── tests ├── __init__.py ├── test_seq_clf_transformer.py └── test_tok_clf_transformer.py /.github/ISSUE_TEMPLATE/01_bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/.github/ISSUE_TEMPLATE/01_bugs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/.github/ISSUE_TEMPLATE/02_docs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03_feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/.github/ISSUE_TEMPLATE/03_feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot_automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/.github/workflows/dependabot_automerge.yml -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/LICENSE -------------------------------------------------------------------------------- /citation.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/citation.cff -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/docs/_static/favicon.ico -------------------------------------------------------------------------------- /docs/_static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/docs/_static/icon.png -------------------------------------------------------------------------------- /docs/_static/icon_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/docs/_static/icon_dark.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/news.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/docs/news.rst -------------------------------------------------------------------------------- /docs/wrap.pipeline_component.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/docs/wrap.pipeline_component.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/readme.md -------------------------------------------------------------------------------- /src/spacy_wrap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/src/spacy_wrap/__init__.py -------------------------------------------------------------------------------- /src/spacy_wrap/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/src/spacy_wrap/about.py -------------------------------------------------------------------------------- /src/spacy_wrap/architectures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/src/spacy_wrap/architectures.py -------------------------------------------------------------------------------- /src/spacy_wrap/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/spacy_wrap/layers/clf_transformer_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/src/spacy_wrap/layers/clf_transformer_model.py -------------------------------------------------------------------------------- /src/spacy_wrap/pipeline_component_seq_clf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/src/spacy_wrap/pipeline_component_seq_clf.py -------------------------------------------------------------------------------- /src/spacy_wrap/pipeline_component_tok_clf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/src/spacy_wrap/pipeline_component_tok_clf.py -------------------------------------------------------------------------------- /src/spacy_wrap/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/src/spacy_wrap/util.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_seq_clf_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/tests/test_seq_clf_transformer.py -------------------------------------------------------------------------------- /tests/test_tok_clf_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KennethEnevoldsen/spacy-wrap/HEAD/tests/test_tok_clf_transformer.py --------------------------------------------------------------------------------