Dafne - Deep Anatomical Federated Network
Project description
Dafne
Deep Anatomical Federated Network is a program for the segmentation of medical images. It relies on a server to provide deep learning models to aid the segmentation, and incremental learning is used to improve the performance. See https://www.dafne.network/ for documentation and user information.
Windows binary installation
Please install the Visual Studio Redistributable Package under windows: https://aka.ms/vs/16/release/vc_redist.x64.exe Then, run the provided installer
Mac binary installation
Install the Dafne App from the downloaded .dmg file as usual. Make sure to download the archive appropriate for your architecture (x86 or arm).
Linux binary installation
The Linux distribution is a self-contained executable file. Simply download it, make it executable, and run it.
pip installation
Dafne can also be installed with pip
pip install dafne
Citing
If you are writing a scientific paper, and you used Dafne for your data evaluation, please cite the following paper:
Santini F, Wasserthal J, Agosti A, et al. Deep Anatomical Federated Network (Dafne): an open client/server framework for the continuous collaborative improvement of deep-learning-based medical image segmentation. 2023 doi: 10.48550/arXiv.2302.06352.
Notes for developers
dafne
Run:
python dafne.py <path_to_dicom_img>
Notes for the DL models
Apply functions
The input of the apply function is:
dict({
'image': np.array (2D image)
'resolution': sequence with two elements (image resolution in mm)
'split_laterality': True/False (indicates whether the ROIs should be split in L/R if applicable)
'classification': str - The classification tag of the image (optional, to identify model variants)
})
The output of the classifier is a string. The output of the segmenters is:
dict({
roi_name_1: np.array (2D mask),
roi_name_2: ...
})
Incremental learn functions
The input of the incremental learn functions are:
training data: dict({
'resolution': sequence (see above)
'classification': str (see above)
'image_list': list([
- np.array (2D image)
- np.array (2D image)
- ...
])
})
training outputs: list([
- dict({
roi_name_1: np.array (2D mask)
roi_name_2: ...
})
- dict...
Every entry in the training outputs list corresponds to an entry in the image_list inside the training data.
So len(training_data['image_list']) == len(training_outputs)
.
Acknowledgments
Input/Output is based on DOSMA - GPLv3 license
Other packages required for this project are listed in requirements.txt
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
File details
Details for the file dafne-1.7a1.tar.gz
.
File metadata
- Download URL: dafne-1.7a1.tar.gz
- Upload date:
- Size: 575.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93482e99692cb23ef66c02f71aa2cedf2bef6c1ddccf56c3bdb9c9bbf78e6bfb |
|
MD5 | 91309e6c7cf7faaa86abbf772a0a9f7d |
|
BLAKE2b-256 | 7f1a7e41606a13795eb0908159f886a236e48e04df08804a05f405ffc680d97c |
File details
Details for the file dafne-1.7a1-py3-none-any.whl
.
File metadata
- Download URL: dafne-1.7a1-py3-none-any.whl
- Upload date:
- Size: 618.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89b01853e2900f2f0b65464ff963e806a1344a4893e7265be223306815728cfe |
|
MD5 | a81767fd55d1d42b4bbab09cae3e5260 |
|
BLAKE2b-256 | 353630a00abd0aad9f0bfcb2c2e4d53deb1cf849b1b5bbbfb33b22c564ae4f0a |