Replies: 1 comment 1 reply
-
Hi @mavaylon1 , Good question! For larger datasets, most of the time you'll be using a PyTorch DataLoader (so data be turned into batches, we talk about these later in the course). But for smaller datasets (like in section 01. PyTorch Workflow Fundamentals), the dataset is so small we don't need to turn it into batches. This way we can pass the entire dataset |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Most of the tutorials online show data being wrapped with a DataLoader. In the "01 Fundamentals" section, the data is stored in a tensor. How is this data iterated and loaded into the model? From my understanding the model takes one number at a time from the train X and y when training since we define only one weight and bias.
Beta Was this translation helpful? Give feedback.
All reactions