# HG changeset patch # User gdesjardins # Date 1305924780 14400 # Node ID 8c10bda4bb5fb6a451aa1e8af69103610ef09790 # Parent e7401822d596a38b74ca8d97775c5551b92b4b60 Configured default train/valid/test split for icml07.MNIST_rotated_background dataset. Defaults are the ones used by Hugo in the ICML07 paper and in all contracting auto-encoder papers. diff -r e7401822d596 -r 8c10bda4bb5f pylearn/datasets/icml07.py --- a/pylearn/datasets/icml07.py Wed May 18 22:15:42 2011 -0400 +++ b/pylearn/datasets/icml07.py Fri May 20 16:53:00 2011 -0400 @@ -10,7 +10,7 @@ class MNIST_rotated_background(object): - def __init__(self, n_train=62000, n_valid=0, n_test=0): + def __init__(self, n_train=10000, n_valid=2000, n_test=50000): basedir = os.path.join(data_root(), 'icml07data', 'npy')