Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Chapter 4: Deep LearningΒΆ

This chapter teaches deep learning by building it up one piece at a time, in PyTorch, on geoscience data. Every architecture is implemented, trained, and diagnosed in a notebook you can run on a laptop. The models are deliberately small; the ideas are not.

Chapter mapΒΆ

  1. The perceptron (4.0)

    • A single artificial neuron, implemented from scratch
    • The perceptron learning rule and its limits
    • Gradient descent compared against ordinary least squares
  2. A first neural network (4.1)

    • The five steps of every training script: dataset, model, loss, optimizer, training loop
    • Multi-class classification of seismic sources from tabular features
    • Reading learning curves
  3. Multi-layer perceptrons (4.2)

    • Depth, dropout, and batch normalization
    • Saving, checkpointing, and restoring models
    • PyTorch compared with scikit-learn’s MLPClassifier
  4. Convolutional neural networks (4.3)

    • Convolution and kernels on images
    • LeNet on MNIST, briefly
    • A 2-D CNN regressing warming trends from a synthetic climate field, read against least-squares baselines
    • A 1-D CNN earthquake detector and its detection floor, head-to-head with the classical STA/LTA trigger on the same traces
    • A reality check on real miniPNW waveforms: the synthetic-to-real gap measured, not tuned away
    • Reading and recoding a published network
  5. Sequence models (4.4)

    • Context windows and forecast horizons
    • Vanilla RNNs and why gradients vanish
    • LSTMs, self-attention from scratch, and a small transformer encoder
    • All compared on the same forecasting task, against persistence and seasonal-naive baselines
  6. The three pillars of model development (4.5)

    • Pillar 1: training-data curation β€” label noise, structured label disagreement, class imbalance, sensor noise, heteroscedastic quality
    • Pillar 2: architecture β€” width, depth, baselines, deep ensembles and MC dropout for uncertainty, calibration vs discrimination, out-of-range behavior
    • Pillar 3: training strategies β€” learning rate, batch size, early stopping, schedulers
    • Diagnosing broken training runs from their loss curves
    • Hyperparameter search with Optuna
  7. Autoencoders and self-supervision (4.6)

    • Dense, convolutional, and denoising autoencoders on seismic spectrograms
    • Masked-autoencoder pretraining, ported to a second domain (gridded climate fields)
    • Reusing a pretrained encoder when labels are scarce
    • A miniPNW transfer probe: features cross the synthetic-to-real gap, decision boundaries do not
  8. Physics-informed learning (4.7)

    • Physics constraints as loss terms
    • A cooling-law ablation and a 1-D heat-diffusion PINN
    • A finite-difference baseline that beats the PINN on the forward problem (~750x faster, 100x more accurate)
    • An inverse PINN recovering diffusivity from 40 noisy samples, and a break-the-PINN loss-imbalance exercise
    • Where PINNs stand in 2026, and neural operators as successors
  9. Time-series forecasting shootout (4.10)

    • Baselines, SARIMA, gradient boosting, LSTM, and a transformer encoder on real geoscience series
    • Honest temporal splits and MASE
    • The class forecasting leaderboard
  10. Final-project milestone (4.20)

    • Architecture exploration, evaluation, and diagnostics requirements for the deep-learning milestone

Transfer learning appears where it is used: notebook 4.6 closes with a linear probe on a frozen pretrained encoder, which is transfer learning in miniature. Large language models and AI agents are covered in Chapter 6.

Learning outcomesΒΆ

By the end of this chapter, you will be able to: