Is it possible to replace sigm activation function to relu in CNN? I tried to replace sigm to relu in cnnff.m but it doesn't work. ``` function X = relu(P) X = max(0,P); end ``` I guess this also requires changes to the backprop derivatives?