(train_ds, valid_ds, bs)
| 666 | |
| 667 | |
| 668 | def get_data(train_ds, valid_ds, bs): |
| 669 | return ( |
| 670 | DataLoader(train_ds, batch_size=bs, shuffle=True), |
| 671 | DataLoader(valid_ds, batch_size=bs * 2), |
| 672 | ) |
| 673 | |
| 674 | ############################################################################### |
| 675 | # Now, our whole process of obtaining the data loaders and fitting the |