dataset ... (fix)
This commit is contained in:
parent
142491cf5b
commit
84b3e6c048
|
@ -12,7 +12,7 @@ from data.params import SYS_ARGS
|
|||
|
||||
#
|
||||
# The configuration array is now loaded and we will execute the pipe line as follows
|
||||
DATASET='combined20190510'
|
||||
DATASET='combined20191004v2_deid'
|
||||
|
||||
class Components :
|
||||
|
||||
|
@ -233,11 +233,12 @@ if __name__ == '__main__' :
|
|||
index = int(SYS_ARGS['index']) if 'index' in SYS_ARGS else 0
|
||||
|
||||
args = (PIPELINE[index])
|
||||
args['dataset'] = 'combined20190510'
|
||||
|
||||
args = dict(args,**SYS_ARGS)
|
||||
args['max_rows'] = int(args['max_rows']) if 'max_rows' in args else 3
|
||||
args['part_size']= int(args['part_size']) if 'part_size' in args else 3
|
||||
|
||||
if 'dataset' not in args :
|
||||
args['dataset'] = 'combined20191004v2_deid'
|
||||
|
||||
#
|
||||
# @TODO:
|
||||
|
|
Loading…
Reference in New Issue