Natural language structuring library
Project description
NLStruct
Natural language struturing library. Currently, it implements only a NER model, but other algorithms will follow.
Features
- processes large documents seamlessly: it automatically handles tokenization and sentence splitting.
- do not train twice: an automatic caching mechanism detects when an experiment has already been run
- stop & resume with checkpoints
- easy import and export of data
- handles nested or overlapping entities
- pretty logging with rich_logger
- heavily customizable, without config files (see train_ner.py)
- built on top of transformers and pytorch_lightning
How to train a NER model
from nlstruct.recipes import train_ner
model = train_ner(
dataset={
"train": "path to your train brat/standoff data",
"val": 0.05, # or path to your validation data
# "test": # and optional path to your test data
},
finetune_bert=False,
seed=42,
bert_name="camembert/camembert-base",
fasttext_file="",
gpus=0,
xp_name="my-xp",
)
model.save_pretrained("ner.pt")
How to use it
from nlstruct import load_pretrained
from nlstruct.datasets import load_from_brat, export_to_brat
ner = load_pretrained("ner.pt")
export_to_brat(ner.predict(load_from_brat("path/to/brat/test")), filename_prefix="path/to/exported_brat")
Install
This project is still under development and subject to changes.
pip install nlstruct
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
nlstruct-0.0.5.tar.gz
(75.4 kB
view details)
File details
Details for the file nlstruct-0.0.5.tar.gz
.
File metadata
- Download URL: nlstruct-0.0.5.tar.gz
- Upload date:
- Size: 75.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.11.2 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30086d7baeac4b8ab4cec94e133880b03cdfc6de8450c01a473ac8268e561edc |
|
MD5 | 247b3fe246c9385211eb44dd855a0bb2 |
|
BLAKE2b-256 | 41e88e57e7582656f366e1be92a81bf900b76e31602fa77ce20572bed0841302 |