-
Notifications
You must be signed in to change notification settings - Fork 26
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
Fix numerical issues and efficiency issues #19
Merged
Conversation
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
1. Changes to `get_one_hot` Problems are given in: - #14 - #17 - #13 I discarded the changes in the PRs and and added more comprehensive handling of the input data in the `SmilesDataset` class and the `get_one_hot` function. 2. Imaginary components Frechet distance calculation fails to work for some cases because of badly conditioned matrices, as described here #15. Could not reproduce the error locally, but could do so on colab. Fixed it in `calculate_frechet_distance` by checking if the first `covmean` computation is real add a small value to the diagonal. This made it work for me and I got the same result as the original implementation run locally. 3. Added some more tests and changed to pytest 4. As described in #16 I changed the data type of the activations to float32 in the `get_predictions` function, which saves memory for larger datasets. 5. Change to pyproject.toml
Change version number Add two workflows that run tests on the dev and master branches and added some shields to the README.md file.
renzph
added a commit
that referenced
this pull request
Apr 1, 2024
Fix numerical issues and efficiency issues
renzph
added a commit
that referenced
this pull request
Apr 1, 2024
Fix numerical issues and efficiency issues
renzph
added a commit
that referenced
this pull request
Apr 1, 2024
Fix numerical issues and efficiency issues
renzph
added a commit
that referenced
this pull request
Apr 1, 2024
Fix numerical issues and efficiency issues
renzph
added a commit
that referenced
this pull request
Apr 1, 2024
Fix numerical issues and efficiency issues
renzph
added a commit
that referenced
this pull request
Apr 1, 2024
Fix numerical issues and efficiency issues
renzph
added a commit
that referenced
this pull request
Apr 1, 2024
Fix numerical issues and efficiency issues
renzph
added a commit
that referenced
this pull request
Apr 1, 2024
Fix numerical issues and efficiency issues
renzph
added a commit
that referenced
this pull request
Apr 1, 2024
Fix numerical issues and efficiency issues
renzph
added a commit
that referenced
this pull request
Apr 1, 2024
Fix numerical issues and efficiency issues
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fix some numerical issues and do some argument checking in bf69345.
Automate tests and add some shields in 2c45937