├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.Rmd ├── README.md ├── benchmarks ├── batch_size_effects.py ├── batch_size_times.png ├── cali_benchmark_time.png ├── cali_benchmark_time_df.csv ├── cali_housing.py ├── iris_150_rows.py ├── iris_benchmark_time.png └── iris_benchmark_time_df.csv ├── fastshap ├── KernelExplainer.py ├── __init__.py ├── compat.py ├── plotting.py └── utils.py ├── graphics ├── depgraph.png ├── depgraph_cat.png ├── iris_benchmark_time.png ├── mc_so_depgraph.png └── multiclass_depgraph.png ├── pytest.ini ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── test_numpy_multiclass.py ├── test_numpy_regression.py ├── test_pandas_multiclass.py └── test_pandas_regression.py /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/batch_size_effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/benchmarks/batch_size_effects.py -------------------------------------------------------------------------------- /benchmarks/batch_size_times.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/benchmarks/batch_size_times.png -------------------------------------------------------------------------------- /benchmarks/cali_benchmark_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/benchmarks/cali_benchmark_time.png -------------------------------------------------------------------------------- /benchmarks/cali_benchmark_time_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/benchmarks/cali_benchmark_time_df.csv -------------------------------------------------------------------------------- /benchmarks/cali_housing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/benchmarks/cali_housing.py -------------------------------------------------------------------------------- /benchmarks/iris_150_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/benchmarks/iris_150_rows.py -------------------------------------------------------------------------------- /benchmarks/iris_benchmark_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/benchmarks/iris_benchmark_time.png -------------------------------------------------------------------------------- /benchmarks/iris_benchmark_time_df.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/benchmarks/iris_benchmark_time_df.csv -------------------------------------------------------------------------------- /fastshap/KernelExplainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/fastshap/KernelExplainer.py -------------------------------------------------------------------------------- /fastshap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/fastshap/__init__.py -------------------------------------------------------------------------------- /fastshap/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/fastshap/compat.py -------------------------------------------------------------------------------- /fastshap/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/fastshap/plotting.py -------------------------------------------------------------------------------- /fastshap/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/fastshap/utils.py -------------------------------------------------------------------------------- /graphics/depgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/graphics/depgraph.png -------------------------------------------------------------------------------- /graphics/depgraph_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/graphics/depgraph_cat.png -------------------------------------------------------------------------------- /graphics/iris_benchmark_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/graphics/iris_benchmark_time.png -------------------------------------------------------------------------------- /graphics/mc_so_depgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/graphics/mc_so_depgraph.png -------------------------------------------------------------------------------- /graphics/multiclass_depgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/graphics/multiclass_depgraph.png -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_numpy_multiclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/tests/test_numpy_multiclass.py -------------------------------------------------------------------------------- /tests/test_numpy_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/tests/test_numpy_regression.py -------------------------------------------------------------------------------- /tests/test_pandas_multiclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/tests/test_pandas_multiclass.py -------------------------------------------------------------------------------- /tests/test_pandas_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnotherSamWilson/fastshap/HEAD/tests/test_pandas_regression.py --------------------------------------------------------------------------------