Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
OpenFold
Commits
d40aa157
Commit
d40aa157
authored
Apr 09, 2023
by
Christina Floristean
Browse files
Merging recent updates from main branch
parents
39a6d0e6
7c32b79f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
13 deletions
+14
-13
.gitignore
.gitignore
+11
-11
README.md
README.md
+1
-1
scripts/build_deepspeed_config.py
scripts/build_deepspeed_config.py
+2
-1
No files found.
.gitignore
View file @
d40aa157
.DS_Store
*.DS_Store
**/.DS_Store
.vscode/
.idea/
**/__pycache__
*.pyc
build/
dist/
*.egg-info/
openfold/resources
**/stereo_chemical_props.txt
**/sample_feats.pickle
__pycache__/
*.egg-info
build
dist
# files from script downloads
data
openfold/resources/
tests/test_data/
README.md
View file @
d40aa157
...
...
@@ -246,7 +246,7 @@ python3 scripts/precompute_alignments.py mmcif_dir/ alignment_dir/ \
--pdb70_database_path
data/pdb70/pdb70
\
--uniclust30_database_path
data/uniclust30/uniclust30_2018_08/uniclust30_2018_08
\
--bfd_database_path
data/bfd/bfd_metaclust_clu_complete_id30_c90_final_seq.sorted_opt
\
--cpus
16
\
--cpus
_per_task
16
\
--jackhmmer_binary_path
lib/conda/envs/openfold_venv/bin/jackhmmer
\
--hhblits_binary_path
lib/conda/envs/openfold_venv/bin/hhblits
\
--hhsearch_binary_path
lib/conda/envs/openfold_venv/bin/hhsearch
\
...
...
scripts/build_deepspeed_config.py
View file @
d40aa157
...
...
@@ -248,9 +248,10 @@ if(args.scheduler is not None):
params
[
"warmup_max_lr"
]
=
args
.
warmup_max_lr
params
[
"warmup_num_steps"
]
=
args
.
warmup_num_steps
elif
(
args
.
scheduler
==
"WarmupDecayLR"
):
params
[
"total_num_steps"
]
=
args
.
warmup_decay_total_num_steps
params
[
"warmup_min_lr"
]
=
args
.
warmup_decay_min_lr
params
[
"warmup_max_lr"
]
=
args
.
warmup_decay_max_lr
params
[
"warmup_num_steps"
]
=
args
.
warmup_decay_num_steps
params
[
"total_num_steps"
]
=
args
.
warmup_decay_total_num_steps
else
:
raise
ValueError
(
"Invalid scheduler"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment