Skip to content

Semixup: In- and Out-of-Manifold Regularization for Deep Semi-Supervised Knee Osteoarthritis Severity Grading from Plain Radiographs

Notifications You must be signed in to change notification settings

Oulu-IMEDS/semixup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Semixup

By Huy Hoang Nguyen, Simo Saarakkala, Matthew B. Blaschko, and Aleksei Tiulpin.

Implementation of the paper Semixup that was accepted to IEEE Transactions on Medical Imaging in August 2020.

IEEE Open Access: https://ieeexplore.ieee.org/document/9169719

Arxiv: https://arxiv.org/abs/2003.01944

(c) Huy Hoang Nguyen, University of Oulu, Finland.

Introduction

Semixup is a semi-supervised learning method based on in/out-of-manifold regularization. In the task of automatic grading Kellgren-Lawrence (KL) score for knee osteoathritis diagnosis, Semixup shows its data-efficiency as achieving a comparable performance with over 12 times less labeled data than a well-tuned SL requires.

Semixup

Knee OA samples

Setup

Create a virtual environment using conda

conda create -n semixup python=3.7
conda activate semixup

Install Collagen framework (v0.0.1) by

pip install git+https://github.com:MIPT-Oulu/Collagen.git@0.0.1

Then, clone and setup Semixup by

git clone https://github.com/MIPT-Oulu/semixup.git
cd semixup/
pip install -e .

Prepare Data

Training/validation data: the Osteoarthritis Initiative (OAI, https://nda.nih.gov/oai/).

Independent test data: the Multicenter Osteoarthritis Study (MOST, http://most.ucsf.edu/)

The script below:

  • crops lateral and medial sides of all knee images,
  • divides OAI data into labeled and unlabeled parts, and splits each of them into 5 folds,
  • prepares the full OAI data setting,
  • processes and cleans MOST data for evaluation.
cd scripts/
./prepare_data.sh

Default arguments assume the following directory structure

data/
├── MOST_OAI_FULL_0_2           # Preprocessed whole knee images
├── X-Ray_Image_Assessments_SAS # OAI metadata
└── most_meta                   # MOST metadata

Training and Evaluation

Supervised Learning

Train 5 folds of each architecture

cd <root>
./scripts/run_sl.sh <batch_size> <model> <comment>

Run archiecture selection using

cd <root>
./scripts/run_arch_selection.sh <batch_size>

Ablation Study for Semixup's regularizers

cd <root>
./scripts/run_ablation_losses.sh <n_labels_per_klg> # 100 or 500

Semi-Supervised Learning Methods

You can run a common command for training Semixup or other SSL baselines.

Method name can be either semixup, mixmatch, ict, pimodel (with case-sensitive). The amount of labeled data per KL grade can be 50, 100, 500, 1000.

cd <root>
./scripts/run_ssl.sh <n_labels_per_klg> <method_name> <comment>

SL and SSL Comparisons

The evaluation to compare best SL and SSL models were independently done on MOST data.

You need to prepare an intermediate file of the best models by

cd common/
python prepare_models_eval.py

then run evaluation using either eval.py or eval_with_ci.py. Please check those files for appropriate arguments.

Statistical Tests

Mixed-effects model

File mixed_effects_models.py in scripts/significance_tests/ aims to prepare data for running generalized mixed-effects in R.

One-sided Wilcoxon Signed-rank Test

Code for Wilcoxon test is also in scripts/significance_tests/. You first need to prepare data using the prepare_data.py file, then run wilcoxon_test.py.

Pretrained Models

Download the zip file at link.

Citation

Please cite the paper below if you find repo useful.

@article{Nguyen2020SemixupIA,
  title={Semixup: In- and Out-of-Manifold Regularization for Deep Semi-Supervised Knee Osteoarthritis Severity Grading from Plain Radiographs},
  author={Huy Hoang Nguyen and S. Saarakkala and M. Blaschko and A. Tiulpin},
  journal={IEEE transactions on medical imaging},
  year={2020},
  volume={PP}
}

License

The codes and the pretrained models are not available for any commercial use including research for commercial purposes.

About

Semixup: In- and Out-of-Manifold Regularization for Deep Semi-Supervised Knee Osteoarthritis Severity Grading from Plain Radiographs

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published