utils
generate_search_grid(x_min, x_max, n_points=5, col_names=None)
¶
Generates a search grid based on the minimum and maximum values of each feature.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x_min |
ndarray
|
A NumPy array containing the minimum values for each feature. |
required |
x_max |
ndarray
|
A NumPy array containing the maximum values for each feature. |
required |
n_points |
int
|
The number of points to generate for each feature. Defaults to 5. |
5
|
col_names |
list
|
A list of column names for the DataFrame. If None, a NumPy array is returned. Defaults to None. |
None
|
Returns:
Type | Description |
---|---|
Union[DataFrame, ndarray]
|
Union[pd.DataFrame, np.ndarray]: A Pandas DataFrame representing the search grid if col_names is provided, otherwise a NumPy array. |
Raises:
Type | Description |
---|---|
ValueError
|
If the length of x_min and x_max are different. |
Examples:
>>> from spotpython.design.utils import generate_search_grid
>>> import numpy as np
>>> x_min = np.array([0, 0, 0])
>>> x_max = np.array([1, 1, 1])
>>> search_grid = generate_search_grid(x_min, x_max, num_points=3)
>>> print(search_grid)
[[0. 0. 0. ]
[0. 0. 0.5]
[0. 0. 1. ]
...
[1. 1. 0.5]
[1. 1. 1. ]]
>>> search_grid = generate_search_grid(x_min, x_max, num_points=3, col_names=['feature_0', 'feature_1', 'feature_2'])
>>> print(search_grid)
feature_0 feature_1 feature_2
0 0.0 0.00 0.00
1 0.0 0.00 0.50
2 0.0 0.00 1.00
3 0.0 0.50 0.00
4 0.0 0.50 0.50
.. ... ... ...
22 1.0 1.00 0.50
23 1.0 1.00 1.00
[27 rows x 3 columns]
Source code in spotpython/design/utils.py
39 40 41 42 43 44 45 46 47 48 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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
|
get_boundaries(data)
¶
Calculates the minimum and maximum values for each column in a NumPy array.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
ndarray
|
A NumPy array of shape (n, k), where n is the number of rows and k is the number of columns. |
required |
Returns:
Type | Description |
---|---|
tuple[ndarray, ndarray]
|
tuple[np.ndarray, np.ndarray]: A tuple containing two NumPy arrays: - The first array contains the minimum values for each column, with shape (k,). - The second array contains the maximum values for each column, with shape (k,). |
Raises:
Type | Description |
---|---|
ValueError
|
If the input array has shape (1, 0) (empty array). |
Examples:
>>> from spotpython.design.utils import get_boundaries
>>> import numpy as np
>>> data = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
>>> min_values, max_values = get_boundaries(data)
>>> print("Minimum values:", min_values)
Minimum values: [1 2 3]
>>> print("Maximum values:", max_values)
Maximum values: [7 8 9]
Source code in spotpython/design/utils.py
6 7 8 9 10 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 |
|
map_to_original_scale(X_search, x_min, x_max)
¶
Maps the values in X_search from the range [0, 1] to the original scale defined by x_min and x_max.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X_search |
Union[DataFrame, ndarray]
|
A Pandas DataFrame or NumPy array containing the search points in the range [0, 1]. |
required |
x_min |
ndarray
|
A NumPy array containing the minimum values for each feature in the original scale. |
required |
x_max |
ndarray
|
A NumPy array containing the maximum values for each feature in the original scale. |
required |
Returns:
Type | Description |
---|---|
Union[DataFrame, ndarray]
|
Union[pd.DataFrame, np.ndarray]: A Pandas DataFrame or NumPy array with the values mapped to the original scale. |
Examples:
>>> from spotpython.design.utils import map_to_original_scale
>>> import numpy as np
>>> import pandas as pd
>>> X_search = pd.DataFrame([[0.5, 0.5], [0.25, 0.75]], columns=['x', 'y'])
>>> x_min = np.array([0, 0])
>>> x_max = np.array([10, 20])
>>> X_search_scaled = map_to_original_scale(X_search, x_min, x_max)
>>> print(X_search_scaled)
x y
0 5.0 10.0
1 2.5 15.0
Source code in spotpython/design/utils.py
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 |
|