a Deep Learning Framework for Text
Project description
DeLFT
DeLFT (Deep Learning Framework for Text) is a Keras and TensorFlow framework for text processing, focusing on sequence labeling (e.g. named entity tagging, information extraction) and text classification (e.g. comment classification). This library re-implements standard state-of-the-art Deep Learning architectures relevant to text processing tasks.
DeLFT has three main purposes:
-
Covering text and rich texts: most of the existing Deep Learning works in NLP only consider simple texts as input. In addition to simple texts, we also target rich text where tokens are associated to layout information (font. style, etc.), positions in structured documents, and possibly other lexical or symbolic contextual information. Text is usually coming from large documents like PDF or HTML, and not just from segments like sentences or paragraphs, and contextual features appear very useful. Rich text is the most common textual content used by humans to communicate and work.
-
Reproducibility and benchmarking: by implementing several references/state-of-the-art models for both sequence labeling and text classification tasks, we want to offer the capacity to easily validate reported results and to benchmark several methods under the same conditions and criteria.
-
Production level, by offering optimzed performance, robustness and integration possibilities, we aim at supporting better engineering decisions/trade-off and successful production-level applications.
Some contributions include:
-
A variety of modern NLP architectures and tasks to be used following the same API and input formats, including RNN and transformers.
-
Reduction of the size of RNN models, in particular by removing word embeddings from them. For instance, the model for the toxic comment classifier went down from a size of 230 MB with embeddings to 1.8 MB. In practice the size of all the models of DeLFT is less than 2 MB, except for Ontonotes 5.0 NER model which is 4.7 MB.
-
Implementation of a generic support of categorical features, available in various architectures.
-
Usage of dynamic data generator so that the training data do not need to stand completely in memory.
-
Efficient loading and management of an unlimited volume of static pre-trained embeddings.
-
A comprehensive evaluation framework with the standard metrics for sequence labeling and classification tasks, including n-fold cross validation.
-
Integration of HuggingFace transformers as Keras layers.
A native Java integration of the library has been realized in GROBID via JEP.
The latest DeLFT release 0.4.5 has been tested successfully with Python 3.10/3.11 and TensorFlow 2.17. As always, GPU(s) are required for decent training time. For example, a GeForce GTX 1050 Ti (4GB) is working very well for running RNN models and BERT or RoBERTa base models. Using BERT large model is no problem with a GeForce GTX 1080 Ti (11GB), including training with modest batch size. Using multiple GPUs (training and inference) is supported.
Changes in 0.4.1
Breaking changes
-
TensorFlow 2.17 / tf_keras 2.17: DeLFT now requires TensorFlow 2.17.1 and the standalone
tf_keras2.17.0 package. All Keras imports have been updated fromtensorflow.kerastotf_keras. Pre-trained model weights from 0.3.4 are not compatible and must be retrained. -
Python 3.10+ required: Python 3.8 and 3.9 are no longer supported.
-
CUDA 12.1 required for GPU: TensorFlow 2.17 requires CUDA 12.1. On Linux, torch is no longer included in the base
pip install delftto avoid CUDA version conflicts between torch (CUDA 12.4) and TensorFlow (CUDA 12.1). Usepip install "delft[gpu]"with the PyTorch cu121 index instead (see installation instructions below). -
LMDB embedding format changed: Embeddings are now stored as raw float32 bytes instead of pickle-serialized objects. This enables Java interoperability (used by GROBID) and improves performance. Existing LMDB caches must be converted using the provided utility:
python -m delft.utilities.convert_lmdb_embeddings --input <old-lmdb-path> --output <new-lmdb-path>
-
ELMo support removed: ELMo embeddings are no longer supported. The
use_ELMoparameter has been removed from all application scripts and configurations. Use transformer-based models (BERT, SciBERT, etc.) or static embeddings (GloVe, fastText) instead.
Other changes
- Weights & Biases integration for experiment tracking (
--wandbflag) - Distributed training support via SLURM scripts
- Additional checks for avoiding empty embeddings
- Updated default word2vec embedding URL
- Updated dependency versions (transformers 4.48, torch 2.5.1, numpy 1.26.4, scikit-learn 1.6.1, pandas 2.2.3)
DeLFT Documentation
Visit the DELFT documentation for detailed information on installation, usage and models.
Using DeLFT
PyPI packages are available for stable versions. Latest stable version is 0.4.1:
# macOS
pip install delft==0.4.1
# Linux with CUDA 12.1 (GPU)
pip install "delft[gpu]==0.4.1" --extra-index-url https://download.pytorch.org/whl/cu121
DeLFT Installation
For installing DeLFT and use the current master version, get the github repo:
git clone https://github.com/kermitt2/delft
cd delft
It is advised to setup first a virtual environment to avoid falling into one of these gloomy python dependency marshlands:
uv venv --python 3.11
source .venv/bin/activate
uv pip install pip
Install the project in editable state:
# macOS (torch is included automatically)
uv pip install -e .
# Linux with CUDA 12.1 (recommended for GPU)
uv pip install -e ".[gpu]" --extra-index-url https://download.pytorch.org/whl/cu121
# Linux with CUDA 12.1 (alternative using requirements file)
uv pip install -e . -r requirements-cuda.txt
See the DELFT documentation for usage.
Send data to Weight and Biases
-
Create a file
.envin the root of the project with the following content:WANDB_API_KEY=your_api_key WANDB_PROJECT=your_project_name WANDB_ENTITY=your_entity_name -
use the parameter
--wandbwhen running the scripts, e.g.python -m applications.delft.grobidTagger date train --architecture BidLSTM --wandb
Contributing
We welcome contributions! Please see CONTRIBUTING.md for guidelines on how to get started, code style, running tests, and the pull request process.
License and contact
Distributed under Apache 2.0 license. The dependencies used in the project are either themselves also distributed under Apache 2.0 license or distributed under a compatible license.
If you contribute to DeLFT, you agree to share your contribution following these licenses.
Contact: Patrice Lopez (patrice.lopez@science-miner.com) and Luca Foppiano (@lfoppiano).
How to cite
If you want to this work, please refer to the present GitHub project, together with the Software Heritage project-level permanent identifier. For example, with BibTeX:
@misc{DeLFT,
title = {DeLFT},
howpublished = {\url{https://github.com/kermitt2/delft}},
publisher = {GitHub},
year = {2018--2026},
archivePrefix = {swh},
eprint = {1:dir:54eb292e1c0af764e27dd179596f64679e44d06e}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file delft-0.4.5.tar.gz.
File metadata
- Download URL: delft-0.4.5.tar.gz
- Upload date:
- Size: 119.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4f509464def16a9c1f06a857747059ae22110df08965341eb37411df164aaf5
|
|
| MD5 |
98c9126872f9c92be9b6936a6a87e38e
|
|
| BLAKE2b-256 |
87edc473e7a3d21bacc9615354a61221ce63109c0e0ecf68c56d193a5266b482
|
Provenance
The following attestation bundles were made for delft-0.4.5.tar.gz:
Publisher:
ci-release.yml on kermitt2/delft
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
delft-0.4.5.tar.gz -
Subject digest:
f4f509464def16a9c1f06a857747059ae22110df08965341eb37411df164aaf5 - Sigstore transparency entry: 1166739613
- Sigstore integration time:
-
Permalink:
kermitt2/delft@ad4aa3cd0e10c35c5c93758f88dac388e9aae1da -
Branch / Tag:
refs/tags/v0.4.5 - Owner: https://github.com/kermitt2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-release.yml@ad4aa3cd0e10c35c5c93758f88dac388e9aae1da -
Trigger Event:
push
-
Statement type:
File details
Details for the file delft-0.4.5-py3-none-any.whl.
File metadata
- Download URL: delft-0.4.5-py3-none-any.whl
- Upload date:
- Size: 145.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62158dda67184d484ced168b575320294e675d661d7b7baf7d67be46ce2e7c1e
|
|
| MD5 |
1911dbb57eeb20a517d190cb0b52be5a
|
|
| BLAKE2b-256 |
ab3ee690cf608320fedc1d70079c8e7b432b616dd62101e17b0ab6fdfafc4279
|
Provenance
The following attestation bundles were made for delft-0.4.5-py3-none-any.whl:
Publisher:
ci-release.yml on kermitt2/delft
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
delft-0.4.5-py3-none-any.whl -
Subject digest:
62158dda67184d484ced168b575320294e675d661d7b7baf7d67be46ce2e7c1e - Sigstore transparency entry: 1166739657
- Sigstore integration time:
-
Permalink:
kermitt2/delft@ad4aa3cd0e10c35c5c93758f88dac388e9aae1da -
Branch / Tag:
refs/tags/v0.4.5 - Owner: https://github.com/kermitt2
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci-release.yml@ad4aa3cd0e10c35c5c93758f88dac388e9aae1da -
Trigger Event:
push
-
Statement type: