Mercurial > pylearn
changeset 511:58810b63292b
fixed mnist path
author | James Bergstra <bergstrj@iro.umontreal.ca> |
---|---|
date | Thu, 30 Oct 2008 23:27:27 -0400 |
parents | 919125098a3b |
children | a4d34dad3083 |
files | datasets/MNIST.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/datasets/MNIST.py Thu Oct 30 18:42:16 2008 -0400 +++ b/datasets/MNIST.py Thu Oct 30 23:27:27 2008 -0400 @@ -17,7 +17,7 @@ is the label of the i'th row of x. """ - path = os.path.join(data_root(), 'mnist','mnist.amat') if path is None else path + path = os.path.join(data_root(), 'mnist','mnist_with_header.amat') if path is None else path dat = AMat(path=path, head=n)