Skip to content

Commit 1ba4113

Browse files
HuanyuZhangfacebook-github-bot
authored andcommitted
release v1.4.1 (#628)
Summary: Pull Request resolved: #628 Releasing v1.4.1 Differential Revision: D53626083 fbshipit-source-id: 32bf2e7b9ffb9544ed6dab8929b4bb901b3967e5
1 parent a98f0c7 commit 1ba4113

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## v1.4.1
4+
5+
### Bug fixes
6+
* Fix DP MultiheadAttention (#598)
7+
* Fix: make prv accountant robust to larger epsilons (#606)
8+
* Fix the corner case when the optimizer has no trainable parameters (#619)
9+
310
## v1.4
411

512
Highlight: Upgraded to PyTorch 1.13+ as required dependency

conftest.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,12 @@ def create_namespace(doctest_namespace):
6060
Initialize namespace for doctest.
6161
Everything added to `doctest_namespace` will be available in the doctest.
6262
"""
63-
from typing import Set, Union # noqa
63+
from typing import Any, Dict, List, Set, Tuple, Union # noqa
64+
65+
import numpy as np # noqa
6466
import opacus # noqa
67+
import torch # noqa
68+
from torch import nn # noqa
6569

6670
# Adding all imports in the doctest namespace
6771
doctest_namespace.update(**locals())

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.4.0"
16+
__version__ = "1.4.1"

0 commit comments

Comments
 (0)