-
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
Reduce memory footprint #16
Closed
Closed
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
renzph
added a commit
that referenced
this pull request
Mar 29, 2024
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.
renzph
added a commit
that referenced
this pull request
Apr 1, 2024
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.
renzph
added a commit
that referenced
this pull request
Apr 1, 2024
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.
renzph
added a commit
that referenced
this pull request
Apr 1, 2024
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.
renzph
added a commit
that referenced
this pull request
Apr 1, 2024
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.
renzph
added a commit
that referenced
this pull request
Apr 1, 2024
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
renzph
force-pushed
the
master
branch
2 times, most recently
from
April 1, 2024 15:55
53a08c2
to
f806d58
Compare
Hey Stephan. Thank you so much for your input. I changed this in the new version at Line 79 in f806d58
|
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.
Context
I used the new version (1.2) of
fcd
to calculate the FCD of > 1M molecules.Issue
In this scenario, my corresponding python script crashed due to a large memory footprint (> 50 GB) on both
macOS
andLinux
. This might be a local issue and depend on the specificpytorch
version, among other things.Suggested resolution
I amended the code in two ways:
(1) Used a different context manager for inference; this does not solve the issue, but was done in addition to ...
(2) Casting the inference result to
numpy float32
reduced the memory footprint. I am not sure why this works since the data type without the corresponding line is alreadyfloat32
and should be without any additional data, such as gradients.I calculated the FCD for smaller molecule sets of size 100,000 to check whether the FCD value remains the same, which it did in my experiments.
In summary, I consider this to be a minor change which helps to alleviate memory problems, at least in certain configurations.