parser.add_argument('--seeds',nargs='+',type=int,default=None,help='Specific a list of seeds instead of generate them randomly')
parser.add_argument('--subsets_used',nargs='+',type=str,default=DEFAULT_SUBSETS_USED,help='train,dev: forest on train, OMP on dev. train+dev,train+dev: both forest and OMP on train+dev. train,train+dev: forest on train+dev and OMP on dev.')
parser.add_argument('--disable_progress',action='store_true',default=DEFAULT_DISABLE_PROGRESS,help='Disable the progress bars.')
parser.add_argument('--normalize_weights',action='store_true',default=DEFAULT_normalize_weights,help='Divide the predictions by the weights sum.')