Deep Residual Learning for Image Recognition, Kaiming He, Xiangyu Zhang, Shaoqing Ren, Jian Sun, 2016Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR) (IEEE)DOI: 10.1109/CVPR.2016.90 - Introduces the residual learning framework and the ResNet architecture, fundamental to the residual block implementation discussed.
torch.nn - PyTorch documentation, PyTorch contributors, 2024 (PyTorch Foundation) - Official documentation for PyTorch's neural network module, helpful for creating custom layers and models shown in the PyTorch examples.
Custom layers and models with Keras, fchollet, 2024 - Official TensorFlow/Keras guide on how to implement custom layers and models, directly applicable to the Keras implementation examples.