-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from valence-labs/evaluate
Sampling with SAFE
- Loading branch information
Showing
25 changed files
with
13,437 additions
and
270 deletions.
There are no files selected for viewing
This file contains 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 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
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 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 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 @@ | ||
{"splits": ["train", "test", "validation"]} |
Binary file not shown.
This file contains 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,19 @@ | ||
{ | ||
"citation": "", | ||
"description": "", | ||
"features": { | ||
"inputs": { | ||
"dtype": "string", | ||
"_type": "Value" | ||
}, | ||
"descriptors": { | ||
"feature": { | ||
"dtype": "float64", | ||
"_type": "Value" | ||
}, | ||
"_type": "Sequence" | ||
} | ||
}, | ||
"homepage": "", | ||
"license": "" | ||
} |
This file contains 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,13 @@ | ||
{ | ||
"_data_files": [ | ||
{ | ||
"filename": "data-00000-of-00001.arrow" | ||
} | ||
], | ||
"_fingerprint": "739e961c83556f0c", | ||
"_format_columns": null, | ||
"_format_kwargs": {}, | ||
"_format_type": null, | ||
"_output_all_columns": false, | ||
"_split": null | ||
} |
Binary file not shown.
This file contains 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,19 @@ | ||
{ | ||
"citation": "", | ||
"description": "", | ||
"features": { | ||
"inputs": { | ||
"dtype": "string", | ||
"_type": "Value" | ||
}, | ||
"descriptors": { | ||
"feature": { | ||
"dtype": "float64", | ||
"_type": "Value" | ||
}, | ||
"_type": "Sequence" | ||
} | ||
}, | ||
"homepage": "", | ||
"license": "" | ||
} |
This file contains 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,13 @@ | ||
{ | ||
"_data_files": [ | ||
{ | ||
"filename": "data-00000-of-00001.arrow" | ||
} | ||
], | ||
"_fingerprint": "8232d33a79926636", | ||
"_format_columns": null, | ||
"_format_kwargs": {}, | ||
"_format_type": null, | ||
"_output_all_columns": false, | ||
"_split": null | ||
} |
Binary file added
BIN
+122 KB
expts/notebook/tmp_data/proc_data/validation/data-00000-of-00001.arrow
Binary file not shown.
19 changes: 19 additions & 0 deletions
19
expts/notebook/tmp_data/proc_data/validation/dataset_info.json
This file contains 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,19 @@ | ||
{ | ||
"citation": "", | ||
"description": "", | ||
"features": { | ||
"inputs": { | ||
"dtype": "string", | ||
"_type": "Value" | ||
}, | ||
"descriptors": { | ||
"feature": { | ||
"dtype": "float64", | ||
"_type": "Value" | ||
}, | ||
"_type": "Sequence" | ||
} | ||
}, | ||
"homepage": "", | ||
"license": "" | ||
} |
This file contains 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,13 @@ | ||
{ | ||
"_data_files": [ | ||
{ | ||
"filename": "data-00000-of-00001.arrow" | ||
} | ||
], | ||
"_fingerprint": "739e961c83556f0c", | ||
"_format_columns": null, | ||
"_format_kwargs": {}, | ||
"_format_type": null, | ||
"_output_all_columns": false, | ||
"_split": null | ||
} |
This file contains 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 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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
class SafeDecodeError(Exception): | ||
class SAFEDecodeError(Exception): | ||
"""Raised when a string cannot be decoded with the given encoding.""" | ||
|
||
pass | ||
|
||
|
||
class SafeEncodeError(Exception): | ||
class SAFEEncodeError(Exception): | ||
"""Raised when a molecule cannot be encoded using SAFE.""" | ||
|
||
pass | ||
|
||
|
||
class SafeFragmentationError(Exception): | ||
class SAFEFragmentationError(Exception): | ||
"""Raised when a the slicing algorithm return empty bonds.""" | ||
|
||
pass |
Oops, something went wrong.