A very simple question what is that meaning?

self.gray_kernel = self.get_gray_conv().train(False)
self.gaussian_kernel = self.get_gaussian_conv().train(False)

what will happen if i change ‘False’ to ‘True’?
Thanks!

Hi,

It depends what self.get_gray_conv() returns?
If it is an nn.Module, then you can see in the doc what this does. If it is not, then you will need to check on that particular object.

I will check it.Thank you!