File tree Expand file tree Collapse file tree 3 files changed +18
-5
lines changed
Expand file tree Collapse file tree 3 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -23,9 +23,13 @@ FastFold provides a **high-performance implementation of Evoformer** with the fo
2323
2424You will need Python 3.8 or later and [ NVIDIA CUDA] ( https://developer.nvidia.com/cuda-downloads ) 11.1 or above when you are installing from source.
2525
26+ ``` shell
27+ git clone https://github.com/hpcaitech/FastFold
28+ cd FastFold
29+ ```
2630We highly recommend installing an Anaconda or Miniconda environment and install PyTorch with conda:
2731
28- ```
32+ ``` shell
2933conda env create --name=fastfold -f environment.yml
3034conda activate fastfold
3135bash scripts/patch_openmm.sh
@@ -34,8 +38,6 @@ bash scripts/patch_openmm.sh
3438You can get the FastFold source and install it with setuptools:
3539
3640``` shell
37- git clone https://github.com/hpcaitech/FastFold
38- cd FastFold
3941python setup.py install
4042```
4143
@@ -56,6 +58,11 @@ from fastfold.distributed import init_dap
5658init_dap(args.dap_size)
5759```
5860
61+ ### Download the dataset
62+ You can down the dataset used to train FastFold by the script ` download_all_data.sh ` :
63+
64+ ./scripts/download_all_data.sh data/
65+
5966### Inference
6067
6168You can use FastFold with ` inject_fastnn ` . This will replace the evoformer from OpenFold with the high performance evoformer from FastFold.
Original file line number Diff line number Diff line change @@ -16,7 +16,9 @@ dependencies:
1616 - typing-extensions==3.10.0.2
1717 - einops
1818 - colossalai
19- - pytorch::pytorch=1.11.0
19+ - --find-links https://download.pytorch.org/whl/cu113/torch_stable.html torch==1.11.1+cu113
20+ - --find-links https://download.pytorch.org/whl/cu113/torch_stable.html torchaudio==0.11.1+cu113
21+ - --find-links https://download.pytorch.org/whl/cu113/torch_stable.html torchvision==0.13.1
2022 - conda-forge::python=3.8
2123 - conda-forge::setuptools=59.5.0
2224 - conda-forge::pip
Original file line number Diff line number Diff line change 1+ --find-links https://download.pytorch.org/whl/cu113/torch_stable.html
2+ torch == 1.12.1+cu113
3+ torchaudio == 0.12.1+cu113
4+ torchvision == 0.13.1
15einops
2- colossalai
6+ colossalai == 0.1.8
You can’t perform that action at this time.
0 commit comments