Goodfellow et al
ImageNet Challenge
Goodfellow
Wand and Deng 2018
Montufar et al 2014
Nielson

\[ \frac{\partial f}{\partial w_n} = \phi'(w_nx_n+b_n)x_n \\ \frac{\partial f}{\partial w_{n-1}} = \phi'(w_nx_n+b_n)w_n\phi'(w_{n-1}x_{n-1}+b_{n-1})x_{n-1} \\ \frac{\partial f}{\partial w_1} = \frac{x_1}{w_1}\prod_{i=1}^n\phi'(w_ix_i+b_i)w_i \]
Nielson
pytorch, default varies by layer type\[ \phi(x) = \cases{0& \text{if} \quad x\leq 0 \\ x& \text{if} \quad x>0} \]
