⚠️ DEPRECATED This repository is no longer actively maintained.
No further releases will be published to PyPI for this package.
Please see the following alternatives:
• For document & annotation type definitions and document processing utilities & metrics, use the pie-documents repo.
• For model and taskmodule implementations (torch-based), use pytorch-ie.
Model-, taskmodule-, and metric-implementations as well as document processing utilities for PyTorch-IE.
Available models:
- SimpleSequenceClassificationModel
- SequenceClassificationModelWithPooler
- SequencePairSimilarityModelWithPooler
- SimpleTokenClassificationModel
- TokenClassificationModelWithSeq2SeqEncoderAndCrf
- SimpleExtractiveQuestionAnsweringModel
- SimpleGenerativeModel
- SpanTupleClassificationModel
Available taskmodules:
- RETextClassificationWithIndicesTaskModule
- CrossTextBinaryCorefTaskModule
- LabeledSpanExtractionByTokenClassificationTaskModule
- ExtractiveQuestionAnsweringTaskModule
- TextToTextTaskModule
- PointerNetworkTaskModuleForEnd2EndRE
- RESpanPairClassificationTaskModule
Available metrics:
Document processing utilities:
- MultiSpanMerger
- SpansViaRelationMerger
- RegexPartitioner
- RelationArgumentSorter
- SentenceSplitter
- TextSpanTrimmer
- tokenize_document
This repository is deprecated and will receive no major updates. For ongoing maintenance and new features, please refer to:
- pie-documents — for document & annotation type definitions, and for document-processing utilities
- pytorch-ie — for model & taskmodule implementations using PyTorch
pip install pie-modulesTo install the latest version from GitHub:
pip install git+https://[email protected]/ArneBinder/pie-modules.git- This project is build with Poetry. See here for installation instructions.
- Get the code and switch into the project directory:
git clone https://github.com/ArneBinder/pie-modules cd pie-modules - Create a virtual environment and install the dependencies (including development dependencies):
poetry install --with dev
Finally, to run any of the below commands, you need to activate the virtual environment:
poetry shellNote: You can also run commands in the virtual environment without activating it first: poetry run <command>.
pre-commit run -arun all tests with coverage:
pytest --cov --cov-report term-missing- Create the release branch:
git switch --create release main - Increase the version:
poetry version <PATCH|MINOR|MAJOR>, e.g.poetry version patchfor a patch release. If the release contains new features, or breaking changes, bump the minor version (this project has no main release yet). If the release contains only bugfixes, bump the patch version. See Semantic Versioning for more information. - Commit the changes:
git commit --message="release <NEW VERSION>" pyproject.toml, e.g.git commit --message="release 0.13.0" pyproject.toml - Push the changes to GitHub:
git push origin release - Create a PR for that
releasebranch on GitHub. - Wait until checks passed successfully.
- Merge the PR into the main branch. This triggers the GitHub Action that creates all relevant release artefacts and also uploads them to PyPI.
- Cleanup: Delete the
releasebranch. This is important, because otherwise the next release will fail.