Live data from Hacker News

Nonlinear Computation in Deep Linear Networks

blog.openai.com

31–34 of 34 posts

Re: Nonlinear Computation in Deep Linear Networks

#31
post #24

It's super interesting to think that any non-linearity at all can make it work. This particular non-linearity is surprising since it's clamping to zero at the center of the response curve. I'd have thought that's right where you want the linear response, and that clamping in the middle would cause bad things to happen. Sigmoid and RelU (and others) clamp at the foot/shoulder. Perhaps this network just learns negative…

there's a theorem that any nonlinearity works (for sufficiently sized networks).

The universal approximation theorem actually assumes that the nonlinearity is monotonically increasing, nonconstant and continuous. I don't think floating point nonlinearities technically satisfy that.

Re: Nonlinear Computation in Deep Linear Networks

#32

Earlier quoted context omitted.

there's a theorem that any nonlinearity works (for sufficiently sized networks).

The universal approximation theorem actually assumes that the nonlinearity is monotonically increasing, nonconstant and continuous. I don't think floating point nonlinearities technically satisfy that.

[deleted]

Re: Nonlinear Computation in Deep Linear Networks

#33

Earlier quoted context omitted.

there's a theorem that any nonlinearity works (for sufficiently sized networks).

The universal approximation theorem actually assumes that the nonlinearity is monotonically increasing, nonconstant and continuous. I don't think floating point nonlinearities technically satisfy that.

0) nonconstant. Yes, for most cases the floating point nonlinearities map x => x, so it is not a constant.

1) bounded. Yes, the nonlinearites are bounded by the range of the FP.

2) monotonically-increasing. Yes. Consider a + b, where fp(a + b) 3) continuous function. No. Well, you can't win at everything, no computer representation can be truly continuous, but it's reasonable approximation of the approximation theory, otherwise ML on computers in general would be hopeless.

Post reply on HN