OptunaSandbox
Static methods
get_feature_output
| Name | Type | Default | Description |
|---|---|---|---|
study | optuna.Study | -- | Sutdy run through Sandbox. |
| Type | Description |
|---|---|
FeatureOutput | Results. |
Methods
run
| Name | Type | Default | Description |
|---|---|---|---|
search | str | -- | Filter config by timeframe or study_name. Key should match timeframe. Default to None. |
| Type | Description |
|---|---|
tp.Dict[str, tp.NamedTuple] | Dictionary mapping feature names to computed features. |
get_features
filter_config with specific key-word or list of key-words.
This method searches within the id, study_name, and timeframe
attributes of each FeatureConfig in the config. The search is
performed in a case-sensitive manner on id while study_name and
timeframe are compared case-insensitively.
It supports standard substring matching as well as prefix matching
using a trailing ’*’ in the search term.
Parameters:
| Name | Type | Default | Description |
|---|---|---|---|
search | str | -- | or list of str The search term or list of search terms. Each term is compared against the attributes id, study_name, and timeframe of FeatureConfig. For example, a term like “my-model*” will match any entry where the attribute (with the aforementioned case rules) starts with “my-model”. |
| Type | Description |
|---|---|
tp.List[FeatureConfigT] | A list of FeatureConfig objects whose attributes match any of the search terms. |

