├── LICENSE ├── README.md ├── input └── readme.txt ├── trainall ├── 2nd_level │ ├── run.sh │ ├── seresnext101_192.py │ └── seresnext50_192.py ├── lung_localization │ ├── lung_bbox.csv │ └── splitall │ │ ├── albumentations │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-37.pyc │ │ ├── augmentations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── bbox_utils.cpython-37.pyc │ │ │ │ ├── functional.cpython-37.pyc │ │ │ │ ├── keypoints_utils.cpython-37.pyc │ │ │ │ └── transforms.cpython-37.pyc │ │ │ ├── bbox_utils.py │ │ │ ├── functional.py │ │ │ ├── keypoints_utils.py │ │ │ └── transforms.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── composition.cpython-37.pyc │ │ │ │ ├── serialization.cpython-37.pyc │ │ │ │ ├── six.cpython-37.pyc │ │ │ │ ├── transforms_interface.cpython-37.pyc │ │ │ │ └── utils.cpython-37.pyc │ │ │ ├── composition.py │ │ │ ├── serialization.py │ │ │ ├── six.py │ │ │ ├── transforms_interface.py │ │ │ └── utils.py │ │ ├── imgaug │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── transforms.cpython-37.pyc │ │ │ └── transforms.py │ │ └── pytorch │ │ │ ├── __init__.py │ │ │ ├── functional.py │ │ │ └── transforms.py │ │ ├── efficientnet_pytorch │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── model.cpython-37.pyc │ │ │ └── utils.cpython-37.pyc │ │ ├── model.py │ │ └── utils.py │ │ ├── run.sh │ │ ├── save_bbox_train.py │ │ ├── train0.py │ │ ├── train1.py │ │ └── train2.py ├── process_input │ ├── process_input_splitall.py │ └── run.sh ├── run.sh ├── seresnext101 │ ├── albumentations │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-37.pyc │ │ ├── augmentations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── bbox_utils.cpython-37.pyc │ │ │ │ ├── functional.cpython-37.pyc │ │ │ │ ├── keypoints_utils.cpython-37.pyc │ │ │ │ └── transforms.cpython-37.pyc │ │ │ ├── bbox_utils.py │ │ │ ├── functional.py │ │ │ ├── keypoints_utils.py │ │ │ └── transforms.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── composition.cpython-37.pyc │ │ │ │ ├── serialization.cpython-37.pyc │ │ │ │ ├── six.cpython-37.pyc │ │ │ │ ├── transforms_interface.cpython-37.pyc │ │ │ │ └── utils.cpython-37.pyc │ │ │ ├── composition.py │ │ │ ├── serialization.py │ │ │ ├── six.py │ │ │ ├── transforms_interface.py │ │ │ └── utils.py │ │ ├── imgaug │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── transforms.cpython-37.pyc │ │ │ └── transforms.py │ │ └── pytorch │ │ │ ├── __init__.py │ │ │ ├── functional.py │ │ │ └── transforms.py │ ├── pretrainedmodels │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── bninception.cpython-37.pyc │ │ │ ├── cafferesnet.cpython-37.pyc │ │ │ ├── dpn.cpython-37.pyc │ │ │ ├── fbresnet.cpython-37.pyc │ │ │ ├── inceptionresnetv2.cpython-37.pyc │ │ │ ├── inceptionv4.cpython-37.pyc │ │ │ ├── nasnet.cpython-37.pyc │ │ │ ├── nasnet_mobile.cpython-37.pyc │ │ │ ├── pnasnet.cpython-37.pyc │ │ │ ├── polynet.cpython-37.pyc │ │ │ ├── resnext.cpython-37.pyc │ │ │ ├── senet.cpython-37.pyc │ │ │ ├── torchvision_models.cpython-37.pyc │ │ │ └── xception.cpython-37.pyc │ │ ├── bninception.py │ │ ├── cafferesnet.py │ │ ├── dpn.py │ │ ├── fbresnet.py │ │ ├── fbresnet │ │ │ ├── resnet152_dump.lua │ │ │ └── resnet152_load.py │ │ ├── inceptionresnetv2.py │ │ ├── inceptionv4.py │ │ ├── nasnet.py │ │ ├── nasnet_mobile.py │ │ ├── pnasnet.py │ │ ├── polynet.py │ │ ├── resnext.py │ │ ├── resnext_features │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── resnext101_32x4d_features.cpython-37.pyc │ │ │ │ └── resnext101_64x4d_features.cpython-37.pyc │ │ │ ├── resnext101_32x4d_features.py │ │ │ └── resnext101_64x4d_features.py │ │ ├── senet.py │ │ ├── torchvision_models.py │ │ ├── utils.py │ │ ├── vggm.py │ │ ├── wideresnet.py │ │ └── xception.py │ ├── run.sh │ ├── save_train_features0.py │ └── train0.py └── seresnext50 │ ├── albumentations │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-37.pyc │ ├── augmentations │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── bbox_utils.cpython-37.pyc │ │ │ ├── functional.cpython-37.pyc │ │ │ ├── keypoints_utils.cpython-37.pyc │ │ │ └── transforms.cpython-37.pyc │ │ ├── bbox_utils.py │ │ ├── functional.py │ │ ├── keypoints_utils.py │ │ └── transforms.py │ ├── core │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── composition.cpython-37.pyc │ │ │ ├── serialization.cpython-37.pyc │ │ │ ├── six.cpython-37.pyc │ │ │ ├── transforms_interface.cpython-37.pyc │ │ │ └── utils.cpython-37.pyc │ │ ├── composition.py │ │ ├── serialization.py │ │ ├── six.py │ │ ├── transforms_interface.py │ │ └── utils.py │ ├── imgaug │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── transforms.cpython-37.pyc │ │ └── transforms.py │ └── pytorch │ │ ├── __init__.py │ │ ├── functional.py │ │ └── transforms.py │ ├── pretrainedmodels │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── bninception.cpython-37.pyc │ │ ├── cafferesnet.cpython-37.pyc │ │ ├── dpn.cpython-37.pyc │ │ ├── fbresnet.cpython-37.pyc │ │ ├── inceptionresnetv2.cpython-37.pyc │ │ ├── inceptionv4.cpython-37.pyc │ │ ├── nasnet.cpython-37.pyc │ │ ├── nasnet_mobile.cpython-37.pyc │ │ ├── pnasnet.cpython-37.pyc │ │ ├── polynet.cpython-37.pyc │ │ ├── resnext.cpython-37.pyc │ │ ├── senet.cpython-37.pyc │ │ ├── torchvision_models.cpython-37.pyc │ │ └── xception.cpython-37.pyc │ ├── bninception.py │ ├── cafferesnet.py │ ├── dpn.py │ ├── fbresnet.py │ ├── fbresnet │ │ ├── resnet152_dump.lua │ │ └── resnet152_load.py │ ├── inceptionresnetv2.py │ ├── inceptionv4.py │ ├── nasnet.py │ ├── nasnet_mobile.py │ ├── pnasnet.py │ ├── polynet.py │ ├── resnext.py │ ├── resnext_features │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── resnext101_32x4d_features.cpython-37.pyc │ │ │ └── resnext101_64x4d_features.cpython-37.pyc │ │ ├── resnext101_32x4d_features.py │ │ └── resnext101_64x4d_features.py │ ├── senet.py │ ├── torchvision_models.py │ ├── utils.py │ ├── vggm.py │ ├── wideresnet.py │ └── xception.py │ ├── run.sh │ ├── save_train_features0.py │ └── train0.py └── trainval ├── 2nd_level ├── prediction_correction.py ├── run.sh ├── seresnext101_128.py ├── seresnext101_192.py ├── seresnext50_128.py └── seresnext50_192.py ├── lung_localization ├── lung_bbox.csv └── split2 │ ├── albumentations │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-37.pyc │ ├── augmentations │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── bbox_utils.cpython-37.pyc │ │ │ ├── functional.cpython-37.pyc │ │ │ ├── keypoints_utils.cpython-37.pyc │ │ │ └── transforms.cpython-37.pyc │ │ ├── bbox_utils.py │ │ ├── functional.py │ │ ├── keypoints_utils.py │ │ └── transforms.py │ ├── core │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── composition.cpython-37.pyc │ │ │ ├── serialization.cpython-37.pyc │ │ │ ├── six.cpython-37.pyc │ │ │ ├── transforms_interface.cpython-37.pyc │ │ │ └── utils.cpython-37.pyc │ │ ├── composition.py │ │ ├── serialization.py │ │ ├── six.py │ │ ├── transforms_interface.py │ │ └── utils.py │ ├── imgaug │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── transforms.cpython-37.pyc │ │ └── transforms.py │ └── pytorch │ │ ├── __init__.py │ │ ├── functional.py │ │ └── transforms.py │ ├── efficientnet_pytorch │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── model.cpython-37.pyc │ │ └── utils.cpython-37.pyc │ ├── model.py │ └── utils.py │ ├── run.sh │ ├── save_bbox_train.py │ ├── save_bbox_valid.py │ ├── train0.py │ ├── train1.py │ ├── train2.py │ ├── valid0.py │ ├── valid1.py │ └── valid2.py ├── process_input ├── process_input_split2.py └── run.sh ├── run.sh ├── seresnext101 ├── albumentations │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-37.pyc │ ├── augmentations │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── bbox_utils.cpython-37.pyc │ │ │ ├── functional.cpython-37.pyc │ │ │ ├── keypoints_utils.cpython-37.pyc │ │ │ └── transforms.cpython-37.pyc │ │ ├── bbox_utils.py │ │ ├── functional.py │ │ ├── keypoints_utils.py │ │ └── transforms.py │ ├── core │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── composition.cpython-37.pyc │ │ │ ├── serialization.cpython-37.pyc │ │ │ ├── six.cpython-37.pyc │ │ │ ├── transforms_interface.cpython-37.pyc │ │ │ └── utils.cpython-37.pyc │ │ ├── composition.py │ │ ├── serialization.py │ │ ├── six.py │ │ ├── transforms_interface.py │ │ └── utils.py │ ├── imgaug │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── transforms.cpython-37.pyc │ │ └── transforms.py │ └── pytorch │ │ ├── __init__.py │ │ ├── functional.py │ │ └── transforms.py ├── pretrainedmodels │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── bninception.cpython-37.pyc │ │ ├── cafferesnet.cpython-37.pyc │ │ ├── dpn.cpython-37.pyc │ │ ├── fbresnet.cpython-37.pyc │ │ ├── inceptionresnetv2.cpython-37.pyc │ │ ├── inceptionv4.cpython-37.pyc │ │ ├── nasnet.cpython-37.pyc │ │ ├── nasnet_mobile.cpython-37.pyc │ │ ├── pnasnet.cpython-37.pyc │ │ ├── polynet.cpython-37.pyc │ │ ├── resnext.cpython-37.pyc │ │ ├── senet.cpython-37.pyc │ │ ├── torchvision_models.cpython-37.pyc │ │ └── xception.cpython-37.pyc │ ├── bninception.py │ ├── cafferesnet.py │ ├── dpn.py │ ├── fbresnet.py │ ├── fbresnet │ │ ├── resnet152_dump.lua │ │ └── resnet152_load.py │ ├── inceptionresnetv2.py │ ├── inceptionv4.py │ ├── nasnet.py │ ├── nasnet_mobile.py │ ├── pnasnet.py │ ├── polynet.py │ ├── resnext.py │ ├── resnext_features │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── resnext101_32x4d_features.cpython-37.pyc │ │ │ └── resnext101_64x4d_features.cpython-37.pyc │ │ ├── resnext101_32x4d_features.py │ │ └── resnext101_64x4d_features.py │ ├── senet.py │ ├── torchvision_models.py │ ├── utils.py │ ├── vggm.py │ ├── wideresnet.py │ └── xception.py ├── run.sh ├── save_train_features0.py ├── save_valid_features0.py ├── train0.py └── valid0.py └── seresnext50 ├── albumentations ├── __init__.py ├── __pycache__ │ └── __init__.cpython-37.pyc ├── augmentations │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── bbox_utils.cpython-37.pyc │ │ ├── functional.cpython-37.pyc │ │ ├── keypoints_utils.cpython-37.pyc │ │ └── transforms.cpython-37.pyc │ ├── bbox_utils.py │ ├── functional.py │ ├── keypoints_utils.py │ └── transforms.py ├── core │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── composition.cpython-37.pyc │ │ ├── serialization.cpython-37.pyc │ │ ├── six.cpython-37.pyc │ │ ├── transforms_interface.cpython-37.pyc │ │ └── utils.cpython-37.pyc │ ├── composition.py │ ├── serialization.py │ ├── six.py │ ├── transforms_interface.py │ └── utils.py ├── imgaug │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ └── transforms.cpython-37.pyc │ └── transforms.py └── pytorch │ ├── __init__.py │ ├── functional.py │ └── transforms.py ├── pretrainedmodels ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── bninception.cpython-37.pyc │ ├── cafferesnet.cpython-37.pyc │ ├── dpn.cpython-37.pyc │ ├── fbresnet.cpython-37.pyc │ ├── inceptionresnetv2.cpython-37.pyc │ ├── inceptionv4.cpython-37.pyc │ ├── nasnet.cpython-37.pyc │ ├── nasnet_mobile.cpython-37.pyc │ ├── pnasnet.cpython-37.pyc │ ├── polynet.cpython-37.pyc │ ├── resnext.cpython-37.pyc │ ├── senet.cpython-37.pyc │ ├── torchvision_models.cpython-37.pyc │ └── xception.cpython-37.pyc ├── bninception.py ├── cafferesnet.py ├── dpn.py ├── fbresnet.py ├── fbresnet │ ├── resnet152_dump.lua │ └── resnet152_load.py ├── inceptionresnetv2.py ├── inceptionv4.py ├── nasnet.py ├── nasnet_mobile.py ├── pnasnet.py ├── polynet.py ├── resnext.py ├── resnext_features │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── resnext101_32x4d_features.cpython-37.pyc │ │ └── resnext101_64x4d_features.cpython-37.pyc │ ├── resnext101_32x4d_features.py │ └── resnext101_64x4d_features.py ├── senet.py ├── torchvision_models.py ├── utils.py ├── vggm.py ├── wideresnet.py └── xception.py ├── run.sh ├── save_train_features0.py ├── save_valid_features0.py ├── train0.py └── valid0.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/README.md -------------------------------------------------------------------------------- /input/readme.txt: -------------------------------------------------------------------------------- 1 | copy the data here 2 | -------------------------------------------------------------------------------- /trainall/2nd_level/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/2nd_level/run.sh -------------------------------------------------------------------------------- /trainall/2nd_level/seresnext101_192.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/2nd_level/seresnext101_192.py -------------------------------------------------------------------------------- /trainall/2nd_level/seresnext50_192.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/2nd_level/seresnext50_192.py -------------------------------------------------------------------------------- /trainall/lung_localization/lung_bbox.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/lung_bbox.csv -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/__init__.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/augmentations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/augmentations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/augmentations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/augmentations/__pycache__/bbox_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/augmentations/__pycache__/bbox_utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/augmentations/__pycache__/functional.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/augmentations/__pycache__/functional.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/augmentations/__pycache__/keypoints_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/augmentations/__pycache__/keypoints_utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/augmentations/__pycache__/transforms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/augmentations/__pycache__/transforms.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/augmentations/bbox_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/augmentations/bbox_utils.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/augmentations/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/augmentations/functional.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/augmentations/keypoints_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/augmentations/keypoints_utils.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/augmentations/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/augmentations/transforms.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/core/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/core/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/core/__pycache__/composition.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/core/__pycache__/composition.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/core/__pycache__/serialization.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/core/__pycache__/serialization.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/core/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/core/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/core/__pycache__/transforms_interface.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/core/__pycache__/transforms_interface.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/core/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/core/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/core/composition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/core/composition.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/core/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/core/serialization.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/core/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/core/six.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/core/transforms_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/core/transforms_interface.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/core/utils.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/imgaug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/imgaug/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/imgaug/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/imgaug/__pycache__/transforms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/imgaug/__pycache__/transforms.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/imgaug/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/imgaug/transforms.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/pytorch/__init__.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/pytorch/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/pytorch/functional.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/albumentations/pytorch/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/albumentations/pytorch/transforms.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/efficientnet_pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/efficientnet_pytorch/__init__.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/efficientnet_pytorch/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/efficientnet_pytorch/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/efficientnet_pytorch/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/efficientnet_pytorch/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/efficientnet_pytorch/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/efficientnet_pytorch/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/efficientnet_pytorch/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/efficientnet_pytorch/model.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/efficientnet_pytorch/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/efficientnet_pytorch/utils.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/run.sh -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/save_bbox_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/save_bbox_train.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/train0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/train0.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/train1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/train1.py -------------------------------------------------------------------------------- /trainall/lung_localization/splitall/train2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/lung_localization/splitall/train2.py -------------------------------------------------------------------------------- /trainall/process_input/process_input_splitall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/process_input/process_input_splitall.py -------------------------------------------------------------------------------- /trainall/process_input/run.sh: -------------------------------------------------------------------------------- 1 | python process_input_splitall.py 2 | -------------------------------------------------------------------------------- /trainall/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/run.sh -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/__init__.py -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/augmentations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/augmentations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/augmentations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/augmentations/__pycache__/bbox_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/augmentations/__pycache__/bbox_utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/augmentations/__pycache__/functional.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/augmentations/__pycache__/functional.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/augmentations/__pycache__/keypoints_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/augmentations/__pycache__/keypoints_utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/augmentations/__pycache__/transforms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/augmentations/__pycache__/transforms.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/augmentations/bbox_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/augmentations/bbox_utils.py -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/augmentations/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/augmentations/functional.py -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/augmentations/keypoints_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/augmentations/keypoints_utils.py -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/augmentations/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/augmentations/transforms.py -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/core/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/core/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/core/__pycache__/composition.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/core/__pycache__/composition.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/core/__pycache__/serialization.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/core/__pycache__/serialization.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/core/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/core/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/core/__pycache__/transforms_interface.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/core/__pycache__/transforms_interface.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/core/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/core/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/core/composition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/core/composition.py -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/core/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/core/serialization.py -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/core/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/core/six.py -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/core/transforms_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/core/transforms_interface.py -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/core/utils.py -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/imgaug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/imgaug/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/imgaug/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/imgaug/__pycache__/transforms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/imgaug/__pycache__/transforms.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/imgaug/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/imgaug/transforms.py -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/pytorch/__init__.py -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/pytorch/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/pytorch/functional.py -------------------------------------------------------------------------------- /trainall/seresnext101/albumentations/pytorch/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/albumentations/pytorch/transforms.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/__init__.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/__pycache__/bninception.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/__pycache__/bninception.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/__pycache__/cafferesnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/__pycache__/cafferesnet.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/__pycache__/dpn.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/__pycache__/dpn.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/__pycache__/fbresnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/__pycache__/fbresnet.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/__pycache__/inceptionresnetv2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/__pycache__/inceptionresnetv2.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/__pycache__/inceptionv4.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/__pycache__/inceptionv4.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/__pycache__/nasnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/__pycache__/nasnet.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/__pycache__/nasnet_mobile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/__pycache__/nasnet_mobile.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/__pycache__/pnasnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/__pycache__/pnasnet.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/__pycache__/polynet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/__pycache__/polynet.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/__pycache__/resnext.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/__pycache__/resnext.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/__pycache__/senet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/__pycache__/senet.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/__pycache__/torchvision_models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/__pycache__/torchvision_models.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/__pycache__/xception.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/__pycache__/xception.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/bninception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/bninception.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/cafferesnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/cafferesnet.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/dpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/dpn.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/fbresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/fbresnet.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/fbresnet/resnet152_dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/fbresnet/resnet152_dump.lua -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/fbresnet/resnet152_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/fbresnet/resnet152_load.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/inceptionresnetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/inceptionresnetv2.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/inceptionv4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/inceptionv4.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/nasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/nasnet.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/nasnet_mobile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/nasnet_mobile.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/pnasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/pnasnet.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/polynet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/polynet.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/resnext.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/resnext_features/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/resnext_features/__init__.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/resnext_features/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/resnext_features/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/resnext_features/__pycache__/resnext101_32x4d_features.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/resnext_features/__pycache__/resnext101_32x4d_features.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/resnext_features/__pycache__/resnext101_64x4d_features.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/resnext_features/__pycache__/resnext101_64x4d_features.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/resnext_features/resnext101_32x4d_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/resnext_features/resnext101_32x4d_features.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/resnext_features/resnext101_64x4d_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/resnext_features/resnext101_64x4d_features.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/senet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/senet.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/torchvision_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/torchvision_models.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/utils.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/vggm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/vggm.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/wideresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/wideresnet.py -------------------------------------------------------------------------------- /trainall/seresnext101/pretrainedmodels/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/pretrainedmodels/xception.py -------------------------------------------------------------------------------- /trainall/seresnext101/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/run.sh -------------------------------------------------------------------------------- /trainall/seresnext101/save_train_features0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/save_train_features0.py -------------------------------------------------------------------------------- /trainall/seresnext101/train0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext101/train0.py -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/__init__.py -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/augmentations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/augmentations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/augmentations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/augmentations/__pycache__/bbox_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/augmentations/__pycache__/bbox_utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/augmentations/__pycache__/functional.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/augmentations/__pycache__/functional.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/augmentations/__pycache__/keypoints_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/augmentations/__pycache__/keypoints_utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/augmentations/__pycache__/transforms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/augmentations/__pycache__/transforms.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/augmentations/bbox_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/augmentations/bbox_utils.py -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/augmentations/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/augmentations/functional.py -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/augmentations/keypoints_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/augmentations/keypoints_utils.py -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/augmentations/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/augmentations/transforms.py -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/core/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/core/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/core/__pycache__/composition.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/core/__pycache__/composition.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/core/__pycache__/serialization.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/core/__pycache__/serialization.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/core/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/core/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/core/__pycache__/transforms_interface.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/core/__pycache__/transforms_interface.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/core/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/core/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/core/composition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/core/composition.py -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/core/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/core/serialization.py -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/core/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/core/six.py -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/core/transforms_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/core/transforms_interface.py -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/core/utils.py -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/imgaug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/imgaug/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/imgaug/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/imgaug/__pycache__/transforms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/imgaug/__pycache__/transforms.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/imgaug/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/imgaug/transforms.py -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/pytorch/__init__.py -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/pytorch/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/pytorch/functional.py -------------------------------------------------------------------------------- /trainall/seresnext50/albumentations/pytorch/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/albumentations/pytorch/transforms.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/__init__.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/__pycache__/bninception.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/__pycache__/bninception.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/__pycache__/cafferesnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/__pycache__/cafferesnet.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/__pycache__/dpn.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/__pycache__/dpn.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/__pycache__/fbresnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/__pycache__/fbresnet.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/__pycache__/inceptionresnetv2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/__pycache__/inceptionresnetv2.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/__pycache__/inceptionv4.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/__pycache__/inceptionv4.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/__pycache__/nasnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/__pycache__/nasnet.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/__pycache__/nasnet_mobile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/__pycache__/nasnet_mobile.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/__pycache__/pnasnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/__pycache__/pnasnet.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/__pycache__/polynet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/__pycache__/polynet.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/__pycache__/resnext.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/__pycache__/resnext.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/__pycache__/senet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/__pycache__/senet.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/__pycache__/torchvision_models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/__pycache__/torchvision_models.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/__pycache__/xception.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/__pycache__/xception.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/bninception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/bninception.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/cafferesnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/cafferesnet.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/dpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/dpn.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/fbresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/fbresnet.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/fbresnet/resnet152_dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/fbresnet/resnet152_dump.lua -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/fbresnet/resnet152_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/fbresnet/resnet152_load.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/inceptionresnetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/inceptionresnetv2.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/inceptionv4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/inceptionv4.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/nasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/nasnet.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/nasnet_mobile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/nasnet_mobile.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/pnasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/pnasnet.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/polynet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/polynet.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/resnext.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/resnext_features/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/resnext_features/__init__.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/resnext_features/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/resnext_features/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/resnext_features/__pycache__/resnext101_32x4d_features.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/resnext_features/__pycache__/resnext101_32x4d_features.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/resnext_features/__pycache__/resnext101_64x4d_features.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/resnext_features/__pycache__/resnext101_64x4d_features.cpython-37.pyc -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/resnext_features/resnext101_32x4d_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/resnext_features/resnext101_32x4d_features.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/resnext_features/resnext101_64x4d_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/resnext_features/resnext101_64x4d_features.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/senet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/senet.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/torchvision_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/torchvision_models.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/utils.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/vggm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/vggm.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/wideresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/wideresnet.py -------------------------------------------------------------------------------- /trainall/seresnext50/pretrainedmodels/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/pretrainedmodels/xception.py -------------------------------------------------------------------------------- /trainall/seresnext50/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/run.sh -------------------------------------------------------------------------------- /trainall/seresnext50/save_train_features0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/save_train_features0.py -------------------------------------------------------------------------------- /trainall/seresnext50/train0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainall/seresnext50/train0.py -------------------------------------------------------------------------------- /trainval/2nd_level/prediction_correction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/2nd_level/prediction_correction.py -------------------------------------------------------------------------------- /trainval/2nd_level/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/2nd_level/run.sh -------------------------------------------------------------------------------- /trainval/2nd_level/seresnext101_128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/2nd_level/seresnext101_128.py -------------------------------------------------------------------------------- /trainval/2nd_level/seresnext101_192.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/2nd_level/seresnext101_192.py -------------------------------------------------------------------------------- /trainval/2nd_level/seresnext50_128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/2nd_level/seresnext50_128.py -------------------------------------------------------------------------------- /trainval/2nd_level/seresnext50_192.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/2nd_level/seresnext50_192.py -------------------------------------------------------------------------------- /trainval/lung_localization/lung_bbox.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/lung_bbox.csv -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/__init__.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/augmentations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/augmentations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/augmentations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/augmentations/__pycache__/bbox_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/augmentations/__pycache__/bbox_utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/augmentations/__pycache__/functional.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/augmentations/__pycache__/functional.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/augmentations/__pycache__/keypoints_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/augmentations/__pycache__/keypoints_utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/augmentations/__pycache__/transforms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/augmentations/__pycache__/transforms.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/augmentations/bbox_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/augmentations/bbox_utils.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/augmentations/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/augmentations/functional.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/augmentations/keypoints_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/augmentations/keypoints_utils.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/augmentations/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/augmentations/transforms.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/core/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/core/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/core/__pycache__/composition.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/core/__pycache__/composition.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/core/__pycache__/serialization.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/core/__pycache__/serialization.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/core/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/core/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/core/__pycache__/transforms_interface.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/core/__pycache__/transforms_interface.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/core/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/core/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/core/composition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/core/composition.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/core/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/core/serialization.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/core/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/core/six.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/core/transforms_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/core/transforms_interface.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/core/utils.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/imgaug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/imgaug/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/imgaug/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/imgaug/__pycache__/transforms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/imgaug/__pycache__/transforms.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/imgaug/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/imgaug/transforms.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/pytorch/__init__.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/pytorch/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/pytorch/functional.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/albumentations/pytorch/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/albumentations/pytorch/transforms.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/efficientnet_pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/efficientnet_pytorch/__init__.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/efficientnet_pytorch/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/efficientnet_pytorch/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/efficientnet_pytorch/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/efficientnet_pytorch/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/efficientnet_pytorch/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/efficientnet_pytorch/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/lung_localization/split2/efficientnet_pytorch/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/efficientnet_pytorch/model.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/efficientnet_pytorch/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/efficientnet_pytorch/utils.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/run.sh -------------------------------------------------------------------------------- /trainval/lung_localization/split2/save_bbox_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/save_bbox_train.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/save_bbox_valid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/save_bbox_valid.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/train0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/train0.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/train1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/train1.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/train2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/train2.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/valid0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/valid0.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/valid1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/valid1.py -------------------------------------------------------------------------------- /trainval/lung_localization/split2/valid2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/lung_localization/split2/valid2.py -------------------------------------------------------------------------------- /trainval/process_input/process_input_split2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/process_input/process_input_split2.py -------------------------------------------------------------------------------- /trainval/process_input/run.sh: -------------------------------------------------------------------------------- 1 | python process_input_split2.py 2 | -------------------------------------------------------------------------------- /trainval/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/run.sh -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/__init__.py -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/augmentations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/augmentations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/augmentations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/augmentations/__pycache__/bbox_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/augmentations/__pycache__/bbox_utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/augmentations/__pycache__/functional.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/augmentations/__pycache__/functional.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/augmentations/__pycache__/keypoints_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/augmentations/__pycache__/keypoints_utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/augmentations/__pycache__/transforms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/augmentations/__pycache__/transforms.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/augmentations/bbox_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/augmentations/bbox_utils.py -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/augmentations/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/augmentations/functional.py -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/augmentations/keypoints_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/augmentations/keypoints_utils.py -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/augmentations/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/augmentations/transforms.py -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/core/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/core/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/core/__pycache__/composition.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/core/__pycache__/composition.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/core/__pycache__/serialization.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/core/__pycache__/serialization.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/core/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/core/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/core/__pycache__/transforms_interface.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/core/__pycache__/transforms_interface.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/core/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/core/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/core/composition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/core/composition.py -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/core/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/core/serialization.py -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/core/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/core/six.py -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/core/transforms_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/core/transforms_interface.py -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/core/utils.py -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/imgaug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/imgaug/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/imgaug/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/imgaug/__pycache__/transforms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/imgaug/__pycache__/transforms.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/imgaug/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/imgaug/transforms.py -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/pytorch/__init__.py -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/pytorch/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/pytorch/functional.py -------------------------------------------------------------------------------- /trainval/seresnext101/albumentations/pytorch/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/albumentations/pytorch/transforms.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/__init__.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/__pycache__/bninception.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/__pycache__/bninception.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/__pycache__/cafferesnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/__pycache__/cafferesnet.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/__pycache__/dpn.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/__pycache__/dpn.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/__pycache__/fbresnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/__pycache__/fbresnet.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/__pycache__/inceptionresnetv2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/__pycache__/inceptionresnetv2.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/__pycache__/inceptionv4.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/__pycache__/inceptionv4.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/__pycache__/nasnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/__pycache__/nasnet.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/__pycache__/nasnet_mobile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/__pycache__/nasnet_mobile.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/__pycache__/pnasnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/__pycache__/pnasnet.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/__pycache__/polynet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/__pycache__/polynet.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/__pycache__/resnext.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/__pycache__/resnext.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/__pycache__/senet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/__pycache__/senet.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/__pycache__/torchvision_models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/__pycache__/torchvision_models.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/__pycache__/xception.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/__pycache__/xception.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/bninception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/bninception.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/cafferesnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/cafferesnet.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/dpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/dpn.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/fbresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/fbresnet.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/fbresnet/resnet152_dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/fbresnet/resnet152_dump.lua -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/fbresnet/resnet152_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/fbresnet/resnet152_load.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/inceptionresnetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/inceptionresnetv2.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/inceptionv4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/inceptionv4.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/nasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/nasnet.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/nasnet_mobile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/nasnet_mobile.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/pnasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/pnasnet.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/polynet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/polynet.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/resnext.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/resnext_features/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/resnext_features/__init__.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/resnext_features/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/resnext_features/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/resnext_features/__pycache__/resnext101_32x4d_features.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/resnext_features/__pycache__/resnext101_32x4d_features.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/resnext_features/__pycache__/resnext101_64x4d_features.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/resnext_features/__pycache__/resnext101_64x4d_features.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/resnext_features/resnext101_32x4d_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/resnext_features/resnext101_32x4d_features.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/resnext_features/resnext101_64x4d_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/resnext_features/resnext101_64x4d_features.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/senet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/senet.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/torchvision_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/torchvision_models.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/utils.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/vggm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/vggm.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/wideresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/wideresnet.py -------------------------------------------------------------------------------- /trainval/seresnext101/pretrainedmodels/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/pretrainedmodels/xception.py -------------------------------------------------------------------------------- /trainval/seresnext101/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/run.sh -------------------------------------------------------------------------------- /trainval/seresnext101/save_train_features0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/save_train_features0.py -------------------------------------------------------------------------------- /trainval/seresnext101/save_valid_features0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/save_valid_features0.py -------------------------------------------------------------------------------- /trainval/seresnext101/train0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/train0.py -------------------------------------------------------------------------------- /trainval/seresnext101/valid0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext101/valid0.py -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/__init__.py -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/augmentations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/augmentations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/augmentations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/augmentations/__pycache__/bbox_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/augmentations/__pycache__/bbox_utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/augmentations/__pycache__/functional.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/augmentations/__pycache__/functional.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/augmentations/__pycache__/keypoints_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/augmentations/__pycache__/keypoints_utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/augmentations/__pycache__/transforms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/augmentations/__pycache__/transforms.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/augmentations/bbox_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/augmentations/bbox_utils.py -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/augmentations/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/augmentations/functional.py -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/augmentations/keypoints_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/augmentations/keypoints_utils.py -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/augmentations/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/augmentations/transforms.py -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/core/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/core/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/core/__pycache__/composition.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/core/__pycache__/composition.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/core/__pycache__/serialization.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/core/__pycache__/serialization.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/core/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/core/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/core/__pycache__/transforms_interface.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/core/__pycache__/transforms_interface.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/core/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/core/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/core/composition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/core/composition.py -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/core/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/core/serialization.py -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/core/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/core/six.py -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/core/transforms_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/core/transforms_interface.py -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/core/utils.py -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/imgaug/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/imgaug/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/imgaug/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/imgaug/__pycache__/transforms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/imgaug/__pycache__/transforms.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/imgaug/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/imgaug/transforms.py -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/pytorch/__init__.py -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/pytorch/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/pytorch/functional.py -------------------------------------------------------------------------------- /trainval/seresnext50/albumentations/pytorch/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/albumentations/pytorch/transforms.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/__init__.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/__pycache__/bninception.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/__pycache__/bninception.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/__pycache__/cafferesnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/__pycache__/cafferesnet.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/__pycache__/dpn.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/__pycache__/dpn.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/__pycache__/fbresnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/__pycache__/fbresnet.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/__pycache__/inceptionresnetv2.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/__pycache__/inceptionresnetv2.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/__pycache__/inceptionv4.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/__pycache__/inceptionv4.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/__pycache__/nasnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/__pycache__/nasnet.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/__pycache__/nasnet_mobile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/__pycache__/nasnet_mobile.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/__pycache__/pnasnet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/__pycache__/pnasnet.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/__pycache__/polynet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/__pycache__/polynet.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/__pycache__/resnext.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/__pycache__/resnext.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/__pycache__/senet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/__pycache__/senet.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/__pycache__/torchvision_models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/__pycache__/torchvision_models.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/__pycache__/xception.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/__pycache__/xception.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/bninception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/bninception.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/cafferesnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/cafferesnet.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/dpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/dpn.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/fbresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/fbresnet.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/fbresnet/resnet152_dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/fbresnet/resnet152_dump.lua -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/fbresnet/resnet152_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/fbresnet/resnet152_load.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/inceptionresnetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/inceptionresnetv2.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/inceptionv4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/inceptionv4.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/nasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/nasnet.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/nasnet_mobile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/nasnet_mobile.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/pnasnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/pnasnet.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/polynet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/polynet.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/resnext.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/resnext_features/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/resnext_features/__init__.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/resnext_features/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/resnext_features/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/resnext_features/__pycache__/resnext101_32x4d_features.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/resnext_features/__pycache__/resnext101_32x4d_features.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/resnext_features/__pycache__/resnext101_64x4d_features.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/resnext_features/__pycache__/resnext101_64x4d_features.cpython-37.pyc -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/resnext_features/resnext101_32x4d_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/resnext_features/resnext101_32x4d_features.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/resnext_features/resnext101_64x4d_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/resnext_features/resnext101_64x4d_features.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/senet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/senet.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/torchvision_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/torchvision_models.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/utils.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/vggm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/vggm.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/wideresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/wideresnet.py -------------------------------------------------------------------------------- /trainval/seresnext50/pretrainedmodels/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/pretrainedmodels/xception.py -------------------------------------------------------------------------------- /trainval/seresnext50/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/run.sh -------------------------------------------------------------------------------- /trainval/seresnext50/save_train_features0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/save_train_features0.py -------------------------------------------------------------------------------- /trainval/seresnext50/save_valid_features0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/save_valid_features0.py -------------------------------------------------------------------------------- /trainval/seresnext50/train0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/train0.py -------------------------------------------------------------------------------- /trainval/seresnext50/valid0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuanshuoXu/RSNA-STR-Pulmonary-Embolism-Detection/HEAD/trainval/seresnext50/valid0.py --------------------------------------------------------------------------------