def hybrid_forward()

in containers/Shoot/CNN/cnn.py [0:0]


    def hybrid_forward(self, F, x):
        state=self.conv_first(x)
        for conv in self.conv:
            state=conv(state)
        return  self.last_act(self.conv_last(state))