Any suggestions?
Sorry for bad english ;)
Marco
It's a hyperparameter, like any other. For maxout on MNIST we set it by randomly sampling hyperparameters and keeping the configuration with the lowest validation error.
--
You received this message because you are subscribed to the Google Groups "pylearn-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pylearn-user...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Hi,
probably another dumb question, but in mnist.yaml there's max_col_norm that has a value of 1.9365. How that value comes out?
I have my own dataset, so I tried without it but the training fails so I leave it there, but with that value! :S
Any suggestions?
Sorry for bad english ;)
valid_h2_col_norms_max: 2.00000166893 valid_h2_col_norms_mean: 1.99946582317 valid_h2_col_norms_min: 1.99480116367
I have a CNN with 2 convolutional layers, then one fully connected layer (using RectifiedLinear) and a final SoftMax layer.I have "max_col_norm: 2." set for the fully connected layer.I am seeing numbers like this pretty consistently:valid_h2_col_norms_max: 2.00000166893 valid_h2_col_norms_mean: 1.99946582317 valid_h2_col_norms_min: 1.99480116367It seems bad to me that the min/mean col_norm is sitting at the max allowed value. Should I try increasing the weight decay? Raise the allowed col norm?
--
You received this message because you are subscribed to the Google Groups "pylearn-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pylearn-user...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
raise Exception("NaN in " + param.name)
Exception: NaN in h0_W
In this case I don't have any other choice other than using %80 of kernel_norms_mean in the epoch 0. But then at epoch 0 the algorithm hasn't seen any examples yet. Is it correct?
Thanks,
Sara.