.bumpversion.cfg
.gitignore
.pre-commit-config.yaml
.readthedocs.yaml
CHANGELOG.md
CONTRIBUTING.md
COPYING.LESSER
LICENSE
MANIFEST.in
README.md
logo.svg
pyproject.toml
requirements-dev.txt
requirements-notebooks.txt
requirements.txt
setup.py
tox.ini
.github/PULL_REQUEST_TEMPLATE.md
.github/workflows/publish.yaml
.github/workflows/run-tests-workflow.yaml
.github/workflows/stale.yaml
.github/workflows/tox.yaml
apt-cache/.gitignore
badges/.gitignore
build_scripts/release-version.sh
build_scripts/run_pylint.py
build_scripts/update_docs.py
data/top_hits_spotify_dataset.csv
docs/.gitignore
docs/10-getting-started.rst
docs/20-install.rst
docs/30-data-valuation.rst
docs/40-influence.rst
docs/conf.py
docs/index.rst
docs/pydvl.bib
docs/requirements.txt
docs/_ext/copy_notebooks.py
docs/examples/index.rst
docs/pydvl/index.rst
notebooks/influence_imagenet.ipynb
notebooks/influence_synthetic.ipynb
notebooks/influence_wine.ipynb
notebooks/least_core_basic.ipynb
notebooks/notebook_support.py
notebooks/shapley_basic_spotify.ipynb
notebooks/shapley_knn_flowers.ipynb
notebooks/shapley_utility_learning.ipynb
notebooks/test_notebooks.py
public/index.html
public/coverage/.gitignore
public/docs/.gitignore
public/pylint/.gitignore
src/pyDVL.egg-info/PKG-INFO
src/pyDVL.egg-info/SOURCES.txt
src/pyDVL.egg-info/dependency_links.txt
src/pyDVL.egg-info/not-zip-safe
src/pyDVL.egg-info/requires.txt
src/pyDVL.egg-info/top_level.txt
src/pydvl/__init__.py
src/pydvl/py.typed
src/pydvl/influence/__init__.py
src/pydvl/influence/conjugate_gradient.py
src/pydvl/influence/general.py
src/pydvl/influence/linear.py
src/pydvl/influence/types.py
src/pydvl/influence/frameworks/__init__.py
src/pydvl/influence/frameworks/torch_differentiable.py
src/pydvl/influence/model_wrappers/__init__.py
src/pydvl/influence/model_wrappers/torch_wrappers.py
src/pydvl/reporting/__init__.py
src/pydvl/reporting/plots.py
src/pydvl/reporting/scores.py
src/pydvl/utils/__init__.py
src/pydvl/utils/caching.py
src/pydvl/utils/config.py
src/pydvl/utils/dataset.py
src/pydvl/utils/numeric.py
src/pydvl/utils/progress.py
src/pydvl/utils/score.py
src/pydvl/utils/status.py
src/pydvl/utils/types.py
src/pydvl/utils/utility.py
src/pydvl/utils/parallel/__init__.py
src/pydvl/utils/parallel/backend.py
src/pydvl/utils/parallel/map_reduce.py
src/pydvl/utils/parallel/futures/__init__.py
src/pydvl/utils/parallel/futures/ray.py
src/pydvl/value/__init__.py
src/pydvl/value/result.py
src/pydvl/value/sampler.py
src/pydvl/value/semivalues.py
src/pydvl/value/stopping.py
src/pydvl/value/least_core/__init__.py
src/pydvl/value/least_core/common.py
src/pydvl/value/least_core/montecarlo.py
src/pydvl/value/least_core/naive.py
src/pydvl/value/loo/__init__.py
src/pydvl/value/loo/naive.py
src/pydvl/value/shapley/__init__.py
src/pydvl/value/shapley/common.py
src/pydvl/value/shapley/gt.py
src/pydvl/value/shapley/knn.py
src/pydvl/value/shapley/montecarlo.py
src/pydvl/value/shapley/naive.py
src/pydvl/value/shapley/owen.py
src/pydvl/value/shapley/truncated.py
src/pydvl/value/shapley/types.py
tests/__init__.py
tests/conftest.py
tests/docker-compose.yml
tests/test_plugin.py
tests/test_results.py
tests/influence/__init__.py
tests/influence/conftest.py
tests/influence/test_conjugate_gradients.py
tests/influence/test_influences.py
tests/influence/test_models.py
tests/utils/__init__.py
tests/utils/conftest.py
tests/utils/test_caching.py
tests/utils/test_dataset.py
tests/utils/test_numeric.py
tests/utils/test_parallel.py
tests/utils/test_score.py
tests/utils/test_status.py
tests/utils/test_utility.py
tests/value/__init__.py
tests/value/conftest.py
tests/value/test_stopping.py
tests/value/least_core/__init__.py
tests/value/least_core/conftest.py
tests/value/least_core/test_common.py
tests/value/least_core/test_montecarlo.py
tests/value/least_core/test_naive.py
tests/value/loo/__init__.py
tests/value/loo/test_loo.py
tests/value/shapley/__init__.py
tests/value/shapley/test_knn.py
tests/value/shapley/test_montecarlo.py
tests/value/shapley/test_naive.py