Showing
1 changed file
with
4 additions
and
1 deletions
... | @@ -32,8 +32,11 @@ parser.add_argument("--out", help="Path to the output directory " | ... | @@ -32,8 +32,11 @@ 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", dest="split", | 35 | + action="store_true", |
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 ") | ||
37 | 40 | ||
38 | args = parser.parse_args() | 41 | args = parser.parse_args() |
39 | labels = {0: 'useless', 1: 'useful'} | 42 | labels = {0: 'useless', 1: 'useful'} | ... | ... |
-
Please register or login to post a comment