Skip to content

Commit

Permalink
Merge branch 'main' into inv_sqr
Browse files Browse the repository at this point in the history
  • Loading branch information
a-r-j authored Feb 7, 2024
2 parents ef254bf + 897e091 commit 95da831
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
### 0.2.6 (UNRELEASED)

### Models

* Adds missing `pos` attribute to GearNet `required_batch_attributes` (fixes [#73](https://github.com/a-r-j/ProteinWorkshop/issues/73)) [#74](https://github.com/a-r-j/ProteinWorkshop/pull/74)

### Framework

* Adds InverseSquareRoot LR scheduler [#71](https://github.com/a-r-j/ProteinWorkshop/pull/71)
* Adds `InverseSquareRoot` LR scheduler [#71](https://github.com/a-r-j/ProteinWorkshop/pull/71)


### 0.2.5 (28/12/2023)

Expand Down
1 change: 1 addition & 0 deletions proteinworkshop/models/graph_encoders/gear_net.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ def required_batch_attributes(self) -> Set[str]:
"""
return {
"x",
"pos",
"edge_index",
"edge_type",
"edge_attr",
Expand Down

0 comments on commit 95da831

Please sign in to comment.