├── README.md ├── Task ├── Cardiovascular1_Info.py └── diabetes1_Info.py ├── annotation ├── Samples │ └── s1_cerebral1_Samples.pickle └── cerebral1_Samples.npy ├── data └── EHR │ └── cerebral1 │ └── processed_datasets.pkl ├── evaluation_after_retrain.py ├── hil_medical_annotator ├── main.py ├── static │ ├── css │ │ └── autocomplete.css │ └── js │ │ └── autocomplete.js ├── templates │ ├── hide.html │ ├── no_hide.html │ └── path.html └── utils │ ├── __pycache__ │ ├── feature_name.cpython-36.pyc │ ├── preprocess.cpython-36.pyc │ └── print_utils.cpython-36.pyc │ ├── feature_name.py │ ├── preprocess.py │ └── print_utils.py ├── images ├── EHR.gif ├── Squat.gif ├── cer.png ├── ial_concept_figure.png ├── ial_framework.png ├── nap.png └── qualitative_analysis.png ├── models ├── GenericNeuralNet.py ├── anno.py ├── anno_load_data.py ├── dataset.py ├── experiments.py ├── experiments_counterfactual.py ├── experiments_ifif.py ├── experiments_ut_counterfactual.py ├── hessians.py ├── load_data.py ├── metric.py ├── model.py ├── np.py └── py_utils.py ├── retrain.py ├── retrain_eval.py ├── run.sh └── train.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/README.md -------------------------------------------------------------------------------- /Task/Cardiovascular1_Info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/Task/Cardiovascular1_Info.py -------------------------------------------------------------------------------- /Task/diabetes1_Info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/Task/diabetes1_Info.py -------------------------------------------------------------------------------- /annotation/Samples/s1_cerebral1_Samples.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/annotation/Samples/s1_cerebral1_Samples.pickle -------------------------------------------------------------------------------- /annotation/cerebral1_Samples.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/annotation/cerebral1_Samples.npy -------------------------------------------------------------------------------- /data/EHR/cerebral1/processed_datasets.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/data/EHR/cerebral1/processed_datasets.pkl -------------------------------------------------------------------------------- /evaluation_after_retrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/evaluation_after_retrain.py -------------------------------------------------------------------------------- /hil_medical_annotator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/hil_medical_annotator/main.py -------------------------------------------------------------------------------- /hil_medical_annotator/static/css/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/hil_medical_annotator/static/css/autocomplete.css -------------------------------------------------------------------------------- /hil_medical_annotator/static/js/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/hil_medical_annotator/static/js/autocomplete.js -------------------------------------------------------------------------------- /hil_medical_annotator/templates/hide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/hil_medical_annotator/templates/hide.html -------------------------------------------------------------------------------- /hil_medical_annotator/templates/no_hide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/hil_medical_annotator/templates/no_hide.html -------------------------------------------------------------------------------- /hil_medical_annotator/templates/path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/hil_medical_annotator/templates/path.html -------------------------------------------------------------------------------- /hil_medical_annotator/utils/__pycache__/feature_name.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/hil_medical_annotator/utils/__pycache__/feature_name.cpython-36.pyc -------------------------------------------------------------------------------- /hil_medical_annotator/utils/__pycache__/preprocess.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/hil_medical_annotator/utils/__pycache__/preprocess.cpython-36.pyc -------------------------------------------------------------------------------- /hil_medical_annotator/utils/__pycache__/print_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/hil_medical_annotator/utils/__pycache__/print_utils.cpython-36.pyc -------------------------------------------------------------------------------- /hil_medical_annotator/utils/feature_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/hil_medical_annotator/utils/feature_name.py -------------------------------------------------------------------------------- /hil_medical_annotator/utils/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/hil_medical_annotator/utils/preprocess.py -------------------------------------------------------------------------------- /hil_medical_annotator/utils/print_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/hil_medical_annotator/utils/print_utils.py -------------------------------------------------------------------------------- /images/EHR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/images/EHR.gif -------------------------------------------------------------------------------- /images/Squat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/images/Squat.gif -------------------------------------------------------------------------------- /images/cer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/images/cer.png -------------------------------------------------------------------------------- /images/ial_concept_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/images/ial_concept_figure.png -------------------------------------------------------------------------------- /images/ial_framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/images/ial_framework.png -------------------------------------------------------------------------------- /images/nap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/images/nap.png -------------------------------------------------------------------------------- /images/qualitative_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/images/qualitative_analysis.png -------------------------------------------------------------------------------- /models/GenericNeuralNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/models/GenericNeuralNet.py -------------------------------------------------------------------------------- /models/anno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/models/anno.py -------------------------------------------------------------------------------- /models/anno_load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/models/anno_load_data.py -------------------------------------------------------------------------------- /models/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/models/dataset.py -------------------------------------------------------------------------------- /models/experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/models/experiments.py -------------------------------------------------------------------------------- /models/experiments_counterfactual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/models/experiments_counterfactual.py -------------------------------------------------------------------------------- /models/experiments_ifif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/models/experiments_ifif.py -------------------------------------------------------------------------------- /models/experiments_ut_counterfactual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/models/experiments_ut_counterfactual.py -------------------------------------------------------------------------------- /models/hessians.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/models/hessians.py -------------------------------------------------------------------------------- /models/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/models/load_data.py -------------------------------------------------------------------------------- /models/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/models/metric.py -------------------------------------------------------------------------------- /models/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/models/model.py -------------------------------------------------------------------------------- /models/np.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/models/np.py -------------------------------------------------------------------------------- /models/py_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/models/py_utils.py -------------------------------------------------------------------------------- /retrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/retrain.py -------------------------------------------------------------------------------- /retrain_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/retrain_eval.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/run.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenXAIProject/Interactive_Attention_Learning/HEAD/train.py --------------------------------------------------------------------------------