We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6178a7f commit eb183e3Copy full SHA for eb183e3
alphafold3_pytorch/trainer.py
@@ -319,7 +319,7 @@ def __init__(
319
adam_klass = Adam
320
321
if use_adam_atan2:
322
- del default_adam_kwargs['eps']
+ default_adam_kwargs.pop('eps', None)
323
adam_klass = AdamAtan2
324
325
optimizer = adam_klass(
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "alphafold3-pytorch"
3
-version = "0.2.58"
+version = "0.2.59"
4
description = "Alphafold 3 - Pytorch"
5
authors = [
6
{ name = "Phil Wang", email = "[email protected]" }
0 commit comments