Skip to content

Commit 5aa378e

Browse files
Igor Shilovfacebook-github-bot
Igor Shilov
authored andcommitted
release v1.4 (#563)
Summary: subj Pull Request resolved: #563 Reviewed By: alexandresablayrolles, Anonymani, karthikprasad Differential Revision: D43242386 Pulled By: ffuuugor fbshipit-source-id: 0843a298209cb424e5f4578d128307f7593835f4
1 parent 57221ef commit 5aa378e

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

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+
318
## v1.3
419

520
### New features

opacus/tests/per_sample_gradients_utils_test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
import hypothesis.strategies as st
2020
import torch
2121
from hypothesis import given, settings
22-
23-
from .grad_samples.common import expander, shrinker
2422
from opacus.utils.per_sample_gradients_utils import (
2523
check_per_sample_gradients_are_correct,
2624
get_grad_sample_modes,
2725
)
2826
from torch import nn
2927

28+
from .grad_samples.common import expander, shrinker
29+
3030

3131
class PerSampleGradientsUtilsTest(unittest.TestCase):
3232
def per_sample_grads_utils_test(

opacus/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
__version__ = "1.3.0"
16+
__version__ = "1.4.0"

0 commit comments

Comments
 (0)