openfold
openfold copied to clipboard
Trainable, memory-efficient, and GPU-friendly PyTorch reproduction of AlphaFold 2
Hi, thank you very much for your work. Now I want to training openfold, and download the corresponding dataset(RODA dataset), and then use the following script for training. `python3 train_openfold.py...
The download script download_roda_pdbs.sh has this rsync command: https://github.com/aqlaboratory/openfold/blob/84659c93ba6f06b8a0a2646d1cf27646c003a0c6/scripts/download_roda_pdbs.sh#L35 It doesn't download anything, perhaps because there aren't any files at the given path on the server. I'm following the README...
I've found that I'm unable to load the provided openfold model parameters when using `--resume_model_weights_only=True` in `train_openfold.py` . An error arises because the keys corresponding the model parameters are prefixed...
Hi and thanks for your amazing model! I would like to grab the gradient of the model before the optimizer.step. According to the definition, this can be fetched through the...
Only the first timing is recorded in timings.json. Furthermore, it would be nice to include also the MSA (maybe even with timings of the substeps), next to the inference and...
Hello, Thanks for a very useful and well documented package. Great effort! I have tried to train the model with flash attention enabled, and ran into the following error: ```...
Hello, I have issues when running openfold on a CPU. When I execute the `run_pretrained_openfold.py` script with the `--model_device cpu` argument set, I get the following error: ```shell Traceback (most...
Hello, I think I install all the dependencies except the flash-attention. I ran the unit test using the script, and the test_model failed. ``` ====================================================================== FAIL: test_dry_run (tests.test_model.TestModel) ---------------------------------------------------------------------- Traceback...
I saw [#71](https://github.com/aqlaboratory/openfold/pull/71) that built a docker image. However, if I wanted mmseq2 installed within my image, has anyone already done this?
I've been trying to set up Openfold to test it out this week. It's been somewhat of a struggle but I am sooo close right now. Everything is installed and...