Skip to content

Commit e956fc2

Browse files
committed
lower the number of transformer layers in af3 during testing
1 parent 76b0b26 commit e956fc2

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

tests/test_af3.py

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,24 @@ def test_alphafold3():
269269
dim_atom_inputs = 77,
270270
dim_additional_residue_feats = 33,
271271
dim_template_feats = 44,
272-
num_dist_bins = 38
272+
num_dist_bins = 38,
273+
confidence_head_kwargs = dict(
274+
pairformer_depth = 1
275+
),
276+
template_embedder_kwargs = dict(
277+
pairformer_stack_depth = 1
278+
),
279+
msa_module_kwargs = dict(
280+
depth = 1
281+
),
282+
pairformer_stack = dict(
283+
depth = 2
284+
),
285+
diffusion_module_kwargs = dict(
286+
atom_encoder_depth = 1,
287+
token_transformer_depth = 1,
288+
atom_decoder_depth = 1,
289+
),
273290
)
274291

275292
loss = alphafold3(

0 commit comments

Comments
 (0)