├── .gitattributes ├── LICENSE ├── README.md ├── counterfactuals └── README.md ├── feature_attribution └── README.md ├── fig ├── Trend.png ├── awesome.svg ├── cf.png └── use_cases.png ├── influential_instances └── README.md ├── mechanistic_explanation └── README.md ├── model_explanation └── README.md ├── model_inspection └── README.md ├── neuron_importance └── README.md ├── others └── README.md ├── prototype_criticisms └── README.md └── transparent_model └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/README.md -------------------------------------------------------------------------------- /counterfactuals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/counterfactuals/README.md -------------------------------------------------------------------------------- /feature_attribution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/feature_attribution/README.md -------------------------------------------------------------------------------- /fig/Trend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/fig/Trend.png -------------------------------------------------------------------------------- /fig/awesome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/fig/awesome.svg -------------------------------------------------------------------------------- /fig/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/fig/cf.png -------------------------------------------------------------------------------- /fig/use_cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/fig/use_cases.png -------------------------------------------------------------------------------- /influential_instances/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/influential_instances/README.md -------------------------------------------------------------------------------- /mechanistic_explanation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/mechanistic_explanation/README.md -------------------------------------------------------------------------------- /model_explanation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/model_explanation/README.md -------------------------------------------------------------------------------- /model_inspection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/model_inspection/README.md -------------------------------------------------------------------------------- /neuron_importance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/neuron_importance/README.md -------------------------------------------------------------------------------- /others/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/others/README.md -------------------------------------------------------------------------------- /prototype_criticisms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/prototype_criticisms/README.md -------------------------------------------------------------------------------- /transparent_model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyongjie-ntu/Awesome-explainable-AI/HEAD/transparent_model/README.md --------------------------------------------------------------------------------