torch.utils.data.DataLoader, PyTorch Contributors, 2025 - Official documentation for PyTorch's DataLoader, explaining its parameters and usage for efficient batching, shuffling, and parallel data loading.
torch.utils.data.Dataset, PyTorch Contributors, 2025 (PyTorch Foundation) - Official documentation for PyTorch's Dataset class, which serves as the base for custom datasets consumed by DataLoader.
Deep Learning with PyTorch, Eli Stevens, Luca Antiga, and Thomas Viehmann, 2020 (Manning Publications) - A comprehensive guide to PyTorch, providing a practical understanding of building and training deep learning models, including data handling with Dataset and DataLoader.
Data Loading and Processing Tutorial, Sasank Chilamkurthy, 2024 (PyTorch Foundation) - An official PyTorch tutorial that demonstrates the usage of Dataset and DataLoader for preparing data pipelines, covering common transformations and efficiency considerations.