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
19 20 21 22 23 24 25 | |
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
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 | |
__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
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | |
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
62 63 64 65 66 67 68 69 70 71 72 73 | |
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
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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | |
__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
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 | |
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
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 | |
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
28 29 30 31 32 33 34 35 36 | |