├── README.md ├── conf ├── args.yaml └── log.yaml ├── data └── README.md ├── environment_config.sh ├── logs └── middle_result_logs │ └── benign │ └── ranking_resnet_for_overall │ └── note │ └── ranking_resnet_1 │ └── args.yaml ├── main.py ├── model ├── __init__.py └── ranking_resnet_2d_regression.py ├── postprocessing ├── __init__.py ├── calculate_accuracy_by_nodule.py └── model_average.py ├── preprocessing ├── __init__.py ├── auto_generate_middle_result_log_dir.py ├── data_generate_2d │ └── generate_fixed_size_2d_node_from_image_with_extra_info_interpolate_once.py └── data_handler_2d_regression.py ├── process.py ├── utils ├── __init__.py ├── config_helper.py └── model_handler_2d_regression.py └── workflow.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/README.md -------------------------------------------------------------------------------- /conf/args.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/conf/args.yaml -------------------------------------------------------------------------------- /conf/log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/conf/log.yaml -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | ## Download and unzip the LIDC-IDRI dataset in this folder. -------------------------------------------------------------------------------- /environment_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/environment_config.sh -------------------------------------------------------------------------------- /logs/middle_result_logs/benign/ranking_resnet_for_overall/note/ranking_resnet_1/args.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/logs/middle_result_logs/benign/ranking_resnet_for_overall/note/ranking_resnet_1/args.yaml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/main.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/model/__init__.py -------------------------------------------------------------------------------- /model/ranking_resnet_2d_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/model/ranking_resnet_2d_regression.py -------------------------------------------------------------------------------- /postprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /postprocessing/calculate_accuracy_by_nodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/postprocessing/calculate_accuracy_by_nodule.py -------------------------------------------------------------------------------- /postprocessing/model_average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/postprocessing/model_average.py -------------------------------------------------------------------------------- /preprocessing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/preprocessing/__init__.py -------------------------------------------------------------------------------- /preprocessing/auto_generate_middle_result_log_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/preprocessing/auto_generate_middle_result_log_dir.py -------------------------------------------------------------------------------- /preprocessing/data_generate_2d/generate_fixed_size_2d_node_from_image_with_extra_info_interpolate_once.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/preprocessing/data_generate_2d/generate_fixed_size_2d_node_from_image_with_extra_info_interpolate_once.py -------------------------------------------------------------------------------- /preprocessing/data_handler_2d_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/preprocessing/data_handler_2d_regression.py -------------------------------------------------------------------------------- /process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/process.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | # coding=utf-8 2 | -------------------------------------------------------------------------------- /utils/config_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/utils/config_helper.py -------------------------------------------------------------------------------- /utils/model_handler_2d_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/utils/model_handler_2d_regression.py -------------------------------------------------------------------------------- /workflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoliu-cambridge/mtmr-net/HEAD/workflow.sh --------------------------------------------------------------------------------