Skip to content

Commit eb183e3

Browse files
committed
quick fix
1 parent 6178a7f commit eb183e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

alphafold3_pytorch/trainer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ def __init__(
319319
adam_klass = Adam
320320

321321
if use_adam_atan2:
322-
del default_adam_kwargs['eps']
322+
default_adam_kwargs.pop('eps', None)
323323
adam_klass = AdamAtan2
324324

325325
optimizer = adam_klass(

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "alphafold3-pytorch"
3-
version = "0.2.58"
3+
version = "0.2.59"
44
description = "Alphafold 3 - Pytorch"
55
authors = [
66
{ name = "Phil Wang", email = "[email protected]" }

0 commit comments

Comments
 (0)