Deep Learning, Ian Goodfellow, Yoshua Bengio, and Aaron Courville, 2016 (MIT Press) - A comprehensive textbook covering the theoretical foundations of deep learning, including optimization, regularization, and model evaluation, which inform the interpretation of loss curves and metrics.
CS231n: Convolutional Neural Networks for Visual Recognition, Lecture Notes, Fei-Fei Li, Yunzhu Li, Ruohan Gao, 2023 (Stanford University) - Lecture notes offering practical advice on training neural networks, diagnosing common issues like overfitting and underfitting, and the role of monitoring with loss curves and validation metrics.
Training a classifier (PyTorch tutorial), PyTorch Documentation, 2024 - The official PyTorch tutorial demonstrates a standard training loop, showing how to calculate and track loss and accuracy for both training and validation sets.
TensorBoard: Scalar Dashboard, TensorFlow Documentation, 2024 (TensorFlow) - Official documentation for TensorBoard's scalar dashboard, explaining how to log and visualize scalar values like loss and metrics over time, essential for training monitoring.