-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_help.py
More file actions
13 lines (12 loc) · 829 Bytes
/
Copy path_help.py
File metadata and controls
13 lines (12 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
# TODO make more comprehensive
def main(cmd_list, config, detector):
print("clear/cls - clear the console output")
print("exit - stop the VLAE routine")
print("manual - basic instructions for running VLAE")
print("change-setting <setting> <new value> - changes a setting variable manually.")
print("get-setting <setting> - gets the value of a given setting.")
print("get-all-settings - gets all changable settings.")
print("add-segment <dir> - copy a segment into 'test' subfolder to run ink detetction on.")
print("rm-segment <name> - delete a segment from 'test' subfolder")
print("train - train the model with data configured by training_data setting. Must be a comma seperated list containing only 1, 2, or 3; NO REPEATS.")
print("eval - Run the model on data from 'test' subfolder.")