Upload config.yaml
Browse files- .hydra/config.yaml +25 -0
.hydra/config.yaml
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
model:
|
| 2 |
+
_target_: model.ProfileBFNModule
|
| 3 |
+
bfn:
|
| 4 |
+
_target_: model.ProfileBFN
|
| 5 |
+
cfg:
|
| 6 |
+
num_diffusion_timesteps: 100
|
| 7 |
+
gradient_ckpt: false
|
| 8 |
+
beta1: 1.0
|
| 9 |
+
beta_time_order: 2.0
|
| 10 |
+
infer_start: 0.2
|
| 11 |
+
net:
|
| 12 |
+
_target_: model.EsmForBFN
|
| 13 |
+
config:
|
| 14 |
+
pretrained_model_name_or_path: facebook/esm2_t30_150M_UR50D
|
| 15 |
+
token_dropout: false
|
| 16 |
+
_attn_implementation_autoset: true
|
| 17 |
+
_attn_implementation: sdpa
|
| 18 |
+
hidden_size: 1680
|
| 19 |
+
num_hidden_layers: 48
|
| 20 |
+
num_attention_heads: 40
|
| 21 |
+
intermediate_size: 6720
|
| 22 |
+
load_pretrained_ckpt: null
|
| 23 |
+
criterion: null
|
| 24 |
+
optimizer: null
|
| 25 |
+
scheduler: null
|