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]
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txt
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
See the experiment notebook for data and results exploration
Althought coverage is low, some critical functions are covered by unit tests.
pytest