update
add_core_model_to_fun_control(fun_control, core_model, hyper_dict=None, filename=None)
¶
Add the core model to the function control dictionary. It updates the keys “core_model”, “core_model_hyper_dict”, “var_type”, “var_name” in the fun_control dictionary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fun_control |
dict
|
The fun_control dictionary. |
required |
core_model |
class
|
The core model. |
required |
hyper_dict |
dict
|
The hyper parameter dictionary. Optional. Default is None. If no hyper_dict is provided, the function will try to load the hyper_dict from the file specified by filename. |
None
|
filename |
str
|
The name of the json file that contains the hyper parameter dictionary. Optional. Default is None. If no filename is provided, the function will try to load the hyper_dict from the hyper_dict dictionary. |
None
|
Returns:
Type | Description |
---|---|
dict
|
The updated fun_control dictionary. |
Notes
The function adds the following keys to the fun_control dictionary: “core_model”: The core model. “core_model_hyper_dict”: The hyper parameter dictionary for the core model. “core_model_hyper_dict_default”: The hyper parameter dictionary for the core model. “var_type”: A list of variable types. “var_name”: A list of variable names. The original hyperparameters of the core model are stored in the “core_model_hyper_dict_default” key. These remain unmodified, while the “core_model_hyper_dict” key is modified during the tuning process.
Examples:
>>> from spotpython.light.regression.netlightregression import NetLightRegression
from spotpython.hyperdict.light_hyper_dict import LightHyperDict
from spotpython.hyperparameters.values import add_core_model_to_fun_control
add_core_model_to_fun_control(fun_control=fun_control,
core_model=NetLightRegression,
hyper_dict=LightHyperDict)
# or, if a user wants to use a custom hyper_dict:
>>> from spotpython.light.regression.netlightregression import NetLightRegression
from spotpython.hyperparameters.values import add_core_model_to_fun_control
add_core_model_to_fun_control(fun_control=fun_control,
core_model=NetLightRegression,
filename="./hyperdict/user_hyper_dict.json")
Source code in spotpython/hyperparameters/update.py
729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 |
|
assign_values(X, var_list)
¶
This function takes an np.array X and a list of variable names as input arguments and returns a dictionary where the keys are the variable names and the values are assigned from X.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
array
|
A 2D numpy array where each column represents a variable. |
required |
var_list |
list
|
A list of strings representing variable names. |
required |
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
A dictionary where keys are variable names and values are assigned from X. |
Examples:
>>> import numpy as np
>>> from spotpython.hyperparameters.values import assign_values
>>> X = np.array([[1, 2], [3, 4], [5, 6]])
>>> var_list = ['a', 'b']
>>> result = assign_values(X, var_list)
>>> print(result)
{'a': array([1, 3, 5]), 'b': array([2, 4, 6])}
Source code in spotpython/hyperparameters/update.py
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
|
convert_keys(d, var_type)
¶
Convert values in a dictionary to integers based on a list of variable types.
This function takes a dictionary d
and a list of variable types var_type
as arguments.
For each key in the dictionary,
if the corresponding entry in var_type
is not equal to "num"
,
the value associated with that key is converted to an integer.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
d |
dict
|
The input dictionary. |
required |
var_type |
list
|
A list of variable types. If the entry is not |
required |
Returns:
Name | Type | Description |
---|---|---|
dict |
Dict[str, Union[int, float]]
|
The modified dictionary with values converted to integers based on |
Examples:
>>> from spotpython.hyperparameters.values import convert_keys
>>> d = {'a': '1.1', 'b': '2', 'c': '3.1'}
>>> var_type = ["int", "num", "int"]
>>> convert_keys(d, var_type)
{'a': 1, 'b': '2', 'c': 3}
Source code in spotpython/hyperparameters/update.py
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 |
|
create_model(config, fun_control, **kwargs)
¶
Creates a model for the given configuration and control parameters.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config |
dict
|
dictionary containing the configuration for the hyperparameter tuning. |
required |
fun_control |
dict
|
dictionary containing control parameters for the hyperparameter tuning. |
required |
**kwargs |
Any
|
additional keyword arguments. |
{}
|
Returns:
Type | Description |
---|---|
object
|
model object. |
Source code in spotpython/hyperparameters/update.py
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 |
|
generate_one_config_from_var_dict(var_dict, fun_control, default=False)
¶
Generate one configuration from a dictionary of variables (as a generator).
This function takes a dictionary of variables as input arguments and returns a generator that yields dictionaries with the values from the arrays in the input dictionary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
var_dict |
dict
|
A dictionary where keys are variable names and values are numpy arrays. |
required |
fun_control |
dict
|
A dictionary which (at least) has an entry with the following key: “var_type” (list): A list of variable types. If the entry is not “num” the corresponding value will be converted to the type “int”. |
required |
default |
bool
|
A boolean value indicating whether to use the default values from fun_control. |
False
|
Returns:
Type | Description |
---|---|
Generator[Dict[str, Union[int, float]], None, None]
|
Generator[dict]: A generator that yields dictionaries with the values from the arrays in the input dictionary. |
Examples:
>>> import numpy as np
>>> from spotpython.hyperparameters.values import generate_one_config_from_var_dict
>>> var_dict = {'a': np.array([1, 3, 5]), 'b': np.array([2, 4, 6])}
>>> fun_control = {"var_type": ["int", "num"]}
>>> list(generate_one_config_from_var_dict(var_dict, fun_control))
[{'a': 1, 'b': 2}, {'a': 3, 'b': 4}, {'a': 5, 'b': 6}]
Source code in spotpython/hyperparameters/update.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
|
get_bound_values(fun_control, bound, as_list=False)
¶
Generate a list or array from a dictionary. This function takes the values from the keys “bound” in the fun_control[“core_model_hyper_dict”] dictionary and returns a list or array of the values in the same order as the keys in the dictionary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fun_control |
dict
|
A dictionary containing a key “core_model_hyper_dict” which is a dictionary with keys that have either an “upper” or “lower” value. |
required |
bound |
str
|
Either “upper” or “lower”, indicating which value to extract from the inner dictionary. |
required |
as_list |
bool
|
If True, return a list. If False, return a numpy array. Default is False. |
False
|
Returns:
Type | Description |
---|---|
Union[List, ndarray]
|
list or np.ndarray: A list or array of the extracted values. |
Raises:
Type | Description |
---|---|
ValueError
|
If bound is not “upper” or “lower”. |
Examples:
>>> from spotpython.hyperparameters.values import get_bound_values
>>> fun_control = {"core_model_hyper_dict": {"a": {"upper": 1}, "b": {"upper": 2}}}
>>> get_bound_values(fun_control, "upper", as_list=True)
[1, 2]
Source code in spotpython/hyperparameters/update.py
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 |
|
get_control_key_value(control_dict=None, key=None)
¶
This function gets the key value pair from the control_dict dictionary. If the key does not exist, return None. If the control_dict dictionary is None, return None.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
control_dict |
dict
|
control_dict dictionary |
None
|
key |
str
|
key |
None
|
Returns:
Name | Type | Description |
---|---|---|
value |
Any
|
value |
Examples:
>>> from spotpython.utils.init import fun_control_init
from spotpython.hyperparameters.values import get_control_key_value
control_dict = fun_control_init()
get_control_key_value(control_dict=control_dict,
key="key")
"value"
Source code in spotpython/hyperparameters/update.py
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 |
|
get_core_model_parameter_type_from_var_name(fun_control, var_name)
¶
Extracts the core_model_parameter_type value from a dictionary for a specified key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fun_control |
dict
|
The dictionary containing the information. |
required |
var_name |
str
|
The key for which to extract the core_model_parameter_type value. |
required |
Returns:
Type | Description |
---|---|
str
|
The core_model_parameter_type value if available, else None. |
Source code in spotpython/hyperparameters/update.py
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 |
|
get_default_hyperparameters_as_array(fun_control)
¶
Get the default hyper parameters as array.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fun_control |
dict
|
The function control dictionary. |
required |
Returns:
Type | Description |
---|---|
array
|
The default hyper parameters as array. |
Examples:
>>> from river.tree import HoeffdingAdaptiveTreeRegressor
from spotriver.data.river_hyper_dict import RiverHyperDict
from spotpython.hyperparameters.values import (
get_default_hyperparameters_as_array,
add_core_model_to_fun_control)
fun_control = {}
add_core_model_to_fun_control(core_model=HoeffdingAdaptiveTreeRegressor,
fun_control=func_control,
hyper_dict=RiverHyperDict,
filename=None)
get_default_hyperparameters_as_array(fun_control)
array([0, 0, 0, 0, 0])
Source code in spotpython/hyperparameters/update.py
928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 |
|
get_default_values(fun_control)
¶
Get the values from the “default” keys from the dictionary fun_control as a dict. If the key of the value has as “type” the value “int” or “float”, convert the value to the corresponding type.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fun_control |
dict
|
dictionary with levels and types |
required |
Returns:
Name | Type | Description |
---|---|---|
new_dict |
dict
|
dictionary with default values |
Examples:
>>> from spotpython.hyperparameters.values import get_default_values
d = {"core_model_hyper_dict":{
"leaf_prediction": {
"levels": ["mean", "model", "adaptive"],
"type": "factor",
"default": "mean",
"core_model_parameter_type": "str"},
"leaf_model": {
"levels": ["linear_model.LinearRegression", "linear_model.PARegressor", "linear_model.Perceptron"],
"type": "factor",
"default": "LinearRegression",
"core_model_parameter_type": "instance"},
"splitter": {
"levels": ["EBSTSplitter", "TEBSTSplitter", "QOSplitter"],
"type": "factor",
"default": "EBSTSplitter",
"core_model_parameter_type": "instance()"},
"binary_split": {
"levels": [0, 1],
"type": "factor",
"default": 0,
"core_model_parameter_type": "bool"},
"stop_mem_management": {
"levels": [0, 1],
"type": "factor",
"default": 0,
"core_model_parameter_type": "bool"}}}
get_default_values(d)
{'leaf_prediction': 'mean',
'leaf_model': 'linear_model.LinearRegression',
'splitter': 'EBSTSplitter',
'binary_split': 0,
'stop_mem_management': 0}
Source code in spotpython/hyperparameters/update.py
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 |
|
get_dict_with_levels_and_types(fun_control, v, default=False)
¶
Get dictionary with levels and types. The function maps the numerical output of the hyperparameter optimization to the corresponding levels of the hyperparameter needed by the core model, i.e., the tuned algorithm. The function takes the dictionaries fun_control and v and returns a new dictionary with the same keys as v but with the values of the levels of the keys from fun_control. If the key value in the dictionary is 0, it takes the first value from the list, if it is 1, it takes the second and so on. If a key is not in fun_control, it takes the key from v. If the core_model_parameter_type value is instance, it returns the class of the value from the module via getattr(“class”, value).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fun_control |
Dict[str, Any]
|
A dictionary containing information about the core model hyperparameters. |
required |
v |
Dict[str, Any]
|
A dictionary containing the numerical output of the hyperparameter optimization. |
required |
default |
bool
|
A boolean value indicating whether to use the default values from fun_control. |
False
|
Returns:
Type | Description |
---|---|
Dict[str, Any]
|
Dict[str, Any]: A new dictionary with the same keys as v but with the values of the levels of the keys from fun_control. |
Examples:
>>> fun_control = {
... "core_model_hyper_dict": {
... "leaf_prediction": {
... "levels": ["mean", "model", "adaptive"],
... "type": "factor",
... "default": "mean",
... "core_model_parameter_type": "str"
... },
... "leaf_model": {
... "levels": [
... "linear_model.LinearRegression",
... "linear_model.PARegressor",
... "linear_model.Perceptron"
... ],
... "type": "factor",
... "default": "LinearRegression",
... "core_model_parameter_type": "instance"
... },
... "splitter": {
... "levels": ["EBSTSplitter", "TEBSTSplitter", "QOSplitter"],
... "type": "factor",
... "default": "EBSTSplitter",
... "core_model_parameter_type": "instance()"
... },
... "binary_split": {
... "levels": [0, 1],
... "type": "factor",
... "default": 0,
... "core_model_parameter_type": "bool"
... },
... "stop_mem_management": {
... "levels": [0, 1],
... "type": "factor",
... "default": 0,
... "core_model_parameter_type": "bool"
... }
... }
... }
>>> v = {
... 'grace_period': 200,
... 'max_depth': 10,
... 'delta': 1e-07,
... 'tau': 0.05,
... 'leaf_prediction': 0,
... 'leaf_model': 0,
... 'model_selector_decay': 0.95,
... 'splitter': 1,
... 'min_samples_split': 9,
... 'binary_split': 0,
... 'max_size': 500.0
... }
>>> get_dict_with_levels_and_types(fun_control, v)
{
'grace_period': 200,
'max_depth': 10,
'delta': 1e-07,
'tau': 0.05,
'leaf_prediction': 'mean',
'leaf_model': linear_model.LinearRegression,
'model_selector_decay': 0.95,
'splitter': TEBSTSplitter,
'min_samples_split': 9,
'binary_split': False,
'max_size': 500.0
}
Source code in spotpython/hyperparameters/update.py
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 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 |
|
get_ith_hyperparameter_name_from_fun_control(fun_control, key, i)
¶
Get the ith hyperparameter name from the fun_control dictionary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fun_control |
dict
|
fun_control dictionary |
required |
key |
str
|
key |
required |
i |
int
|
index |
required |
Returns:
Type | Description |
---|---|
str
|
hyperparameter name |
Examples:
>>> from spotpython.utils.device import getDevice
from spotpython.utils.init import fun_control_init
from spotpython.utils.file import get_experiment_name
import numpy as np
from spotpython.data.diabetes import Diabetes
from spotpython.light.regression.netlightregression import NetLightRegression
from spotpython.hyperdict.light_hyper_dict import LightHyperDict
from spotpython.hyperparameters.values import add_core_model_to_fun_control
from spotpython.hyperparameters.values import get_ith_hyperparameter_name_from_fun_control
from spotpython.hyperparameters.values import set_control_key_value
from spotpython.hyperparameters.values import set_control_hyperparameter_value
experiment_name = get_experiment_name(prefix="000")
fun_control = fun_control_init(
_L_in=10,
_L_out=1,
TENSORBOARD_CLEAN=True,
device=getDevice(),
enable_progress_bar=False,
fun_evals=15,
log_level=10,
max_time=1,
num_workers=0,
show_progress=True,
tolerance_x=np.sqrt(np.spacing(1)),
)
dataset = Diabetes()
set_control_key_value(control_dict=fun_control,
key="data_set",
value=dataset,
replace=True)
add_core_model_to_fun_control(core_model=NetLightRegression,
fun_control=fun_control,
hyper_dict=LightHyperDict)
set_control_hyperparameter_value(fun_control, "l1", [3,8])
set_control_hyperparameter_value(fun_control, "optimizer", ["Adam", "AdamW", "Adamax", "NAdam"])
get_ith_hyperparameter_name_from_fun_control(fun_control, key="optimizer", i=0)
Adam
Source code in spotpython/hyperparameters/update.py
1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 |
|
get_one_config_from_X(X, fun_control=None)
¶
Get one config from X.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
array
|
The array with the hyper parameter values. |
required |
fun_control |
dict
|
The function control dictionary. |
None
|
Returns:
Type | Description |
---|---|
dict
|
The config dictionary. |
Examples:
>>> from river.tree import HoeffdingAdaptiveTreeRegressor
from spotriver.data.river_hyper_dict import RiverHyperDict
fun_control = {}
add_core_model_to_fun_control(core_model=HoeffdingAdaptiveTreeRegressor,
fun_control=func_control,
hyper_dict=RiverHyperDict,
filename=None)
X = np.array([0, 0, 0, 0, 0])
get_one_config_from_X(X, fun_control)
{'leaf_prediction': 'mean',
'leaf_model': 'NBAdaptive',
'splitter': 'HoeffdingAdaptiveTreeSplitter',
'binary_split': 'info_gain',
'stop_mem_management': False}
Source code in spotpython/hyperparameters/update.py
828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 |
|
get_one_core_model_from_X(X, fun_control=None, default=False)
¶
Get one core model from X.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
array
|
The array with the hyper parameter values. |
required |
fun_control |
dict
|
The function control dictionary. |
None
|
default |
bool
|
A boolean value indicating whether to use the default values from fun_control. |
False
|
Returns:
Type | Description |
---|---|
class
|
The core model. |
Examples:
>>> from river.tree import HoeffdingAdaptiveTreeRegressor
from spotriver.data.river_hyper_dict import RiverHyperDict
fun_control = {}
add_core_model_to_fun_control(core_model=HoeffdingAdaptiveTreeRegressor,
fun_control=fun_control,
hyper_dict=RiverHyperDict,
filename=None)
X = np.array([0, 0, 0, 0, 0])
get_one_core_model_from_X(X, fun_control)
HoeffdingAdaptiveTreeRegressor()
Source code in spotpython/hyperparameters/update.py
790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 |
|
get_one_river_model_from_X(X, fun_control=None)
¶
Get one river model from X.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
array
|
The array with the hyper parameter values. |
required |
fun_control |
dict
|
The function control dictionary. |
None
|
Returns:
Type | Description |
---|---|
class
|
The river model. |
Examples:
>>> from river.tree import HoeffdingAdaptiveTreeRegressor
from spotriver.data.river_hyper_dict import RiverHyperDict
fun_control = {}
add_core_model_to_fun_control(core_model=HoeffdingAdaptiveTreeRegressor,
fun_control=func_control,
hyper_dict=RiverHyperDict,
filename=None)
X = np.array([0, 0, 0, 0, 0])
get_one_river_model_from_X(X, fun_control)
HoeffdingAdaptiveTreeRegressor()
Source code in spotpython/hyperparameters/update.py
895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 |
|
get_one_sklearn_model_from_X(X, fun_control=None)
¶
Get one sklearn model from X.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
array
|
The array with the hyper parameter values. |
required |
fun_control |
dict
|
The function control dictionary. |
None
|
Returns:
Type | Description |
---|---|
class
|
The sklearn model. |
Examples:
>>> from sklearn.linear_model import LinearRegression
from spotriver.data.sklearn_hyper_dict import SklearnHyperDict
fun_control = {}
add_core_model_to_fun_control(core_model=LinearRegression,
fun_control=func_control,
hyper_dict=SklearnHyperDict,
filename=None)
X = np.array([0, 0, 0, 0, 0])
get_one_sklearn_model_from_X(X, fun_control)
LinearRegression()
Source code in spotpython/hyperparameters/update.py
862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 |
|
get_transform(fun_control)
¶
Get the transformations of the values from the dictionary fun_control as a list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fun_control |
dict
|
dictionary with levels and types |
required |
Returns:
Type | Description |
---|---|
list
|
list with transformations |
Examples:
>>> from spotpython.hyperparameters.values import get_transform
d = {"core_model_hyper_dict":{
"leaf_prediction": {
"levels": ["mean", "model", "adaptive"],
"type": "factor",
"default": "mean",
"transform": "None",
"core_model_parameter_type": "str"},
"leaf_model": {
"levels": ["linear_model.LinearRegression", "linear_model.PARegressor", "linear_model.Perceptron"],
"type": "factor",
"default": "LinearRegression",
"transform": "None",
"core_model_parameter_type": "instance"},
"splitter": {
"levels": ["EBSTSplitter", "TEBSTSplitter", "QOSplitter"],
"type": "factor",
"default": "EBSTSplitter",
"transform": "None",
"core_model_parameter_type": "instance()"},
"binary_split": {
"levels": [0, 1],
"type": "factor",
"default": 0,
"transform": "None",
"core_model_parameter_type": "bool"},
"stop_mem_management": { "levels": [0, 1],
"type": "factor",
"default": 0,
"transform": "None",
"core_model_parameter_type": "bool"}}}
get_transform(d)
['None', 'None', 'None', 'None', 'None']
Source code in spotpython/hyperparameters/update.py
473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 |
|
get_tuned_architecture(spot_tuner, fun_control, force_minX=False)
¶
Returns the tuned architecture. If the spot tuner has noise, it returns the architecture with the lowest mean (.min_mean_X), otherwise it returns the architecture with the lowest value (.min_X).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
spot_tuner |
object
|
spot tuner object. |
required |
fun_control |
dict
|
dictionary containing control parameters for the hyperparameter tuning. |
required |
force_minX |
bool
|
If True, return the architecture with the lowest value (.min_X). |
False
|
Returns:
Type | Description |
---|---|
dict
|
dictionary containing the tuned architecture. |
Source code in spotpython/hyperparameters/update.py
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 |
|
get_tuned_hyperparameters(spot_tuner, fun_control=None)
¶
Get the tuned hyperparameters from the spot tuner.
This is just a wrapper function for the spot get_tuned_hyperparameters
method.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
spot_tuner |
object
|
spot tuner object. |
required |
fun_control |
dict
|
dictionary containing control parameters for the hyperparameter tuning. Optional. Default is None. |
None
|
Returns:
Type | Description |
---|---|
dict
|
dictionary containing the tuned hyperparameters. |
Examples:
>>> from spotpython.utils.device import getDevice
from math import inf
from spotpython.utils.init import fun_control_init
import numpy as np
from spotpython.hyperparameters.values import set_control_key_value
from spotpython.data.diabetes import Diabetes
from spotpython.hyperparameters.values import get_tuned_hyperparameters
MAX_TIME = 1
FUN_EVALS = 10
INIT_SIZE = 5
WORKERS = 0
PREFIX="037"
DEVICE = getDevice()
DEVICES = 1
TEST_SIZE = 0.4
TORCH_METRIC = "mean_squared_error"
dataset = Diabetes()
fun_control = fun_control_init(
_L_in=10,
_L_out=1,
_torchmetric=TORCH_METRIC,
PREFIX=PREFIX,
TENSORBOARD_CLEAN=True,
data_set=dataset,
device=DEVICE,
enable_progress_bar=False,
fun_evals=FUN_EVALS,
log_level=50,
max_time=MAX_TIME,
num_workers=WORKERS,
show_progress=True,
test_size=TEST_SIZE,
tolerance_x=np.sqrt(np.spacing(1)),
)
from spotpython.light.regression.netlightregression import NetLightRegression
from spotpython.hyperdict.light_hyper_dict import LightHyperDict
from spotpython.hyperparameters.values import add_core_model_to_fun_control
add_core_model_to_fun_control(fun_control=fun_control,
core_model=NetLightRegression,
hyper_dict=LightHyperDict)
from spotpython.hyperparameters.values import set_control_hyperparameter_value
set_control_hyperparameter_value(fun_control, "l1", [7, 8])
set_control_hyperparameter_value(fun_control, "epochs", [3, 5])
set_control_hyperparameter_value(fun_control, "batch_size", [4, 5])
set_control_hyperparameter_value(fun_control, "optimizer", [
"Adam",
"RAdam",
])
set_control_hyperparameter_value(fun_control, "dropout_prob", [0.01, 0.1])
set_control_hyperparameter_value(fun_control, "lr_mult", [0.5, 5.0])
set_control_hyperparameter_value(fun_control, "patience", [2, 3])
set_control_hyperparameter_value(fun_control, "act_fn",[
"ReLU",
"LeakyReLU"
] )
from spotpython.utils.init import design_control_init, surrogate_control_init
design_control = design_control_init(init_size=INIT_SIZE)
surrogate_control = surrogate_control_init(noise=True,
n_theta=2)
from spotpython.fun.hyperlight import HyperLight
fun = HyperLight(log_level=50).fun
from spotpython.spot import spot
spot_tuner = spot.Spot(fun=fun,
fun_control=fun_control,
design_control=design_control,
surrogate_control=surrogate_control)
spot_tuner.run()
get_tuned_hyperparameters(spot_tuner)
{'l1': 7.0,
'epochs': 5.0,
'batch_size': 4.0,
'act_fn': 0.0,
'optimizer': 0.0,
'dropout_prob': 0.01,
'lr_mult': 5.0,
'patience': 3.0,
'initialization': 1.0}
Source code in spotpython/hyperparameters/update.py
1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 |
|
get_values_from_dict(dictionary)
¶
Get the values from a dictionary as an array. Generate an np.array that contains the values of the keys of a dictionary in the same order as the keys of the dictionary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dictionary |
dict
|
dictionary with values |
required |
Returns:
Type | Description |
---|---|
array
|
array with values |
Examples:
>>> from spotpython.hyperparameters.values import get_values_from_dict
>>> d = {"a": 1, "b": 2, "c": 3}
>>> get_values_from_dict(d)
array([1, 2, 3])
Source code in spotpython/hyperparameters/update.py
707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 |
|
get_var_name(fun_control)
¶
Get the names of the values from the dictionary fun_control as a list. If no “core_model_hyper_dict” key exists in fun_control, return None.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fun_control |
dict
|
dictionary with names |
required |
Returns:
Type | Description |
---|---|
list
|
ist with names |
Examples:
>>> from spotpython.hyperparameters.values import get_var_name
fun_control = {"core_model_hyper_dict":{
"leaf_prediction": {
"levels": ["mean", "model", "adaptive"],
"type": "factor",
"default": "mean",
"core_model_parameter_type": "str"},
"leaf_model": {
"levels": ["linear_model.LinearRegression",
"linear_model.PARegressor",
"linear_model.Perceptron"],
"type": "factor",
"default": "LinearRegression",
"core_model_parameter_type": "instance"},
"splitter": {
"levels": ["EBSTSplitter", "TEBSTSplitter", "QOSplitter"],
"type": "factor",
"default": "EBSTSplitter",
"core_model_parameter_type": "instance()"},
"binary_split": {
"levels": [0, 1],
"type": "factor",
"default": 0,
"core_model_parameter_type": "bool"},
"stop_mem_management": {
"levels": [0, 1],
"type": "factor",
"default": 0,
"core_model_parameter_type": "bool"}}}
get_var_name(fun_control)
['leaf_prediction',
'leaf_model',
'splitter',
'binary_split',
'stop_mem_management']
Source code in spotpython/hyperparameters/update.py
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 |
|
get_var_type(fun_control)
¶
Get the types of the values from the dictionary fun_control as a list. If no “core_model_hyper_dict” key exists in fun_control, return None.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fun_control |
dict
|
dictionary with levels and types |
required |
Returns:
Type | Description |
---|---|
list
|
list with types |
Examples:
>>> from spotpython.hyperparameters.values import get_var_type
d = {"core_model_hyper_dict":{
"leaf_prediction": {
"levels": ["mean", "model", "adaptive"],
"type": "factor",
"default": "mean",
"core_model_parameter_type": "str"},
"leaf_model": {
"levels": ["linear_model.LinearRegression", "linear_model.PARegressor", "linear_model.Perceptron"],
"type": "factor",
"default": "LinearRegression",
"core_model_parameter_type": "instance"},
"splitter": {
"levels": ["EBSTSplitter", "TEBSTSplitter", "QOSplitter"],
"type": "factor",
"default": "EBSTSplitter",
"core_model_parameter_type": "instance()"},
"binary_split": {
"levels": [0, 1],
"type": "factor",
"default": 0,
"core_model_parameter_type": "bool"},
"stop_mem_management": { "levels": [0, 1],
"type": "factor",
"default": 0,
"core_model_parameter_type": "bool"}}}
get_var_type(d)
['factor', 'factor', 'factor', 'factor', 'factor']
Source code in spotpython/hyperparameters/update.py
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 |
|
get_var_type_from_var_name(fun_control, var_name)
¶
This function gets the variable type from the variable name.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fun_control |
dict
|
fun_control dictionary |
required |
var_name |
str
|
variable name |
required |
Returns:
Type | Description |
---|---|
str
|
variable type |
Examples:
>>> from spotpython.utils.init import fun_control_init
from spotpython.hyperparameters.values import get_var_type_from_var_name
control_dict = fun_control_init()
get_var_type_from_var_name(var_name="max_depth",
fun_control=control_dict)
"int"
Source code in spotpython/hyperparameters/update.py
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 |
|
iterate_dict_values(var_dict)
¶
Iterate over the values of a dictionary of variables. This function takes a dictionary of variables as input arguments and returns a generator that yields dictionaries with the values from the arrays in the input dictionary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
var_dict |
dict
|
A dictionary where keys are variable names and values are numpy arrays. |
required |
Returns:
Type | Description |
---|---|
Generator[Dict[str, Union[int, float]], None, None]
|
Generator[dict]: A generator that yields dictionaries with the values from the arrays in the input dictionary. |
Examples:
>>> import numpy as np
>>> from spotpython.hyperparameters.values import iterate_dict_values
>>> var_dict = {'a': np.array([1, 3, 5]), 'b': np.array([2, 4, 6])}
>>> list(iterate_dict_values(var_dict))
[{'a': 1, 'b': 2}, {'a': 3, 'b': 4}, {'a': 5, 'b': 6}]
Source code in spotpython/hyperparameters/update.py
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
|
modify_boolean_hyper_parameter_levels(fun_control, hyperparameter, levels)
¶
This function modifies the levels of a boolean hyperparameter in the fun_control dictionary. It also sets the lower and upper bounds of the hyperparameter to 0 and len(levels) - 1, respectively.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fun_control |
dict
|
fun_control dictionary |
required |
hyperparameter |
str
|
hyperparameter name |
required |
levels |
list
|
list of levels |
required |
Returns:
Type | Description |
---|---|
None
|
None. |
Source code in spotpython/hyperparameters/update.py
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 |
|
modify_hyper_parameter_bounds(fun_control, hyperparameter, bounds)
¶
Modify the bounds of a hyperparameter in the fun_control dictionary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fun_control |
dict
|
fun_control dictionary |
required |
hyperparameter |
str
|
hyperparameter name |
required |
bounds |
list
|
list of two bound values. The first value represents the lower bound and the second value represents the upper bound. |
required |
Returns:
Type | Description |
---|---|
None
|
None. |
Examples:
>>> from spotpython.hyperparameters.values import modify_hyper_parameter_levels
fun_control = {}
core_model = HoeffdingTreeRegressor
fun_control.update({"core_model": core_model})
fun_control.update({"core_model_hyper_dict": river_hyper_dict[core_model.__name__]})
bounds = [3, 11]
fun_control = modify_hyper_parameter_levels(fun_control, "min_samples_split", bounds)
Source code in spotpython/hyperparameters/update.py
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
|
modify_hyper_parameter_levels(fun_control, hyperparameter, levels)
¶
This function modifies the levels of a hyperparameter in the fun_control dictionary. It also sets the lower and upper bounds of the hyperparameter to 0 and len(levels) - 1, respectively.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fun_control |
dict
|
fun_control dictionary |
required |
hyperparameter |
str
|
hyperparameter name |
required |
levels |
list
|
list of levels |
required |
Returns:
Type | Description |
---|---|
None
|
None. |
Examples:
>>> fun_control = {}
from spotpython.hyperparameters.values import modify_hyper_parameter_levels
core_model = HoeffdingTreeRegressor
fun_control.update({"core_model": core_model})
fun_control.update({"core_model_hyper_dict": river_hyper_dict[core_model.__name__]})
levels = ["mean", "model"]
fun_control = modify_hyper_parameter_levels(fun_control, "leaf_prediction", levels)
Source code in spotpython/hyperparameters/update.py
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
|
replace_levels_with_positions(hyper_dict, hyper_dict_values)
¶
Replace the levels with the position in the levels list. The function that takes two dictionaries. The first contains as hyperparameters as keys. If the hyperparameter has the key “levels”, then the value of the corresponding hyperparameter in the second dictionary is replaced by the position of the value in the list of levels. The function returns a dictionary with the same keys as the second dictionary. For example, if the second dictionary is {“a”: 1, “b”: “model1”, “c”: 3} and the first dictionary is { “a”: {“type”: “int”}, “b”: {“levels”: [“model4”, “model5”, “model1”]}, “d”: {“type”: “float”}}, then the function should return {“a”: 1, “b”: 2, “c”: 3}.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
hyper_dict |
dict
|
dictionary with levels |
required |
hyper_dict_values |
dict
|
dictionary with values |
required |
Returns:
Type | Description |
---|---|
dict
|
dictionary with values |
Examples:
>>> from spotpython.hyperparameters.values import replace_levels_with_positions
hyper_dict = {"leaf_prediction": {
"levels": ["mean", "model", "adaptive"],
"type": "factor",
"default": "mean",
"core_model_parameter_type": "str"},
"leaf_model": {
"levels": ["linear_model.LinearRegression", "linear_model.PARegressor", "linear_model.Perceptron"],
"type": "factor",
"default": "LinearRegression",
"core_model_parameter_type": "instance"},
"splitter": {
"levels": ["EBSTSplitter", "TEBSTSplitter", "QOSplitter"],
"type": "factor",
"default": "EBSTSplitter",
"core_model_parameter_type": "instance()"},
"binary_split": {
"levels": [0, 1],
"type": "factor",
"default": 0,
"core_model_parameter_type": "bool"},
"stop_mem_management": {
"levels": [0, 1],
"type": "factor",
"default": 0,
"core_model_parameter_type": "bool"}}
hyper_dict_values = {"leaf_prediction": "mean",
"leaf_model": "linear_model.LinearRegression",
"splitter": "EBSTSplitter",
"binary_split": 0,
"stop_mem_management": 0}
replace_levels_with_position(hyper_dict, hyper_dict_values)
{'leaf_prediction': 0,
'leaf_model': 0,
'splitter': 0,
'binary_split': 0,
'stop_mem_management': 0}
Source code in spotpython/hyperparameters/update.py
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 |
|
return_conf_list_from_var_dict(var_dict, fun_control, default=False)
¶
Return a list of configurations from a dictionary of variables.
This function takes a dictionary of variables and a dictionary of function control as input arguments. It performs similar steps as generate_one_config_from_var_dict() but returns a list of dictionaries of hyper parameter values.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
var_dict |
dict
|
A dictionary where keys are variable names and values are numpy arrays. |
required |
fun_control |
dict
|
A dictionary which (at least) has an entry with the following key: “var_type” (list): A list of variable types. If the entry is not “num” the corresponding value will be converted to the type “int”. |
required |
Returns:
Name | Type | Description |
---|---|---|
list |
List[Dict[str, Union[int, float]]]
|
A list of dictionaries of hyper parameter values. Transformations are applied to the values. |
Examples:
>>> import numpy as np
>>> from spotpython.hyperparameters.values import return_conf_list_from_var_dict
>>> var_dict = {'a': np.array([1, 3, 5]), 'b': np.array([2, 4, 6])}
>>> fun_control = {'var_type': ['int', 'int']}
>>> return_conf_list_from_var_dict(var_dict, fun_control)
[{'a': 1, 'b': 2}, {'a': 3, 'b': 4}, {'a': 5, 'b': 6}]
Source code in spotpython/hyperparameters/update.py
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
|
set_control_hyperparameter_value(control_dict, hyperparameter, value)
¶
This function sets the hyperparameter values depending on the var_type via modify_hyperameter_levels or modify_hyperparameter_bounds in the control_dict dictionary. If the hyperparameter is a factor, it calls modify_hyper_parameter_levels. Otherwise, it calls modify_hyper_parameter_bounds.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
control_dict |
dict
|
control_dict dictionary |
required |
hyperparameter |
str
|
key |
required |
value |
Any
|
value |
required |
Returns:
Type | Description |
---|---|
None
|
None. |
Source code in spotpython/hyperparameters/update.py
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 |
|
set_control_key_value(control_dict, key, value, replace=False)
¶
This function sets the key value pair in the control_dict dictionary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
control_dict |
dict
|
control_dict dictionary |
required |
key |
str
|
key |
required |
value |
Any
|
value |
required |
replace |
bool
|
replace value if key already exists. Default is False. |
False
|
Returns:
Type | Description |
---|---|
None
|
None. |
Attributes:
Name | Type | Description |
---|---|---|
key |
str
|
key |
value |
Any
|
value |
Examples:
>>> from spotpython.utils.init import fun_control_init
from spotpython.hyperparameters.values import set_control_key_value
control_dict = fun_control_init()
set_control_key_value(control_dict=control_dict,
key="key",
value="value")
control_dict["key"]
Source code in spotpython/hyperparameters/update.py
1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 |
|
update_fun_control_with_hyper_num_cat_dicts(fun_control, num_dict, cat_dict, dict)
¶
Update an existing fun_control dictionary with new hyperparameter values. All values from the hyperparameter dict (dict) are updated in the fun_control dictionary using the num_dict and cat_dict dictionaries.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fun_control |
dict
|
The fun_control dictionary. This dictionary is updated with the new hyperparameter values. |
required |
num_dict |
dict
|
The dictionary containing the numerical hyperparameter values, which are used to update the fun_control dictionary. |
required |
cat_dict |
dict
|
The dictionary containing the categorical hyperparameter values, which are used to update the fun_control dictionary. |
required |
dict |
dict
|
The dictionary containing the “old” hyperparameter values. |
required |
Source code in spotpython/hyperparameters/update.py
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 |
|