├── LICENSE ├── MONAI_files ├── NETS │ ├── BERT_llmguy.py │ ├── Bert_llmguy │ │ ├── BERT.py │ │ ├── BERT_2.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── BERT.cpython-310.pyc │ │ │ ├── BERT.cpython-39.pyc │ │ │ ├── BERT_2.cpython-39.pyc │ │ │ ├── BERT_copy.cpython-310.pyc │ │ │ ├── BERT_copy.cpython-311.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── bert_hparams.cpython-310.pyc │ │ │ ├── bert_hparams.cpython-311.pyc │ │ │ └── bert_hparams.cpython-39.pyc │ │ ├── bert_hparams.py │ │ └── modules │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-311.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── compute_us.cpython-310.pyc │ │ │ ├── compute_us.cpython-311.pyc │ │ │ ├── compute_us.cpython-39.pyc │ │ │ ├── compute_v.cpython-310.pyc │ │ │ ├── compute_v.cpython-311.pyc │ │ │ ├── compute_v.cpython-39.pyc │ │ │ ├── layers_ours.cpython-310.pyc │ │ │ ├── layers_ours.cpython-311.pyc │ │ │ ├── layers_ours.cpython-39.pyc │ │ │ ├── nethook.cpython-310.pyc │ │ │ ├── nethook.cpython-311.pyc │ │ │ ├── nethook.cpython-39.pyc │ │ │ ├── repr_tools.cpython-310.pyc │ │ │ ├── repr_tools.cpython-311.pyc │ │ │ └── repr_tools.cpython-39.pyc │ │ │ ├── compute_us.py │ │ │ ├── compute_v.py │ │ │ ├── layers_ours.py │ │ │ ├── nethook.py │ │ │ └── repr_tools.py │ ├── __init__.py │ └── univila.py └── Networks │ └── utils.py ├── README.md ├── bipvl_seg.png ├── dataset_grab.py ├── instructions.txt ├── model_grab.py ├── requirements.txt ├── textual_information_set ├── classes_definitions_amos_iccv.csv ├── classes_definitions_brain_iccv.csv ├── classes_definitions_whs_iccv.csv └── classes_definitions_whs_iccv_mr.csv ├── train.py ├── train_brain.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/LICENSE -------------------------------------------------------------------------------- /MONAI_files/NETS/BERT_llmguy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/BERT_llmguy.py -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/BERT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/BERT.py -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/BERT_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/BERT_2.py -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/__pycache__/BERT.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/__pycache__/BERT.cpython-310.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/__pycache__/BERT.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/__pycache__/BERT.cpython-39.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/__pycache__/BERT_2.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/__pycache__/BERT_2.cpython-39.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/__pycache__/BERT_copy.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/__pycache__/BERT_copy.cpython-310.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/__pycache__/BERT_copy.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/__pycache__/BERT_copy.cpython-311.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/__pycache__/bert_hparams.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/__pycache__/bert_hparams.cpython-310.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/__pycache__/bert_hparams.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/__pycache__/bert_hparams.cpython-311.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/__pycache__/bert_hparams.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/__pycache__/bert_hparams.cpython-39.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/bert_hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/bert_hparams.py -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/compute_us.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/compute_us.cpython-310.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/compute_us.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/compute_us.cpython-311.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/compute_us.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/compute_us.cpython-39.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/compute_v.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/compute_v.cpython-310.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/compute_v.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/compute_v.cpython-311.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/compute_v.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/compute_v.cpython-39.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/layers_ours.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/layers_ours.cpython-310.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/layers_ours.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/layers_ours.cpython-311.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/layers_ours.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/layers_ours.cpython-39.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/nethook.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/nethook.cpython-310.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/nethook.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/nethook.cpython-311.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/nethook.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/nethook.cpython-39.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/repr_tools.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/repr_tools.cpython-310.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/repr_tools.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/repr_tools.cpython-311.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/__pycache__/repr_tools.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/__pycache__/repr_tools.cpython-39.pyc -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/compute_us.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/compute_us.py -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/compute_v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/compute_v.py -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/layers_ours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/layers_ours.py -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/nethook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/nethook.py -------------------------------------------------------------------------------- /MONAI_files/NETS/Bert_llmguy/modules/repr_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/Bert_llmguy/modules/repr_tools.py -------------------------------------------------------------------------------- /MONAI_files/NETS/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/__init__.py -------------------------------------------------------------------------------- /MONAI_files/NETS/univila.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/NETS/univila.py -------------------------------------------------------------------------------- /MONAI_files/Networks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/MONAI_files/Networks/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/README.md -------------------------------------------------------------------------------- /bipvl_seg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/bipvl_seg.png -------------------------------------------------------------------------------- /dataset_grab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/dataset_grab.py -------------------------------------------------------------------------------- /instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/instructions.txt -------------------------------------------------------------------------------- /model_grab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/model_grab.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/requirements.txt -------------------------------------------------------------------------------- /textual_information_set/classes_definitions_amos_iccv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/textual_information_set/classes_definitions_amos_iccv.csv -------------------------------------------------------------------------------- /textual_information_set/classes_definitions_brain_iccv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/textual_information_set/classes_definitions_brain_iccv.csv -------------------------------------------------------------------------------- /textual_information_set/classes_definitions_whs_iccv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/textual_information_set/classes_definitions_whs_iccv.csv -------------------------------------------------------------------------------- /textual_information_set/classes_definitions_whs_iccv_mr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/textual_information_set/classes_definitions_whs_iccv_mr.csv -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/train.py -------------------------------------------------------------------------------- /train_brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/train_brain.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rafiibnsultan/BiPVL-Seg/HEAD/utils.py --------------------------------------------------------------------------------