File tree 3 files changed +18
-3
lines changed
3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## v1.4
4
+
5
+ Highlight: Upgraded to PyTorch 1.13+ as required dependency
6
+
7
+ ### New features
8
+ * Added clipping schedulers (#556 )
9
+ * Util to check per sample gradients (#532 )
10
+
11
+ ### Bug fixes
12
+ * Align DataLoader interface with vanilla PyTorch (#543 )
13
+ * Fix GDP accountant epsilon retrieval changing internal state (#541 )
14
+ * Add option to specify number of steps in UniformSampler (#550 )
15
+ * Fix privacy computation script (#565 )
16
+
17
+
3
18
## v1.3
4
19
5
20
### New features
Original file line number Diff line number Diff line change 19
19
import hypothesis .strategies as st
20
20
import torch
21
21
from hypothesis import given , settings
22
-
23
- from .grad_samples .common import expander , shrinker
24
22
from opacus .utils .per_sample_gradients_utils import (
25
23
check_per_sample_gradients_are_correct ,
26
24
get_grad_sample_modes ,
27
25
)
28
26
from torch import nn
29
27
28
+ from .grad_samples .common import expander , shrinker
29
+
30
30
31
31
class PerSampleGradientsUtilsTest (unittest .TestCase ):
32
32
def per_sample_grads_utils_test (
Original file line number Diff line number Diff line change 13
13
# See the License for the specific language governing permissions and
14
14
# limitations under the License.
15
15
16
- __version__ = "1.3 .0"
16
+ __version__ = "1.4 .0"
You can’t perform that action at this time.
0 commit comments