Skip to main content

Performant and production-ready NLP pipelines for clinical text written in Dutch

Project description

clinlp

test docs pypi version pypi python versions license made with spaCy ruff

clinlp

  • :hospital: clinical + :netherlands: nl + :clipboard: NLP = :sparkles: clinlp
  • :star: NLP tools and algorithms for clinical text written in Dutch
  • :triangular_ruler: Organized in a standardized but flexible framework using spaCy
  • :rocket: Production-ready, performant, well-tested and easy to use
  • :bulb: Free, open source, created and maintained by the Dutch Clinical NLP community

Contact

If you have questions, need help getting started, found a bug, or have a feature request, please don't hesitate to contact us!

Getting started

Installation

pip install clinlp

Example

import spacy
from clinlp.ie import Term

nlp = spacy.blank("clinlp")

# Normalization
nlp.add_pipe("clinlp_normalizer")

# Sentences
nlp.add_pipe("clinlp_sentencizer")

# Entities
terms = {
    "prematuriteit": [
        "preterm", "<p3", "prematuriteit", "partus praematurus"
    ],
    "hypotensie": [
        "hypotensie", Term("bd verlaagd", proximity=1)
    ],
    "veneus_infarct": [
        "veneus infarct", Term("VI", attr="TEXT")
    ]
}

entity_matcher = nlp.add_pipe("clinlp_rule_based_entity_matcher", config={"attr": "NORM", "fuzzy": 1})
entity_matcher.add_terms_from_dict(terms)

# Qualifiers
nlp.add_pipe("clinlp_context_algorithm", config={"phrase_matcher_attr": "NORM"})

text = (
    "Preterme neonaat (<p3) opgenomen, bd enigszins verlaagd, familieanamnese vermeldt eveneens hypotensie "
    "bij moeder. Thans geen aanwijzingen voor veneus infarkt wat ook geen "
    "verklaring voor de partus prematurus is. Risico op VI blijft aanwezig."
)

doc = nlp(text)

Find information in the Doc object:

from spacy import displacy

displacy.render(doc, style="span", options={'spans_key': 'ents'})

example_doc_render.png

With relevant qualifiers (defaults omitted for readability):

for ent in doc.spans["ents"]:
  print(ent, ent._.qualifiers_str)
  • Preterme set()
  • <p3 set()
  • bd enigszins verlaagd set()
  • hypotensie {'Experiencer.Family'}
  • veneus infarkt {'Presence.Absent'}
  • partus prematurus set()
  • VI {'Temporality.Future'}

Documentation

The full documentation can be found at https://clinlp.readthedocs.io.

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

clinlp-0.9.4.tar.gz (410.0 kB view details)

Uploaded Source

Built Distribution

clinlp-0.9.4-py3-none-any.whl (58.0 kB view details)

Uploaded Python 3

File details

Details for the file clinlp-0.9.4.tar.gz.

File metadata

  • Download URL: clinlp-0.9.4.tar.gz
  • Upload date:
  • Size: 410.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.1

File hashes

Hashes for clinlp-0.9.4.tar.gz
Algorithm Hash digest
SHA256 753dcfeb76416284c83c8812d6aac3ad88399768a6e990c8093f3d885e1c359a
MD5 b69944dcb775594ad975afe433a8d31a
BLAKE2b-256 3840cbb52eb182444888832df8655ee8e7b18dda74d2e78d5177cf90e91dd539

See more details on using hashes here.

File details

Details for the file clinlp-0.9.4-py3-none-any.whl.

File metadata

  • Download URL: clinlp-0.9.4-py3-none-any.whl
  • Upload date:
  • Size: 58.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.1

File hashes

Hashes for clinlp-0.9.4-py3-none-any.whl
Algorithm Hash digest
SHA256 54d581cfde9cacf6cc4ecbc230ec578157476adedc6ef73955d81719dc4ca2c5
MD5 2af51eee5976d604d65c9ced792076b3
BLAKE2b-256 184281a9a0ba47ad9f0d5d9427883e4ed0807acdb4ee3b43d1054a047de20b28

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page