(self, x)
| 13 | from models.att import LocalDynamics |
| 14 | class Identity(nn.Module): |
| 15 | def forward(self, x): |
| 16 | return x |
| 17 | |
| 18 | def get_norm_layer(norm_type='instance'): |
| 19 | """Return a normalization layer |
nothing calls this directly
no outgoing calls
no test coverage detected