Merge pull request #232 from TannerGilbert/#229-replace-couple-with-tuple-in-06-multicat

replaced couple with tuple in 06_multicat.ipynb
This commit is contained in:
Jeremy Howard
2020-09-03 10:11:22 -07:00
committed by GitHub

View File

@@ -472,7 +472,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"
]
},
{
@@ -2193,4 +2193,4 @@
},
"nbformat": 4,
"nbformat_minor": 2
}
}