This is Shiqi Liao's master thesis project:
This repository contains code and assets structured as follows:
assets/
data/
: outcome from custom DSCM on different preprocessed fundus images. model/
: checkpoints of the trained models on color fundus images and normalized fundus imagesmodel_mask/
: checkpoints of the trained models on vessel maskmodel_sensitivity/
: checkpoints of the trained models on different causal assumptionsdeepscm/
: contains the code used for running the experiments
arch/
: model architectures used in experimentsdatasets/
: script for dataset generation and data loading used in experimentsdistributions/
: implementations of useful distributions or transformationsexperiments/
: implementation of experimentsDocuments/
: contains the documented(term expplaination, progress report, final presentation, master thesis).
final_document/Final presentation
: powerpoint and master thesis for final presentation.thesis_plot_coding/
: contains the code for plotting in master thesisWe use Python 3.7.2 for all experiments and you will need to install the following packages:
pip install numpy pandas pyro-ppl pytorch-lightning scikit-image scikit-learn scipy seaborn tensorboard torch torchvision
or simply run pip install -r requirements.txt
.
You will also need to sync the submodule: git submodule update --recursive --init
.
We assume that the code is executed from the root directory of this repository.
you can then train the models as:
python -m deepscm.experiments.medical.trainer -e SVIExperiment -m ConditionalVISEM --default_root_dir /path/to/checkpoints --downsample 3 --decoder_type fixed_var --train_batch_size 256 {--gpus 0}
The checkpoints are saved in /path/to/checkpoints
or the provided checkpoints can be used for testing and plotting:
python -m deepscm.experiments.medical.tester -c /path/to/checkpoint/version_?
We make counterfactual inference on three different preprocessed fundus images.
This Repository is following the DSCM strategy in paper Deep Structural Causal Models for Tractable Counterfactual Inference(https://arxiv.org/abs/2006.06485)