EasyDeepLearn

State the universal approximation theorem in one sentence and its practical caveat.

medium

Answer

  • A feedforward network with a single hidden layer of finite width can approximate any continuous function on a compact domain to arbitrary accuracy — but the theorem says nothing about width required, training feasibility, or generalization.
  • In practice depth is much more parameter-efficient than width, which is why deep networks dominate.
Check yourself — multiple choice
  • A single wide hidden layer can approximate any continuous function on a compact set (existence only, not efficiency)
  • Every neural net trained by SGD reaches the global optimum
  • Depth is always useless if you have enough width
  • The theorem gives an explicit width bound

Existence result: says approximation is possible, not efficient or trainable.

#fundamentals#theory

Practise Deep Learning

214 interview questions in this topic.

Related questions