You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dear Developer. I am currently trying to learn and replicate the "Mutate Everything" project. However, I noticed a discrepancy: in the article, the batch size is described as 3, while the GitHub README uses a batch size of 1. Additionally, when I set the batch size to a value greater than 1, I encounter an error in data.py at the line ret['one_letter_idx'] = one_letter_idx. This issue might be caused by the protein sequences having varying lengths, which are not aligned, leading to the error. Could you please suggest a solution for this problem?Thank you.
The text was updated successfully, but these errors were encountered:
Thanks for your interest. Below is the command copy pasted from the README. The per-GPU batch size is 1 but we are using 3 GPUs, thus the effective batch size is 3. We use openfold which only permits a batch size of 1.
Solution is to use 3 gpus. If only one GPU is available try batch size of 1, though I'm unsure you will get the same solution.
Dear Developer. I am currently trying to learn and replicate the "Mutate Everything" project. However, I noticed a discrepancy: in the article, the batch size is described as 3, while the GitHub README uses a batch size of 1. Additionally, when I set the batch size to a value greater than 1, I encounter an error in data.py at the line ret['one_letter_idx'] = one_letter_idx. This issue might be caused by the protein sequences having varying lengths, which are not aligned, leading to the error. Could you please suggest a solution for this problem?Thank you.
The text was updated successfully, but these errors were encountered: