"tests/git@developer.sourcefind.cn:OpenDAS/colossalai.git" did not exist on "c789114680b7737032fa786b8dcb2e046bae6e6a"
Commit 21a88b6f authored by Sachin Kadyan's avatar Sachin Kadyan
Browse files

Added sequence-embedding mode config.

- Added configuration options in `config.py` for toggling seq-emb mode
- Added list for specifying features to be used in seq-emb mode.
parent 40325b18
...@@ -247,6 +247,7 @@ config = mlc.ConfigDict( ...@@ -247,6 +247,7 @@ config = mlc.ConfigDict(
"rigidgroups_gt_frames": [NUM_RES, None, None, None], "rigidgroups_gt_frames": [NUM_RES, None, None, None],
"seq_length": [], "seq_length": [],
"seq_mask": [NUM_RES], "seq_mask": [NUM_RES],
"seq_embedding": [NUM_RES, None],
"target_feat": [NUM_RES, None], "target_feat": [NUM_RES, None],
"template_aatype": [NUM_TEMPLATES, NUM_RES], "template_aatype": [NUM_TEMPLATES, NUM_RES],
"template_all_atom_mask": [NUM_TEMPLATES, NUM_RES, None], "template_all_atom_mask": [NUM_TEMPLATES, NUM_RES, None],
...@@ -298,9 +299,20 @@ config = mlc.ConfigDict( ...@@ -298,9 +299,20 @@ config = mlc.ConfigDict(
"deletion_matrix", "deletion_matrix",
"no_recycling_iters", "no_recycling_iters",
], ],
"seqemb_features": [
"seq_embedding"
],
"use_templates": templates_enabled, "use_templates": templates_enabled,
"use_template_torsion_angles": embed_template_torsion_angles, "use_template_torsion_angles": embed_template_torsion_angles,
}, },
"seqemb_mode": {
"enabled": False, # If True, use seq emb instead of MSA
"seqemb_config": {
"max_msa_clusters": 0,
"max_extra_msa": 0,
"max_distillation_msa_clusters": 0
},
},
"supervised": { "supervised": {
"clamp_prob": 0.9, "clamp_prob": 0.9,
"supervised_features": [ "supervised_features": [
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment