├── DataGenerator.py ├── README.md ├── example.py ├── graphics ├── CellLine │ └── GM_200_results.png ├── MNIST │ ├── mnist_3_full_importance.png │ ├── mnist_3_importance.png │ ├── mnist_8_full_importance.png │ ├── mnist_8_importance.png │ ├── mnist_colorbar.png │ ├── mnist_full_importance.png │ └── mnist_masked_importance.png ├── XOR.png ├── model.png ├── update.pdf └── yale │ ├── face_10.png │ ├── face_30.png │ ├── raw_10.png │ └── raw_30.png ├── requirements.txt └── src ├── FeatureSelector.py ├── MaskOptimizer.py ├── Operator.py └── Selector.py /DataGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/DataGenerator.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/README.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/example.py -------------------------------------------------------------------------------- /graphics/CellLine/GM_200_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/graphics/CellLine/GM_200_results.png -------------------------------------------------------------------------------- /graphics/MNIST/mnist_3_full_importance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/graphics/MNIST/mnist_3_full_importance.png -------------------------------------------------------------------------------- /graphics/MNIST/mnist_3_importance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/graphics/MNIST/mnist_3_importance.png -------------------------------------------------------------------------------- /graphics/MNIST/mnist_8_full_importance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/graphics/MNIST/mnist_8_full_importance.png -------------------------------------------------------------------------------- /graphics/MNIST/mnist_8_importance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/graphics/MNIST/mnist_8_importance.png -------------------------------------------------------------------------------- /graphics/MNIST/mnist_colorbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/graphics/MNIST/mnist_colorbar.png -------------------------------------------------------------------------------- /graphics/MNIST/mnist_full_importance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/graphics/MNIST/mnist_full_importance.png -------------------------------------------------------------------------------- /graphics/MNIST/mnist_masked_importance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/graphics/MNIST/mnist_masked_importance.png -------------------------------------------------------------------------------- /graphics/XOR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/graphics/XOR.png -------------------------------------------------------------------------------- /graphics/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/graphics/model.png -------------------------------------------------------------------------------- /graphics/update.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/graphics/update.pdf -------------------------------------------------------------------------------- /graphics/yale/face_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/graphics/yale/face_10.png -------------------------------------------------------------------------------- /graphics/yale/face_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/graphics/yale/face_30.png -------------------------------------------------------------------------------- /graphics/yale/raw_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/graphics/yale/raw_10.png -------------------------------------------------------------------------------- /graphics/yale/raw_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/graphics/yale/raw_30.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow==2.2.0 2 | numpy==1.18.1 3 | -------------------------------------------------------------------------------- /src/FeatureSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/src/FeatureSelector.py -------------------------------------------------------------------------------- /src/MaskOptimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/src/MaskOptimizer.py -------------------------------------------------------------------------------- /src/Operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/src/Operator.py -------------------------------------------------------------------------------- /src/Selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maksym33/FeatureImportanceDL/HEAD/src/Selector.py --------------------------------------------------------------------------------