Skip to content

Commit c671d22

Browse files
committed
update readme
1 parent bdeab96 commit c671d22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ from alphafold3_pytorch import (
141141
contrived_protein = 'AG'
142142

143143
mock_atompos = [
144-
torch.randn(6, 3), # alanine has 6 non-hydrogen atoms
145-
torch.randn(5, 3) # glycine has 5 non-hydrogen atoms
144+
torch.randn(5, 3), # alanine has 6 non-hydrogen atoms
145+
torch.randn(4, 3) # glycine has 5 non-hydrogen atoms
146146
]
147147

148148
train_alphafold3_input = Alphafold3Input(
@@ -193,7 +193,7 @@ batched_eval_atom_input = alphafold3_inputs_to_batched_atom_input(eval_alphafold
193193
alphafold3.eval()
194194
sampled_atom_pos = alphafold3(**batched_eval_atom_input.dict())
195195

196-
assert sampled_atom_pos.shape == (1, (6 + 5), 3)
196+
assert sampled_atom_pos.shape == (1, (5 + 4), 3)
197197
```
198198

199199
## Data preparation

0 commit comments

Comments
 (0)