Utils
Utils module for specifying custom error classes and config space search interfaces.
This module defines specific error classes for simpler debugging and interfaces for searching config spaces.
Aggregation
¶
Bases: Enum
Enum of aggregation functions for summarizing numpy arrays.
Source code in src/hypershap/utils.py
27 28 29 30 31 32 33 | |
ConfigSpaceSearcher
¶
Bases: ABC
Abstract base class for searching the configuration space.
Provides an interface for retrieving performance values based on a coalition of hyperparameters.
Source code in src/hypershap/utils.py
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 | |
__init__(explanation_task, mode)
¶
Initialize the searcher with the explanation task.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
explanation_task
|
BaselineExplanationTask
|
The explanation task containing the configuration space and surrogate model. |
required |
mode
|
Aggregation
|
The aggregation mode for performance values. |
required |
Source code in src/hypershap/utils.py
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | |
search(coalition)
abstractmethod
¶
Search the configuration space based on the coalition.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
coalition
|
ndarray
|
A boolean array indicating which hyperparameters are constrained by the coalition. |
required |
Returns:
| Type | Description |
|---|---|
float
|
The aggregated performance value based on the search results. |
Source code in src/hypershap/utils.py
70 71 72 73 74 75 76 77 78 79 80 81 | |
RandomConfigSpaceSearcher
¶
Bases: ConfigSpaceSearcher
A searcher that randomly samples the configuration space and evaluates them using the surrogate model.
Useful for establishing baseline performance or approximating game values.
Source code in src/hypershap/utils.py
84 85 86 87 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 | |
__init__(explanation_task, mode=Aggregation.MAX, n_samples=10000, seed=0)
¶
Initialize the random configuration space searcher.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
explanation_task
|
BaselineExplanationTask
|
The explanation task containing the configuration space and surrogate model. |
required |
mode
|
Aggregation
|
The aggregation mode for performance values. |
MAX
|
n_samples
|
int
|
The number of configurations to sample. |
10000
|
seed
|
int | None
|
The random seed for sampling configurations from the config space. |
0
|
Source code in src/hypershap/utils.py
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 | |
search(coalition)
¶
Search the configuration space based on the coalition.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
coalition
|
ndarray
|
A boolean array indicating which hyperparameters are constrained by the coalition. |
required |
Returns:
| Type | Description |
|---|---|
float
|
The aggregated performance value based on the search results. |
Source code in src/hypershap/utils.py
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 | |
evaluate_aggregation(aggregation, values)
¶
Evaluate an aggregation function for a numpy array summarizing it to a single float.
Source code in src/hypershap/utils.py
36 37 38 39 40 41 42 43 44 | |