comparison deep/convolutional_dae/scdae.py @ 290:518589bfee55

Add commas, since that way it's not a syntax error anymore.
author Arnaud Bergeron <abergeron@gmail.com>
date Fri, 26 Mar 2010 17:35:23 -0400
parents 80ee63c3e749
children 8108d271c30c
comparison
equal deleted inserted replaced
289:a50bc7effab3 290:518589bfee55
169 series['recons_error'] = AccumulatorSeriesWrapper( 169 series['recons_error'] = AccumulatorSeriesWrapper(
170 base_series=ErrorSeries(error_name='reconstruction_error', 170 base_series=ErrorSeries(error_name='reconstruction_error',
171 table_name='reconstruction_error', 171 table_name='reconstruction_error',
172 hdf5_file=h5f, 172 hdf5_file=h5f,
173 index_names=('layer', 'epoch'), 173 index_names=('layer', 'epoch'),
174 title="Reconstruction error (mse)") 174 title="Reconstruction error (mse)"),
175 reduce_every=100) 175 reduce_every=100)
176 176
177 series['training_err'] = AccumulatorSeriesWrapper( 177 series['training_err'] = AccumulatorSeriesWrapper(
178 base_series=ErrorSeries(error_name='training_error', 178 base_series=ErrorSeries(error_name='training_error',
179 table_name='training_error' 179 table_name='training_error',
180 hdf5_file=h5f, 180 hdf5_file=h5f,
181 index_names=('iter',), 181 index_names=('iter',),
182 titles='Training error (nll)') 182 titles='Training error (nll)'),
183 reduce_every=100) 183 reduce_every=100)
184 184
185 series['valid_err'] = ErrorSeries(error_name='valid_error', 185 series['valid_err'] = ErrorSeries(error_name='valid_error',
186 table_name='valid_error' 186 table_name='valid_error',
187 hdf5_file=h5f, 187 hdf5_file=h5f,
188 index_names=('iter',), 188 index_names=('iter',),
189 titles='Validation error (class)') 189 titles='Validation error (class)')
190 190
191 series['test_err'] = ErrorSeries(error_name='test_error', 191 series['test_err'] = ErrorSeries(error_name='test_error',
192 table_name='test_error' 192 table_name='test_error',
193 hdf5_file=h5f, 193 hdf5_file=h5f,
194 index_names=('iter',), 194 index_names=('iter',),
195 titles='Test error (class)') 195 titles='Test error (class)')
196 196
197 def run_exp(state, channel): 197 def run_exp(state, channel):