indexDeep Learning#deep-learning#neural-networks

Deep Learning

Deep learning is what happens when you stack many simple, differentiable layers and let gradient descent discover the features instead of hand-engineering them. That single shift — learned representations over crafted features — is why it took over vision, speech, and language, and it's the substrate every LLM is built on.

A neural network is a stack of linear models separated by nonlinearities, trained end to end by backprop. Everything else is making that train stably at scale.

Mental model

Deep learning composes differentiable transformations so useful representations can be learned with the task. Architecture determines information paths; the objective supplies pressure; backpropagation assigns local credit; optimization and numerical systems make the process viable at scale.

Roadmap: how a network learns

Making training work

Architectures

Representations & scale

Paradigms & strategy

Connects to: Computation and Autodiff · Model Architectures · Language and Foundation Models

Core sources