Command line interface¶
In addition to the recommended use of pyradigm via the API, there are use cases for command line usage.
For example, it’s convenient to quickly display info about pyradigm’s MLDatasets already saved to disk, without you having to write some code. Sometimes, you may even want to simply merge two or more such MLDatasets (combine disjoint feature sets, or add more classes to the dataset). This interface would help you with such use cases.
usage: pyradigm [-h] [-m] [-i] [-a ADD_PATH_LIST [ADD_PATH_LIST ...]]
[-o OUT_PATH]
[path_list [path_list ...]]
Positional Arguments¶
- path_list
List of paths to display info about.
Named Arguments¶
- -m, --meta
Prints the meta data (subject_id,class).
- -i, --info
Prints summary info (classes, #samples, #features).
Options for multiple datasets¶
- -a, --add
List of MLDatasets to combine
- -o, --out_path
Output path to save the resulting dataset.