Skip to content

Commit

Permalink
FIX: wrong default for debug in icdl experiment.
Browse files Browse the repository at this point in the history
  • Loading branch information
omangin committed Oct 25, 2013
1 parent 4c70b84 commit a0f1eb1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions experiments/icdl2013.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,13 @@
'acorns_speaker': 0,
'motion_coef': 1., # Data normalization
'sound_coef': .0008, # Data normalization
#'language_coef': 50,
'iter_train': 50,
'iter_test': 50,
'k': 50,
}
LOGGER.store_global('params', PARAMS)

DEBUG = True
DEBUG = False
if len(sys.argv) > 1 and sys.argv[1] == '--debug':
DEBUG = True
sys.argv.pop(1)
Expand Down

0 comments on commit a0f1eb1

Please sign in to comment.