├── .github └── workflows │ ├── ci.yml │ └── release-please.yml ├── .gitignore ├── .readthedocs.yml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── examples ├── analyze_dogfish.py └── dogfish_influences.png ├── pyproject.toml ├── setup.cfg ├── tests ├── __init__.py ├── test_base.py ├── test_modules_lin.py └── test_modules_log.py └── torch_influence ├── __init__.py ├── base.py └── modules.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/docs/make.bat -------------------------------------------------------------------------------- /examples/analyze_dogfish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/examples/analyze_dogfish.py -------------------------------------------------------------------------------- /examples/dogfish_influences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/examples/dogfish_influences.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_modules_lin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/tests/test_modules_lin.py -------------------------------------------------------------------------------- /tests/test_modules_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/tests/test_modules_log.py -------------------------------------------------------------------------------- /torch_influence/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/torch_influence/__init__.py -------------------------------------------------------------------------------- /torch_influence/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/torch_influence/base.py -------------------------------------------------------------------------------- /torch_influence/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alstonlo/torch-influence/HEAD/torch_influence/modules.py --------------------------------------------------------------------------------