diff options
author | jvech <jmvalenciae@unal.edu.co> | 2024-08-07 10:06:35 -0500 |
---|---|---|
committer | jvech <jmvalenciae@unal.edu.co> | 2024-08-07 10:06:35 -0500 |
commit | 65926438256c1ed46993e1c8611597af5a9c23f1 (patch) | |
tree | 10ab13854190156bc25bd7586256fe8b224e2613 /src/util.c | |
parent | ebd66e65bf18574fa8905d7b0ae3fbb85bfc9e06 (diff) |
add: CLI improvements and small documentation updates
Things done:
* config path should search config file in the following order: cli
option, environment, xdg_path
* Implement a retrain command.
* when you require more keys than the ones available in the input,
stop the program.
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -91,7 +91,7 @@ void usage(int exit_code) { FILE *fp = (!exit_code) ? stdout : stderr; fprintf(fp, - "Usage: ml train [Options] FILE\n" + "Usage: ml [re]train [Options] FILE\n" " or: ml predict [-Ohv] [-f FORMAT] [-o FILE] [-p INT] FILE\n" "\n" "Options:\n" |