๐ Project Overview
In this project, we implement and validate a backward approach to compute the influence of each input feature on the final output.
This method stands in contrast to the forward method implemented in the previous research.
๐ Previous Research
- Paper: Explaining Neural Networks using Input Feature Contributions
- GitHub Repository: NNexplainer
๐ฏ Objectives
- Implement a backward approach to estimate input feature contributions.
- Indicate how much each input feature contributes to the final output.
- Validate that the results are consistent with the contribution estimates obtained from the forward method in previous research.
1. ๋ ํฌ์งํ ๋ฆฌ ํด๋ก
git clone https://github.com/minyujin03/BFC.git
cd BFC2. ๊ฐ์ํ๊ฒฝ ์ค์ (๊ถ์ฅ)
conda create -n BFC python=3.10
conda activate BFC
pip install -r requirements.txt3. ์ฝ๋ ์คํ
python BFC_execution.py