Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 762 Bytes

File metadata and controls

41 lines (27 loc) · 762 Bytes

SSBR

Implementation of self-supervised body part regression.

Reference: Unsupervised body part regression using convolutional neural network

(Ke Yan, Le Lu, Ronald M. Summers)

[https://arxiv.org/pdf/1707.03891.pdf]

Setup

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

Train

The ircad dataset (https://www.ircad.fr/research/3dircadb/) is used to showcase this model.

python ssbr/main.py train \
    -c ./ssbr/configs/train.json \
    -d ircad \
    -o experiments/exp3

Notebooks

See the experiment notebook for data and results exploration

Run tests

Althought coverage is low, some critical functions are covered by unit tests.

pytest