Topic · Machine Learning & AI
← All topicsDeep Architectures
30 articles · 4 checkpoints · 18 deeper reads · 8 reference notes
A standalone topic: it is on no roadmap, so read it on its own terms.
Every article, in reading order
plant a flag as you finish eachRead these first
An autoencoder trained only on normal data learns to compress and rebuild normal patterns well. When it meets something abnormal, its reconstruction is bad, and that badness, measured directly, is a usable anomaly score with no labeled anomalies required.
Stacking more layers onto a deep network should only ever help, but past a certain depth it makes training worse. ResNet fixes this with a trick so simple it looks like cheating: let each layer default to changing nothing at all.
A U-Net compresses an input down to its coarse shape and then rebuilds it at full resolution, but rebuilding from the compressed version alone loses fine detail. Skip connections smuggle that detail across directly, from each downsampling step to its matching upsampling step.
Instead of one huge network processing every input the same way, a mixture-of-experts layer keeps a bank of smaller sub-networks and routes each input to only a few of them, buying the capacity of a much bigger model while paying the compute cost of a much smaller one.
Then the rest