Skip to content
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

move colab url from google drive to github release #78

Merged
merged 2 commits into from
Dec 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Make sure there is at least 3TB storage space for downloading (~500GB) and uncom

Inferenece and finetuning with Uni-Fold requires pretrained model parameters. Use the following command to download the parameters:
```bash
wget https://github.com/dptech-corp/Uni-Fold/releases/download/v2.2.0/unifold_params_2022-08-01.tar.gz
wget https://github.com/dptech-corp/Uni-Fold/releases/download/v2.0.0/unifold_params_2022-08-01.tar.gz
tar -zxf unifold_params_2022-08-01.tar.gz
```
It contains 1 **monomer** and 1 **multimer** pretrained model parameters, whose model name are `model_2_ft` and `multimer_ft` respectively.
Expand Down Expand Up @@ -225,7 +225,7 @@ Besides the notices in the previous section, additionaly note that:
To run UF-Symmetry, please first install the newest version of Uni-Fold, and download the parameters of UF-Symmetry:

```bash
wget https://github.com/dptech-corp/Uni-Fold/releases/download/v2.0.0/uf_symmetry_params_2022-09-06.tar.gz
wget https://github.com/dptech-corp/Uni-Fold/releases/download/v2.2.0/uf_symmetry_params_2022-09-06.tar.gz
tar -zxf uf_symmetry_params_2022-09-06.tar.gz
```

Expand Down
8 changes: 4 additions & 4 deletions notebooks/unifold.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -101,17 +101,17 @@
"\n",
"GIT_REPO='https://github.com/dptech-corp/Uni-Fold'\n",
"UNICORE_URL='https://github.com/dptech-corp/Uni-Core/releases/download/0.0.1/unicore-0.0.1+cu113torch1.12.1-cp37-cp37m-linux_x86_64.whl'\n",
"PARAM_URL='https://drive.google.com/uc?id=1A9iXMYCwP0f_U0FgISJ_6BX7FXZtglvV'\n",
"UF_SYMM_PARAM_URL='https://drive.google.com/uc?id=1UNEGzmueQTxY05QIRweKHxOjr1ht-G_Q'\n",
"PARAM_URL='https://github.com/dptech-corp/Uni-Fold/releases/download/v2.0.0/unifold_params_2022-08-01.tar.gz'\n",
"UF_SYMM_PARAM_URL='https://github.com/dptech-corp/Uni-Fold/releases/download/v2.2.0/uf_symmetry_params_2022-09-06.tar.gz'\n",
"\n",
"if [ ! -f UNIFOLD_READY ]; then\n",
" wget ${UNICORE_URL} \n",
" pip3 -q install \"unicore-0.0.1+cu113torch1.12.1-cp37-cp37m-linux_x86_64.whl\"\n",
" git clone -b main ${GIT_REPO}\n",
" pip3 -q install ./Uni-Fold\n",
" gdown ${PARAM_URL}\n",
" wget ${PARAM_URL}\n",
" tar -xzf \"unifold_params_2022-08-01.tar.gz\"\n",
" gdown ${UF_SYMM_PARAM_URL}\n",
" wget ${UF_SYMM_PARAM_URL}\n",
" tar -xzf \"uf_symmetry_params_2022-09-06.tar.gz\"\n",
"\n",
" touch UNIFOLD_READY\n",
Expand Down