CleanNote: preprocessing and harmonization of medical notes
Project description
CleanNote
English
CleanNote analyzes raw medical notes and transforms them into concise, structured documents focused on symptoms, medical conclusions, and treatments, enabling easier analysis and clinical research.
This solution was developed during a research internship at the Hubert Curien laboratory, and is currently demonstrated using the AGBonnet/Augmented-clinical-notes dataset together with the mistralai/Mistral-7B-Instruct-v0.3 model.
This work was supervised by three people:
-
Ms. Combes Catherine, company supervisor and associate professor, who proposed the topic of the preprocessing pipeline,
-
Ms. Fresse Virginie, school supervisor and associate professor, who guided me on frugality aspects and formatting,
-
Mr. ****, PhD Hatoum Carl, who provided support on identifying adapted solutions and domain knowledge.
Installation
First, make sure you are inside your Python virtual environment (e.g. venv).
To install the latest available version (see the PyPI badge above):
pip install -U cleanote
If you want to install a specific version (for example 0.2.1):
pip install -U cleanote==0.2.1
The latest released version is always displayed in the PyPI badge at the top of this README.
Usage
After installation, you can using CleanNote with just few lines of code:
from cleanote.pipeline import Pipeline
from cleanote.dataset import Dataset
from cleanote.model import Model
data = Dataset(name="AGBonnet/Augmented-clinical-notes", split="train", field="full_note", limit=20)
prompt = """Analyze the document below and return a single, valid JSON object with exactly these keys (no trailing commas):
{{
"Symptoms": [/* list of symptoms extracted from the document */],
"MedicalConclusion": [/* list of medical conclusion extracted from the document */],
"Treatments": [/* list of treatments extracted from the document */],
"Summary": "/* a professional paragraph summarizing the note, that mentions only items already listed in Symptoms, MedicalConclusion, and Treatments, without inventing anything */"
}}
- If no information exists for a given key, return "none" for that key.
- The Summary field **must use only** the items already extracted above and **must not add** any new facts.
- Ensure the output is **syntactically valid JSON**.
Document:
"""
ml_h = Model(
name="mistralai/Mistral-7B-Instruct-v0.3",
task="text-generation",
prompt=prompt,
max_new_tokens=1024,
do_sample=False,
temperature=0.0,
top_p=1.0)
pipe = Pipeline(dataset=data, model_h = ml_h)
out = pipe.apply()
pipe.save_all_stats_images(limit=20)
xls = pipe.to_excel()
print(f"Excel file saved : {xls}")
Literature
- Identification de profils patients à partir de notes cliniques non structurées.
Corentin Laval, Catherine Combes, Rémi Eyraud, Virginie Fresse.
PFIA 2025.
Français
CleanNote analyse des notes médicales brutes et les transforme en documents concis et structurés, centrés sur les symptômes, les conclusions médicales et les traitements, afin de faciliter leur analyse et la recherche clinique.
Cette solution a été développée dans le cadre d’un stage de recherche au laboratoire Hubert Curien , et est actuellement démontrée à l’aide du jeu de données AGBonnet/Augmented-clinical-notes ainsi que du modèle mistralai/Mistral-7B-Instruct-v0.3.
Ce travail a été supervisé par trois personnes :
-
Mme Combes Catherine, tutrice entreprise et maîtresse de conférences, qui a proposé le sujet du pipeline de prétraitement,
-
Mme Fresse Virginie, tutrice école et maîtresse de conférences, qui m’a encadré sur les aspects de frugalité et de mise en forme,
-
M. Hatoum Carl, doctorant, qui m’a accompagné sur l’identification des solutions adaptées et l’apport de connaissances du domaine.
Installation
Tout d’abord, assurez-vous d’être dans votre environnement virtuel Python (par ex. venv).
Pour installer la dernière version disponible (voir le badge PyPI ci-dessus) :
pip install -U cleanote
Si vous souhaitez installer une version spécifique (par exemple 0.2.1):
pip install -U cleanote==0.2.1
La dernière version publiée est toujours affichée dans le badge PyPI en haut de ce README.
Utilisation
Après installation, vous pouvez utiliser CleanNote en seulement quelques lignes de code :
from cleanote.pipeline import Pipeline
from cleanote.dataset import Dataset
from cleanote.model import Model
data = Dataset(name="AGBonnet/Augmented-clinical-notes", split="train", field="full_note", limit=20)
prompt = """Analyze the document below and return a single, valid JSON object with exactly these keys (no trailing commas):
{{
"Symptoms": [/* list of symptoms extracted from the document */],
"MedicalConclusion": [/* list of medical conclusion extracted from the document */],
"Treatments": [/* list of treatments extracted from the document */],
"Summary": "/* a professional paragraph summarizing the note, that mentions only items already listed in Symptoms, MedicalConclusion, and Treatments, without inventing anything */"
}}
- If no information exists for a given key, return "none" for that key.
- The Summary field **must use only** the items already extracted above and **must not add** any new facts.
- Ensure the output is **syntactically valid JSON**.
Document:
"""
ml_h = Model(
name="mistralai/Mistral-7B-Instruct-v0.3",
task="text-generation",
prompt=prompt,
max_new_tokens=1024,
do_sample=False,
temperature=0.0,
top_p=1.0)
pipe = Pipeline(dataset=data, model_h = ml_h)
out = pipe.apply()
pipe.save_all_stats_images(limit=20)
xls = pipe.to_excel()
print(f"Excel file saved : {xls}")
Références
- Identification de profils patients à partir de notes cliniques non structurées.
Corentin Laval, Catherine Combes, Rémi Eyraud, Virginie Fresse.
PFIA 2025.
License
This project is licensed under the MIT License.
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 cleanote-0.3.5.tar.gz.
File metadata
- Download URL: cleanote-0.3.5.tar.gz
- Upload date:
- Size: 25.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54bfea3fab94b5185aedf2abecdd3557216509327428c256cb57e6444806410e
|
|
| MD5 |
5e67ec38b6f48e32d9ab284d60e7a7c7
|
|
| BLAKE2b-256 |
9b86ed44d5af79c82973b5b0d90910aaa3cb269ae221b8bea41094868e77df3c
|
File details
Details for the file cleanote-0.3.5-py3-none-any.whl.
File metadata
- Download URL: cleanote-0.3.5-py3-none-any.whl
- Upload date:
- Size: 15.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef6d400888e56ab5991b6f2a03cd09e5e3e9d3e40dabc873a5d902fc7b65452c
|
|
| MD5 |
bcebdc9bf71d0d8d5a5ab79c4b5c8e79
|
|
| BLAKE2b-256 |
44fa35905b79c5f70511dbd1f58e4e7101ff6c62773431944ee56a388b53a93f
|