Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cnn influence example #195

Merged
merged 31 commits into from
Dec 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
93ec7f2
WIP influence example using imagenet and resnet
Xuzzo Nov 8, 2022
7b73a98
WIP extending example of cnn with ifs
Xuzzo Nov 9, 2022
17a45e9
WIP notebook
Xuzzo Nov 11, 2022
7990df1
WIP still working on damn example
Xuzzo Nov 11, 2022
b8df585
WIP writing docs for notebook
Xuzzo Nov 13, 2022
4800233
WIP writing theory in example
Xuzzo Nov 23, 2022
9c62032
Merge branch 'develop' into cnn_influence_example
Xuzzo Dec 6, 2022
7ada9a6
add theory appendix to imagenet notebook
Xuzzo Dec 6, 2022
1f36c05
moved methods to notebook support
Xuzzo Dec 6, 2022
c6c6da8
update to imagenet notebook - docs to notebook support methods
Xuzzo Dec 7, 2022
d203ad4
cosmetic changes to notebook
Xuzzo Dec 9, 2022
7d38b89
trying to solve tox issue in ci
Xuzzo Dec 9, 2022
b70432d
fix ci data loading in notebook
Xuzzo Dec 9, 2022
b16287e
minor changes to docs
Xuzzo Dec 9, 2022
bcc745a
update changelog and fix typing in notebook_support
Xuzzo Dec 12, 2022
cb18bdf
including progress bar
Xuzzo Dec 19, 2022
f371af8
addressing MR comments
Xuzzo Dec 20, 2022
0c7f466
dummy commit to re-trigger pipelines
Xuzzo Dec 21, 2022
d156f6e
minor changes to notebooks
Xuzzo Dec 21, 2022
eb63458
add sphinx hidden to cells
Xuzzo Dec 22, 2022
461eb27
minor changes to notebook
Xuzzo Dec 22, 2022
b4793f3
Forward calls to wrapped torch model
mdbenito Dec 27, 2022
f059b6b
Return ndarrays in TorchModel.fit
mdbenito Dec 27, 2022
d193eec
Types, strings, etc.
mdbenito Dec 27, 2022
826ae08
Remove clutter from notebook, some refactoring, rephrasing and tweaking.
mdbenito Dec 27, 2022
1e9e0a3
git ignore saved models
mdbenito Dec 27, 2022
c7256fc
Merge pull request #235 from appliedAI-Initiative/fix/cnn-influence
Xuzzo Dec 28, 2022
170970d
dummy commit to trigger pipeline
Xuzzo Dec 28, 2022
a31b263
fix typing
Xuzzo Dec 28, 2022
2d3a719
minor changes to notebooks
Xuzzo Dec 28, 2022
9f704d0
add req-notebooks and remove InternalDataset
Xuzzo Dec 28, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -138,3 +138,4 @@ pylint.html

# Saved data
runs/
data/models/
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
- **Breaking change:** Introduces a class ValuationResult to gather and inspect
results from all valuation algorithms
[PR #214](https://github.com/appliedAI-Initiative/pyDVL/pull/214)
- Fixes bug in Influence calculation with multi-dimensional input and adds
new example notebook
[PR #195](https://github.com/appliedAI-Initiative/pyDVL/pull/195)

## 0.3.0 - 💥 Breaking changes

Expand Down
1,024 changes: 1,024 additions & 0 deletions notebooks/influence_imagenet.ipynb

Large diffs are not rendered by default.

112 changes: 77 additions & 35 deletions notebooks/influence_synthetic.ipynb

Large diffs are not rendered by default.

151 changes: 111 additions & 40 deletions notebooks/influence_wine.ipynb

Large diffs are not rendered by default.

Loading