Cli
This module provides a command-line interface (CLI) for NePS.
compute_duration
#
compute_incumbents
#
Compute the list of incumbent trials based on the best objective_to_minimize.
Source code in neps/utils/cli.py
convert_timestamp
#
Convert a UNIX timestamp to a human-readable datetime string.
display_results
#
Display the results of the NePS run.
Source code in neps/utils/cli.py
dump_all_configs
#
Dump all configurations to the specified format.
Source code in neps/utils/cli.py
dump_incumbents
#
dump_incumbents(
csv_config_data_path: Path,
summary_csv_dir: Path,
dump_format: str,
incumbents_ids: List[str],
) -> None
Dump incumbent trials to the specified format.
Source code in neps/utils/cli.py
format_duration
#
Convert duration in seconds to a h:min:sec format.
Source code in neps/utils/cli.py
handle_report_config
#
handle_report_config(args: Namespace) -> None
Handles the report-config command which updates reports for trials in the NePS state.
Source code in neps/utils/cli.py
964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 |
|
info_config
#
info_config(args: Namespace) -> None
Handles the info-config command by providing information based on directory and id.
Source code in neps/utils/cli.py
init_config
#
init_config(args: Namespace) -> None
Creates a 'run_args' configuration YAML file template if it does not already exist.
Source code in neps/utils/cli.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 |
|
load_neps_errors
#
load_neps_errors(args: Namespace) -> None
Handles the 'errors' command by loading errors from the neps_state.
Source code in neps/utils/cli.py
load_neps_state
#
Load the NePS state with error handling.
Source code in neps/utils/cli.py
main
#
CLI entry point.
This function sets up the command-line interface (CLI) for NePS using argparse. It defines the available subcommands and their respective arguments.
Source code in neps/utils/cli.py
parse_kv_pairs
#
Parse a list of key=value strings into a dictionary with appropriate types.
Source code in neps/utils/cli.py
parse_time_end
#
Parses a UNIX timestamp or a human-readable time string and returns a UNIX timestamp.
Source code in neps/utils/cli.py
plot_incumbents
#
Plot the evolution of incumbent trials over the total number of trials.
Source code in neps/utils/cli.py
print_help
#
Prints help information for the NEPS CLI.
Source code in neps/utils/cli.py
results
#
results(args: Namespace) -> None
Handles the 'results' command by displaying incumbents, optionally plotting, and dumping results to files based on the specified options.
Source code in neps/utils/cli.py
run_optimization
#
run_optimization(args: Namespace) -> None
Collects arguments from the parser and runs the NePS optimization. Args: args (argparse.Namespace): Parsed command-line arguments.
Source code in neps/utils/cli.py
sample_config
#
sample_config(args: Namespace) -> None
Handles the sample-config command which samples configurations from the NePS state.
Source code in neps/utils/cli.py
status
#
status(args: Namespace) -> None
Handles the status command, providing a summary of the NEPS run.
validate_directory
#
Validates whether the given path exists and is a directory.
PARAMETER | DESCRIPTION |
---|---|
path
|
The path to validate.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
bool
|
True if valid, False otherwise.
TYPE:
|