From 834bc00d0260cab98542096df7282d636a9f029d Mon Sep 17 00:00:00 2001 From: Arne Binder Date: Mon, 22 Sep 2025 22:20:05 +0200 Subject: [PATCH 1/2] add deprecation note --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index d45e7afa1..7cb63db3f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,12 @@ # pie-modules +> ⚠️ **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, use the [**pie-documents**](https://github.com/ArneBinder/pie-documents) repo.
+> **•** For model and taskmodule implementations (torch-based), use [**pytorch-ie**](https://github.com/ArneBinder/pytorch-ie). + PyTorch Lightning PyTorch-IE
@@ -50,6 +57,18 @@ Document processing utilities: - [TextSpanTrimmer](src/pie_modules/document/processing/text_span_trimmer.py) - [tokenize_document](src/pie_modules/document/processing/tokenization.py) +______________________________________________________________________ + +## Important Notice + +This repository is **deprecated** and will receive no major updates. +For ongoing maintenance and new features, please refer to: + +- [**pie-documents**](https://github.com/ArneBinder/pie-documents) — for document & annotation type definitions, and for document-processing utilities +- [**pytorch-ie**](https://github.com/ArneBinder/pytorch-ie) — for model & taskmodule implementations using PyTorch + +______________________________________________________________________ + ## Setup ```bash From 77543dc3dc2c012b379ca54d1f58d008d82d1a00 Mon Sep 17 00:00:00 2001 From: Arne Binder Date: Mon, 22 Sep 2025 22:22:52 +0200 Subject: [PATCH 2/2] fix deprecation note --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7cb63db3f..fbcab8293 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ > 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, use the [**pie-documents**](https://github.com/ArneBinder/pie-documents) repo.
+> **•** For document & annotation type definitions and document processing utilities & metrics, use the [**pie-documents**](https://github.com/ArneBinder/pie-documents) repo.
> **•** For model and taskmodule implementations (torch-based), use [**pytorch-ie**](https://github.com/ArneBinder/pytorch-ie). PyTorch