(self, x)
| 101 | self.drop = nn.Dropout(drop) |
| 102 | |
| 103 | def forward(self, x): |
| 104 | x = self.fc1(x) |
| 105 | x = self.act(x) |
| 106 | x = self.drop(x) |
| 107 | x = self.fc2(x) |
| 108 | x = self.drop(x) |
| 109 | return x |
| 110 | |
| 111 | |
| 112 | class ConvMixer(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected