MarvinTeichmann / MediSeg

MIT License
1 stars 1 forks source link

Twice 'conv3_2' #4

Open MartinThoma opened 8 years ago

MartinThoma commented 8 years ago

See

        self.conv3_1 = self._conv_layer(self.pool2, "conv3_1")
        self.conv3_2 = self._conv_layer(self.conv3_1, "conv3_2")
        self.conv3_2 = self._conv_layer(self.conv3_2, "conv3_3")
        self.pool3 = self._max_pool(self.conv3_2, 'pool3', debug)

It should be

        self.conv3_1 = self._conv_layer(self.pool2, "conv3_1")
        self.conv3_2 = self._conv_layer(self.conv3_1, "conv3_2")
        self.conv3_3 = self._conv_layer(self.conv3_2, "conv3_3")
        self.pool3 = self._max_pool(self.conv3_3, 'pool3', debug)
MarvinTeichmann commented 8 years ago

Yes, you are right. Will fix that. It will however not influence the computation. (i.e. the tf graph build is the same, independently of the naming)