From e77c43b872f7959ee2c6c78c2d72fe627acef94f Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Wed, 7 Dec 2022 16:01:41 +0900 Subject: [PATCH] fix typo in modules.py ouput -> output --- network/equivariant_attention/modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network/equivariant_attention/modules.py b/network/equivariant_attention/modules.py index 8a1a7f7..c81de7c 100755 --- a/network/equivariant_attention/modules.py +++ b/network/equivariant_attention/modules.py @@ -777,7 +777,7 @@ def __init__(self, f_in: Fiber, f_out: Fiber, edge_dim: int=0, div: float=4, self.add = GSum(f_out, f_in) # the following checks whether the skip connection would change # the output fibre strucure; the reason can be that the input has - # more channels than the ouput (for at least one degree); this would + # more channels than the output (for at least one degree); this would # then cause a (hard to debug) error in the next layer assert self.add.f_out.structure_dict == f_out.structure_dict, \ 'skip connection would change output structure'