changeset 39:c682c6e9bf93

Minor edits
author bengioy@esprit.iro.umontreal.ca
date Thu, 24 Apr 2008 14:46:10 -0400
parents d637ad8f7352
children 88fd1cce08b9
files dataset.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/dataset.py	Thu Apr 24 13:25:39 2008 -0400
+++ b/dataset.py	Thu Apr 24 14:46:10 2008 -0400
@@ -323,7 +323,8 @@
         dataset[i:j:s] returns the subdataset with examples i,i+2,i+4...,j-2.
         dataset[[i1,i2,..,in]] returns the subdataset with examples i1,i2,...,in.
 
-        Note that some stream datasets may be unable to implement slicing/indexing
+        Note that some stream datasets may be unable to implement random access, i.e.
+        arbitrary slicing/indexing
         because they can only iterate through examples one or a minibatch at a time
         and do not actually store or keep past (or future) examples.
         """