-
Notifications
You must be signed in to change notification settings - Fork 25
Add MoleculeACE datasets #499
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
Merged
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
2f7e867
Added implementation of first MoleculeACE dataset
Thematiq acf7c4f
Added individual MoleculeACE datasets
Thematiq bd359db
Added split function and unit tests
Thematiq bba7cbf
Add missing docs
Thematiq b5da8ec
Update documentation per PR review
Thematiq 562cef1
Update documentation per PR review
Thematiq File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -21,3 +21,6 @@ tests/preprocessing/input_output/data/mol_out.sdf | |
|
|
||
| .pip_audit_cache | ||
| .python-version | ||
|
|
||
| .DS_Store | ||
| .vscode | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| =========== | ||
| MoleculeACE | ||
| =========== | ||
|
|
||
| .. automodule:: skfp.datasets.moleculeace | ||
| :exclude-members: load_moleculeace_benchmark | ||
|
|
||
| ========================================================= | ||
|
|
||
| .. py:currentmodule:: skfp.datasets.moleculeace | ||
|
|
||
| MoleculeACE benchmark | ||
|
|
||
| .. autosummary:: | ||
| :nosignatures: | ||
| :toctree: generated/ | ||
|
|
||
| load_moleculeace_benchmark | ||
| load_moleculeace_dataset | ||
| load_moleculeace_splits | ||
|
|
||
| Dataset loaders | ||
|
|
||
| .. autosummary:: | ||
| :nosignatures: | ||
| :toctree: generated/ | ||
|
|
||
| load_chembl204_ki | ||
| load_chembl214_ki | ||
| load_chembl218_ec50 | ||
| load_chembl219_ki | ||
| load_chembl228_ki | ||
| load_chembl231_ki | ||
| load_chembl233_ki | ||
| load_chembl234_ki | ||
| load_chembl235_ec50 | ||
| load_chembl236_ki | ||
| load_chembl237_ec50 | ||
| load_chembl237_ki | ||
| load_chembl238_ki | ||
| load_chembl239_ec50 | ||
| load_chembl244_ki | ||
| load_chembl262_ki | ||
| load_chembl264_ki | ||
| load_chembl287_ki | ||
| load_chembl1862_ki | ||
| load_chembl1871_ki | ||
| load_chembl2034_ki | ||
| load_chembl2047_ec50 | ||
| load_chembl2147_ki | ||
| load_chembl2835_ki | ||
| load_chembl2971_ki | ||
| load_chembl3979_ec50 | ||
| load_chembl4005_ki | ||
| load_chembl4203_ki | ||
| load_chembl4616_ec50 | ||
| load_chembl4792_ki |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| from .benchmark import ( | ||
| load_moleculeace_benchmark, | ||
| load_moleculeace_dataset, | ||
| load_moleculeace_splits, | ||
| ) | ||
| from .moleculeace import ( | ||
| load_chembl204_ki, | ||
| load_chembl214_ki, | ||
| load_chembl218_ec50, | ||
| load_chembl219_ki, | ||
| load_chembl228_ki, | ||
| load_chembl231_ki, | ||
| load_chembl233_ki, | ||
| load_chembl234_ki, | ||
| load_chembl235_ec50, | ||
| load_chembl236_ki, | ||
| load_chembl237_ec50, | ||
| load_chembl237_ki, | ||
| load_chembl238_ki, | ||
| load_chembl239_ec50, | ||
| load_chembl244_ki, | ||
| load_chembl262_ki, | ||
| load_chembl264_ki, | ||
| load_chembl287_ki, | ||
| load_chembl1862_ki, | ||
| load_chembl1871_ki, | ||
| load_chembl2034_ki, | ||
| load_chembl2047_ec50, | ||
| load_chembl2147_ki, | ||
| load_chembl2835_ki, | ||
| load_chembl2971_ki, | ||
| load_chembl3979_ec50, | ||
| load_chembl4005_ki, | ||
| load_chembl4203_ki, | ||
| load_chembl4616_ec50, | ||
| load_chembl4792_ki, | ||
| ) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.