We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6d34d2 commit 23690bbCopy full SHA for 23690bb
alphafold3_pytorch/alphafold3.py
@@ -3063,12 +3063,12 @@ def __init__(
3063
@typecheck
3064
def forward(
3065
self,
3066
- pred_coords: Float['b n 3'] | Float['b m 3'],
3067
- true_coords: Float['b n 3'] | Float['b m 3'],
+ pred_coords: Float['b m_or_n 3'],
+ true_coords: Float['b m_or_n 3'],
3068
pred_frames: Float['b n 3 3'],
3069
true_frames: Float['b n 3 3'],
3070
molecule_atom_lens: Int['b n'] | None = None
3071
- ) -> Float['b n n'] | Float['b m m']:
+ ) -> Float['b m_or_n m_or_n']:
3072
"""
3073
pred_coords: predicted coordinates
3074
true_coords: true coordinates
0 commit comments