comparison deep/convolutional_dae/scdae.py @ 335:5ddb1878dfbc

noisyness -> noise
author Arnaud Bergeron <abergeron@gmail.com>
date Thu, 15 Apr 2010 12:53:03 -0400
parents 6143b23e2610
children
comparison
equal deleted inserted replaced
334:6143b23e2610 335:5ddb1878dfbc
11 def __init__(self, filter_size, num_filt, num_in, subsampling, corruption, 11 def __init__(self, filter_size, num_filt, num_in, subsampling, corruption,
12 dtype): 12 dtype):
13 LayerStack.__init__(self, [ConvAutoencoder(filter_size=filter_size, 13 LayerStack.__init__(self, [ConvAutoencoder(filter_size=filter_size,
14 num_filt=num_filt, 14 num_filt=num_filt,
15 num_in=num_in, 15 num_in=num_in,
16 noisyness=corruption, 16 noise=corruption,
17 err=errors.cross_entropy, 17 err=errors.cross_entropy,
18 nlin=nlins.sigmoid, 18 nlin=nlins.sigmoid,
19 dtype=dtype), 19 dtype=dtype),
20 MaxPoolLayer(subsampling)]) 20 MaxPoolLayer(subsampling)])
21 21