Giter VIP home page Giter VIP logo

lynos's Introduction

title colorFrom colorTo sdk app_port emoji pinned license app_file
LyNoS: automatic lymph node segmentation using deep learning
indigo
indigo
docker
7860
🫁
false
mit
demo/app.py

🫁 LyNoS πŸ€—

A multilabel lymph node segmentation dataset from contrast CT

license CI/CD Open In Colab paper

LyNoS was developed by SINTEF Medical Image Analysis to accelerate medical AI research.

This repository contains the LyNoS dataset described in "Mediastinal lymph nodes segmentation using 3D convolutional neural network ensembles and anatomical priors guiding". The dataset has now also been uploaded to Zenodo and the Hugging Face Hub enabling users to more easily access the data through Python API.

We have also developed a web demo to enable others to easily test the pretrained model presented in the paper. The application was developed using Gradio for the frontend and the segmentation is performed using the Raidionics backend.

The dataset contains 15 CTs with corresponding lymph nodes, azygos, esophagus, and subclavian carotid arteries manual annotations. The folder structure is described below.

The easiest way to access the data is through Python with Hugging Face's datasets package:

from datasets import load_dataset

# downloads data from Zenodo through the Hugging Face hub
# - might take several minutes (~5 minutes in CoLab)
dataset = load_dataset("andreped/LyNoS")
print(dataset)

# list paths of all available patients and corresponding features (ct/lymphnodes/azygos/brachiocephalicveins/esophagus/subclaviancarotidarteries)
for d in dataset["test"]:
  print(d)

A detailed interactive demo on how to load and work with the data can be seen on CoLab. Click the CoLab badge Open In Colab to see the notebook or alternatively click here to see it on GitHub.

└── LyNoS.zip
    β”œβ”€β”€ stations_sto.csv
    └──  LyNoS/
        β”œβ”€β”€ Pat1/
        β”‚   β”œβ”€β”€ pat1_data.nii.gz
        β”‚   β”œβ”€β”€ pat1_labels_Azygos.nii.gz
        β”‚   β”œβ”€β”€ pat1_labels_Esophagus.nii.gz
        β”‚   β”œβ”€β”€ pat1_labels_LymphNodes.nii.gz
        β”‚   └── pat1_labels_SubCarArt.nii.gz
        β”œβ”€β”€ [...]
        └── Pat15/
            β”œβ”€β”€ pat15_data.nii.gz
            β”œβ”€β”€ pat15_labels_Azygos.nii.gz
            β”œβ”€β”€ pat15_labels_Esophagus.nii.gz
            β”œβ”€β”€ pat15_labels_LymphNodes.nii.gz
            └── pat15_labels_SubCarArt.nii.gz

For each labelled lymph node in the dataset, the primary, secondary, and up to the tertiary station have been manually assigned according to the IASLC Lung Cancer Staging guidelines, and more specifically following the 2009 map. The stations considered can be organized as follows:

β”œβ”€β”€ Supraclavicular nodes (stations 1R and 1L)
β”œβ”€β”€ Superior mediastinal nodes (stations 2-4)
β”‚   β”œβ”€β”€ Upper paratracheal (stations 2R and 2L)
β”‚   β”œβ”€β”€ Pre-vascular (stations 3aR and 3aL)
β”‚   β”œβ”€β”€ Pre-vertebral (station 3P)
β”‚   └── Lower paratracheal (stations 4R and 4L)
β”œβ”€β”€ Aortic nodes (stations 5-6)
β”‚   β”œβ”€β”€ Subaortic (station 5)
β”‚   └── Para-aortic (station 6)
β”œβ”€β”€ Inferior mediastinal nodes (stations 7-9)
β”‚   β”œβ”€β”€ Subcarinal (stations 7R and 7L)
β”‚   β”œβ”€β”€ Paraesophageal (stations 8R and 8L)
β”‚   └── Pulmonary ligament (station 9)
└── Hilar, lobar, and (sub)segmental nodes (stations 10-14)
    β”œβ”€β”€ Hilar (stations 10R and 10L)
    β”œβ”€β”€ Interlobar middle-lower (stations 11R and 11L)
    β”œβ”€β”€ Lobar (stations 12R and 12L)
    β”œβ”€β”€ Segmental (stations 13R and 13L)
    └── Subsegmental (stations 14R and 14L)

A larger dataset made of 90 patients featuring enlarged lymph nodes has also been made available by the National Institutes of Health, and is available for download on the official web-page. As a supplement to this dataset, lymph nodes segmentation masks have been refined for all patients and stations have been manually assigned to each, available here.

To access the live demo, click on the Hugging Face badge above. Below is a snapshot of the current state of the demo app.

Screenshot 2023-11-09 at 20 53 29
Build Type Status
HF Deploy Deploy
File size check Filesize
Formatting check Filesize

Alternatively, you can deploy the software locally. Note that this is only relevant for development purposes. Simply dockerize the app and run it:

docker build -t lynos .
docker run -it -p 7860:7860 lynos

Then open http://127.0.0.1:7860 in your favourite internet browser to view the demo.

It is also possible to run the app locally without Docker. Just setup a virtual environment and run the app. Note that the current working directory would need to be adjusted based on where LyNoS is located on disk.

git clone https://github.com/raidionics/LyNoS.git
cd LyNoS/

virtualenv -python3 venv --clear
source venv/bin/activate
pip install -r ./demo/requirements.txt

python demo/app.py --cwd ./

If you found the dataset and/or web application relevant in your research, please cite the following reference:

@article{bouget2021mediastinal,
  author = {David Bouget and AndrΓ© Pedersen and Johanna Vanel and Haakon O. Leira and Thomas LangΓΈ},
  title = {Mediastinal lymph nodes segmentation using 3D convolutional neural network ensembles and anatomical priors guiding},
  journal = {Computer Methods in Biomechanics and Biomedical Engineering: Imaging \& Visualization},
  volume = {0},
  number = {0},
  pages = {1-15},
  year  = {2022},
  publisher = {Taylor & Francis},
  doi = {10.1080/21681163.2022.2043778},
  URL = {https://doi.org/10.1080/21681163.2022.2043778},
  eprint = {https://doi.org/10.1080/21681163.2022.2043778}
}

The code in this repository is released under MIT license.

lynos's People

Contributors

andreped avatar dbouget avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

lynos's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.