(self)
| 24 | return x |
| 25 | |
| 26 | def _initialize_weights(self): |
| 27 | init.orthogonal_(self.conv1.weight, init.calculate_gain('relu')) |
| 28 | init.orthogonal_(self.conv2.weight, init.calculate_gain('relu')) |
| 29 | init.orthogonal_(self.conv3.weight, init.calculate_gain('relu')) |
| 30 | init.orthogonal_(self.conv4.weight) |