Showing
1 changed file
with
1 additions
and
4 deletions
... | @@ -32,11 +32,8 @@ parser.add_argument("--out", help="Path to the output directory " | ... | @@ -32,11 +32,8 @@ parser.add_argument("--out", help="Path to the output directory " |
32 | parser.add_argument("--svcmodel", help="Path to custom pretrained svc model" | 32 | parser.add_argument("--svcmodel", help="Path to custom pretrained svc model" |
33 | "(default='./model_binClass/svm_model.paper.pkl')", default="model_binClass/svm_model.paper.pkl") | 33 | "(default='./model_binClass/svm_model.paper.pkl')", default="model_binClass/svm_model.paper.pkl") |
34 | parser.add_argument("--split", default=False, | 34 | parser.add_argument("--split", default=False, |
35 | - action="store_true", | 35 | + action="store_true", dest="split", |
36 | help="Automatic split training/test of input data ") | 36 | help="Automatic split training/test of input data ") |
37 | -# CMC: parser.add_argument("--split", default=False, | ||
38 | -# action="store_true", dest="split", | ||
39 | -# help="Automatic split training/test of input data ") | ||
40 | 37 | ||
41 | args = parser.parse_args() | 38 | args = parser.parse_args() |
42 | labels = {0: 'useless', 1: 'useful'} | 39 | labels = {0: 'useless', 1: 'useful'} | ... | ... |
-
Please register or login to post a comment