Mercurial > ift6266
changeset 176:d6672a7daea5
Update comments in the dataset definition (you can't pass 0 as minibatch size).
author | Arnaud Bergeron <abergeron@gmail.com> |
---|---|
date | Sat, 27 Feb 2010 14:10:14 -0500 |
parents | 224321bf043a |
children | be714ac9bcbd |
files | datasets/dataset.py |
diffstat | 1 files changed, 3 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/datasets/dataset.py Sat Feb 27 13:56:14 2010 -0500 +++ b/datasets/dataset.py Sat Feb 27 14:10:14 2010 -0500 @@ -6,8 +6,7 @@ Returns an iterator over the test examples. Parameters - batchsize (int) -- the size of the minibatches, 0 means - return the whole set at once. + batchsize (int) -- the size of the minibatches bufsize (int, optional) -- the size of the in-memory buffer, 0 to disable. """ @@ -18,8 +17,7 @@ Returns an iterator over the training examples. Parameters - batchsize (int) -- the size of the minibatches, 0 means - return the whole set at once. + batchsize (int) -- the size of the minibatches bufsize (int, optional) -- the size of the in-memory buffer, 0 to disable. """ @@ -30,8 +28,7 @@ Returns an iterator over the validation examples. Parameters - batchsize (int) -- the size of the minibatches, 0 means - return the whole set at once. + batchsize (int) -- the size of the minibatches bufsize (int, optional) -- the size of the in-memory buffer, 0 to disable. """