(self)
| 150 | return out |
| 151 | |
| 152 | def initialize(self): |
| 153 | weight_init(self) |
| 154 | |
| 155 | class MSA_head(nn.Module): |
| 156 | def __init__(self, mode='dilation',dim=128, num_heads=8, ffn_expansion_factor=4, bias=False, LayerNorm_type='WithBias'): |
nothing calls this directly
no test coverage detected