From 81431e0343f75c81fcdcaa791118e77fc03dbffd Mon Sep 17 00:00:00 2001 From: TannerGilbert Date: Thu, 27 Aug 2020 15:37:55 +0200 Subject: [PATCH] replaced couple with tuple in 06_multicat.ipynb --- 06_multicat.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/06_multicat.ipynb b/06_multicat.ipynb index fb22d64..85f9362 100644 --- a/06_multicat.ipynb +++ b/06_multicat.ipynb @@ -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 -} +} \ No newline at end of file