comparison deep/crbm/mnist_config.py.example @ 360:f37c0705649d

Problèmes de révisions hg... tentative de merger
author fsavard
date Thu, 22 Apr 2010 10:34:26 -0400
parents 969ad25e78cc
children 64fa85d68923
comparison
equal deleted inserted replaced
359:969ad25e78cc 360:f37c0705649d
52 DON'T add the renamed file to the repository, as others might use it 52 DON'T add the renamed file to the repository, as others might use it
53 without realizing it, with dire consequences. 53 without realizing it, with dire consequences.
54 ''' 54 '''
55 55
56 # change "sandbox" when you're ready 56 # change "sandbox" when you're ready
57 JOBDB = 'postgres://ift6266h10@gershwin/ift6266h10_sandbox_db/fsavard_mnistcrbm_exp1' 57 JOBDB = 'postgres://ift6266h10@gershwin/ift6266h10_sandbox_db/yourtablenamehere'
58 58
59 # Set this to True when you want to run cluster tests, ie. you want 59 # Set this to True when you want to run cluster tests, ie. you want
60 # to run on the cluster, many jobs, but want to reduce the training 60 # to run on the cluster, many jobs, but want to reduce the training
61 # set size and the number of epochs, so you know everything runs 61 # set size and the number of epochs, so you know everything runs
62 # fine on the cluster. 62 # fine on the cluster.
72 REDUCE_EVERY = 100 72 REDUCE_EVERY = 100
73 73
74 # print series to stdout too (otherwise just produce the HDF5 file) 74 # print series to stdout too (otherwise just produce the HDF5 file)
75 SERIES_STDOUT_TOO = False 75 SERIES_STDOUT_TOO = False
76 76
77 # every X minibatches, not every X examples 77 VISUALIZE_EVERY = 20000
78 VISUALIZE_EVERY = 1000
79 GIBBS_STEPS_IN_VIZ_CHAIN = 1000 78 GIBBS_STEPS_IN_VIZ_CHAIN = 1000
80 79
81 if TEST_CONFIG: 80 if TEST_CONFIG:
82 REDUCE_EVERY = 10 81 REDUCE_EVERY = 10
83 VISUALIZE_EVERY = 20 82 VISUALIZE_EVERY = 20