replaced couple with tuple in 06_multicat.ipynb

This commit is contained in:
TannerGilbert 2020-08-27 15:37:55 +02:00
parent 62ac21d085
commit 81431e0343

View File

@ -460,7 +460,7 @@
"As we have seen, PyTorch and fastai have two main classes for representing and accessing a training set or validation set:\n",
"\n",
"- `Dataset`:: A collection that returns a tuple of your independent and dependent variable for a single item\n",
"- `DataLoader`:: An iterator that provides a stream of mini-batches, where each mini-batch is a couple of a batch of independent variables and a batch of dependent variables"
"- `DataLoader`:: An iterator that provides a stream of mini-batches, where each mini-batch is a tuple of a batch of independent variables and a batch of dependent variables"
]
},
{
@ -2156,4 +2156,4 @@
},
"nbformat": 4,
"nbformat_minor": 2
}
}