in ai-judge/model.py [0:0]
def forward(self, x):
x = self.conv2D_1(x)
x = self.dropout(x)
x = self.conv2D_2(x)
x = x.view(x.size(0), -1)
x = self.dropout(x)
x = self.linear_1(x)
x = self.linear_2(x)
return x