So as I was programming and skimming through the pytorch docs, I stumbled across DataLoader. I learnt a fair bit and continued researching, and then saw a comment on a youtube video covering it, stating that DataLoader actually outputs a list instead of a tensor.
I then used the type() on the iterable data and learnt that this was true, could anyone please help me understand why the DataLoader outputs a list instead of a tensor.