in svhn_based_exp/models.py [0:0]
def forward(self, x): for layer in self.layers: x = F.relu(layer(x)) return self.output_layer(x)