comparison pylearn/datasets/nade.py @ 1467:b24ed2aa077e

name parameter for dataset needs to be a keyword arg. for compatibility with jobman
author gdesjardins
date Wed, 20 Apr 2011 16:55:18 -0400
parents 490616262500
children be4a49a65333
comparison
equal deleted inserted replaced
1466:4d6d6d4eab9e 1467:b24ed2aa077e
3 3
4 from pylearn.io.pmat import PMat 4 from pylearn.io.pmat import PMat
5 from pylearn.datasets.config import data_root # config 5 from pylearn.datasets.config import data_root # config
6 from pylearn.datasets.dataset import Dataset 6 from pylearn.datasets.dataset import Dataset
7 7
8 def load_dataset(name): 8 def load_dataset(name=None):
9 """ 9 """
10 Various datasets which were used in the following paper. 10 Various datasets which were used in the following paper.
11 The Neural Autoregressive Distribution Estimator 11 The Neural Autoregressive Distribution Estimator
12 Hugo Larochelle and Iain Murray, AISTATS 2011 12 Hugo Larochelle and Iain Murray, AISTATS 2011
13 13