Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate torsional denoising task temporarily #84

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
### Features
* Fix `sequence_edges` behaviour when argument `b` is a `Data` object [#80](https://github.com/a-r-j/ProteinWorkshop/pull/80)

### Tasks
* Deprecate the `torsional_denoising` task until further runtime testing can be performed [#84](https://github.com/a-r-j/ProteinWorkshop/pull/84)

### Misc
* Update ICLR paper link and citation [#82](https://github.com/a-r-j/ProteinWorkshop/pull/82)

Expand Down
3 changes: 3 additions & 0 deletions proteinworkshop/tasks/torsional_denoising.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ def __init__(
:param corruption_rate: Amount to scale noise by, defaults to 0.1
:type corruption_rate: float, optional
"""
raise NotImplementedError(
"This transform is not fully implemented yet. Please refer to other transforms for the time being."
)
self.corruption_strategy = corruption_strategy
self.corruption_rate = corruption_rate

Expand Down
Loading