Chapter 1 Quiz: Introduction to ML in Geosciences

Chapter 1: Welcome — ML for Earth and Subsurface Data

Learning objectives

  • Test your understanding of ML concepts, forward/inverse problems, and Python basics

This quiz covers both the lecture material and lab exercises from Chapter 1.

Key Concepts Review

  • ML Definition (Mitchell): A program learns from experience EE w.r.t. task TT and performance PP if PP on TT improves with EE.
  • Forward vs Inverse Problems: Forward: d=G(m)d = G(m) (model \to data). Inverse: m=G1(d)m = G^{-1}(d) (data \to model). Inverse problems are typically ill-posed (existence, uniqueness, stability).
  • Supervised vs Unsupervised: Supervised uses labeled data for prediction; unsupervised discovers patterns in unlabeled data.
  • Semivariance: γ(h)=12N(h)[z(xi)z(xi+h)]2\gamma(h) = \frac{1}{2N(h)}\sum[z(x_i) - z(x_i + h)]^2 increases with lag hh and plateaus at the sill.
  • Python Basics: Slicing (x[1:4]x[1:4] excludes index 4), negative indexing (x[1]x[-1] = last element), range(a, b) excludes bb.

References

  • Bergen, K.J., Johnson, P.A., de Hoop, M.V., Beroza, G.C. (2019). Machine learning for data-driven discovery in solid Earth geoscience. Science 363, eaau0323.
  • Reichstein, M., Camps-Valls, G., Stevens, B., et al. (2019). Deep learning and process understanding for data-driven Earth-system science. Nature 566, 195–204.
  • Bishop, C.M. (2006). Pattern Recognition and Machine Learning, ch. 1. Springer.

This page is prerendered for SEO and accessibility. The interactive widgets above hydrate on JavaScript load.