-
Notifications
You must be signed in to change notification settings - Fork 493
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
Implement unpaired alignment #398
base: beta
Are you sure you want to change the base?
Conversation
Fixed 4. jax compilation error.. Need to change np.array to jnp.array... (msa_cluster_size = jnp.array(feat["bert_mask"]).shape[0] ) |
Deleted previous commit using jnp.array. Get maximum of msa_cluster_size before run and pad the msas... Now jax compilation is fixed but accuracy slightly differ 0.1%... |
I have changed run condition in interaction_scan mode.. One thing to note is that if msa_size < 2556(2048+508), pop the sequences and run the model with recompiling... AlphaFold multimer set msa_feat size 508 and the extra_msa_feat 2048.. There were some cases where msa_size < 2556, the accuracy decreases... I couldn't solve the bug. So predicting with recompiled model for those cases will be safe way. |
Dear sergey
Hope everything is going well with you. I have implemented unpaired alignment and fixed colabfold_search error. I have few things to note..
Thank you 👍