Deep Learning, Ian Goodfellow, Yoshua Bengio, and Aaron Courville, 2016 (MIT Press) - A foundational textbook providing a comprehensive explanation of classification output units (softmax, sigmoid) and loss functions (cross-entropy, binary cross-entropy), which are fundamental to deep learning model training.
torch.nn.CrossEntropyLoss, PyTorch Core Team, 2024 - The official PyTorch documentation for the combined Softmax and Cross-Entropy Loss function, describing its usage and benefits for numerical stability in deep learning models.
torch.nn.BCEWithLogitsLoss, PyTorch Core Team, 2024 - The official PyTorch documentation for the combined Sigmoid and Binary Cross-Entropy Loss function, which is useful for multi-label and binary classification tasks, highlighting its numerical stability.