|
|
|
|
|
by eru
691 days ago
|
|
I remember some experiments of using modern day training and data on some old style networks, eg with sigmoid activation. That worked eventually and worked quite well, but took way more compute and training data that anyone back in the olden days would have thought feasible. The two main problems with sigmoid activation compared to ReLU are: (a) harder to compute (both the value itself and the gradient), and (b) vanishing gradients, especially in deeper networks. |
|