First, typo in the error exists -> exist
Second, when trying to instantiate "multifidelity_type", I get the following error from instance_from_map()
if isinstance(request, str):
if request not in mapping:
> raise ValueError(f"{request} doesn't exists for {name}")
E ValueError: kde doesn't exists for surrogate model
This is triggered from here:
neps/optimizers/bayesian_optimization/mf_tpe.py:184: in __init__
"good": instance_from_map(
First, typo in the error
exists -> exist
Second, when trying to instantiate"multifidelity_type"
, I get the following error frominstance_from_map()
This is triggered from here:
Which has the following code: