forked from google-deepmind/alphafold
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Copy alphafold from colabfold #1
Merged
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
…es to be removed - change Protein.to_pdb back to default implementation
important for batch compute that uses masking
* fix memory leaks * use bfloat16 for representations * move confidence compute inside module.py * move multimer key splitting to model.py
* fix memory leaks various edits to fix memory leaks memory leak fix * v2.3.4 - fix memory leaks another attempt to fix memory leaks! * Update config.py * bugfix - num-ensemble
Update OpenMM imports to work with new OpenMM API
msa_activation is (N,L,256) in colabfold v1.5.2 we return msa_activation[0] as our single representation vector looks like there is one extra linear layer to convert msa_activations[0] to single_activation: ![image](https://github.com/sokrypton/alphafold/assets/4187522/1183a0fb-1a07-4626-9ada-12e32fd6891c) If anything the (L,256) representation might be better, as you might be losing some information by doing the extra transformation at the end. But since people are asking, I'm adding the transformation back so that the output is (L,386). typo
oruebel
approved these changes
Dec 19, 2023
stephprince
approved these changes
Dec 19, 2023
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.
This PR merges the version of alphafold used for ColabFold. I am copying their version over so we can work on a version of alphafold that will work with ColabFold.
When you install ColabFold locally, it will install alphafold from this PyPI package, which I believe is just a fork of DeepMind's alphafold repository that they've modified to work with the rest of the ColabFold code base.
Since we've decided to work with ColabFold, I thought it would be good to have their modifications in our codebase to build on top of.