LeNet icon indicating copy to clipboard operation
LeNet copied to clipboard

Build LeNet by hands in Python3

Results 1 LeNet issues
Sort by recently updated
recently updated
newest added

Hi, As title, fc_op function in FullyConLayer.py. ``` val = exp((4.0/3)*val) self.maps[0][0][node_index] = 1.7159 * (val -1) / (val + 1) ``` Could you explain why `val `should times `4.0/3`...