Skip to content

Commit f7b2825

Browse files
committed
update changelog and fix minor bug
1 parent ca2c286 commit f7b2825

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
- Fix implementations of `to` methods of `TorchInfluenceFunctionModel` implementations
1010
[PR #487](https://github.com/aai-institute/pyDVL/pull/487)
1111
- Implement new method: `EkfacInfluence`
12-
[PR #451](https://github.com/aai-institute/pyDVL/issues/451)
12+
[PR #476](https://github.com/aai-institute/pyDVL/pull/476)
13+
- New notebook to showcase ekfac for LLMs
14+
[PR #483](https://github.com/aai-institute/pyDVL/pull/483)
1315

1416
## 0.8.0 - 🆕 New interfaces, scaling computation, bug fixes and improvements 🎁
1517

src/pydvl/influence/torch/influence_function_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1392,7 +1392,7 @@ def _non_symmetric_values_by_layer(
13921392
fac = self.influence_factors_by_layer(x, y)
13931393
values = self.influences_from_factors_by_layer(
13941394
fac, x_test, y_test, mode=mode
1395-
).T
1395+
)
13961396
elif mode == InfluenceMode.Perturbation:
13971397
fac = self.influence_factors_by_layer(x_test, y_test)
13981398
values = self.influences_from_factors_by_layer(fac, x, y, mode=mode)

0 commit comments

Comments
 (0)