├── .gitignore ├── LICENSE ├── README.md ├── analysis.ipynb ├── figures ├── 2D_raw_and SHAP.png ├── clustering.excalidraw ├── clustering.png ├── clustering_.png ├── feature_image.png ├── ppt.pptx ├── shap.jpg └── shap.svg ├── plots ├── 2D_SHAP.png ├── 2D_SHAP_clusters.png ├── 2D_SHAP_clusters_coloured_by_raw_values.png ├── 2D_SHAP_clusters_feature.png ├── 2D_raw.png ├── 2D_raw_and SHAP.png ├── MASV.png └── distributions.png ├── requirements.txt └── style.mplstyle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/README.md -------------------------------------------------------------------------------- /analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/analysis.ipynb -------------------------------------------------------------------------------- /figures/2D_raw_and SHAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/figures/2D_raw_and SHAP.png -------------------------------------------------------------------------------- /figures/clustering.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/figures/clustering.excalidraw -------------------------------------------------------------------------------- /figures/clustering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/figures/clustering.png -------------------------------------------------------------------------------- /figures/clustering_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/figures/clustering_.png -------------------------------------------------------------------------------- /figures/feature_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/figures/feature_image.png -------------------------------------------------------------------------------- /figures/ppt.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/figures/ppt.pptx -------------------------------------------------------------------------------- /figures/shap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/figures/shap.jpg -------------------------------------------------------------------------------- /figures/shap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/figures/shap.svg -------------------------------------------------------------------------------- /plots/2D_SHAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/plots/2D_SHAP.png -------------------------------------------------------------------------------- /plots/2D_SHAP_clusters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/plots/2D_SHAP_clusters.png -------------------------------------------------------------------------------- /plots/2D_SHAP_clusters_coloured_by_raw_values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/plots/2D_SHAP_clusters_coloured_by_raw_values.png -------------------------------------------------------------------------------- /plots/2D_SHAP_clusters_feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/plots/2D_SHAP_clusters_feature.png -------------------------------------------------------------------------------- /plots/2D_raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/plots/2D_raw.png -------------------------------------------------------------------------------- /plots/2D_raw_and SHAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/plots/2D_raw_and SHAP.png -------------------------------------------------------------------------------- /plots/MASV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/plots/MASV.png -------------------------------------------------------------------------------- /plots/distributions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/plots/distributions.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/requirements.txt -------------------------------------------------------------------------------- /style.mplstyle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AidanCooper/shap-clustering/HEAD/style.mplstyle --------------------------------------------------------------------------------