├── .gitignore ├── README.md ├── boston-housing-walkthrough.ipynb ├── datasets └── rt-polaritydata │ ├── rt-polarity-mangled.neg │ └── rt-polarity-mangled.pos ├── joint_shapley ├── __init__.py └── joint_shapley_impl.py ├── presentations └── 210723-joint-Shapley-Vector-presentation.pdf ├── results └── 250528-review-38-convergence.txt └── rotten-tomatoes-walkthrough.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints 2 | __pycache__ 3 | old 4 | temp 5 | venv 6 | shell.nix 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harris-chris/joint-shapley-values/HEAD/README.md -------------------------------------------------------------------------------- /boston-housing-walkthrough.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harris-chris/joint-shapley-values/HEAD/boston-housing-walkthrough.ipynb -------------------------------------------------------------------------------- /datasets/rt-polaritydata/rt-polarity-mangled.neg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harris-chris/joint-shapley-values/HEAD/datasets/rt-polaritydata/rt-polarity-mangled.neg -------------------------------------------------------------------------------- /datasets/rt-polaritydata/rt-polarity-mangled.pos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harris-chris/joint-shapley-values/HEAD/datasets/rt-polaritydata/rt-polarity-mangled.pos -------------------------------------------------------------------------------- /joint_shapley/__init__.py: -------------------------------------------------------------------------------- 1 | from .joint_shapley_impl import * 2 | 3 | -------------------------------------------------------------------------------- /joint_shapley/joint_shapley_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harris-chris/joint-shapley-values/HEAD/joint_shapley/joint_shapley_impl.py -------------------------------------------------------------------------------- /presentations/210723-joint-Shapley-Vector-presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harris-chris/joint-shapley-values/HEAD/presentations/210723-joint-Shapley-Vector-presentation.pdf -------------------------------------------------------------------------------- /results/250528-review-38-convergence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harris-chris/joint-shapley-values/HEAD/results/250528-review-38-convergence.txt -------------------------------------------------------------------------------- /rotten-tomatoes-walkthrough.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harris-chris/joint-shapley-values/HEAD/rotten-tomatoes-walkthrough.ipynb --------------------------------------------------------------------------------