hypermapper icon indicating copy to clipboard operation
hypermapper copied to clipboard

Black-box Optimizer based on Bayesian Optimization

Results 18 hypermapper issues
Sort by recently updated
recently updated
newest added

When running `plot_pareto.plot`, I am getting the following error: ``` File "/usr/local/lib/python3.9/dist-packages/hypermapper/plot_pareto.py", line 371, in plot tick.label.set_fontsize( AttributeError: 'XTick' object has no attribute 'label' ``` I believe this is a...

Not sure if this is actually wrong, but the code [here](https://github.com/luinardi/hypermapper/blob/3dfa8a7010792546e2d688b6113569b0cf36958e/hypermapper/utility_functions.py#L794C1-L795C33) looks a bit weird. I'm thinking it might be an indentation error, i.e., the two lines are overindented by...

I have an IntegerParameter `x2` ranging from [1,10] inclusive. ``` "x2": { "parameter_type": "integer", "values": [ 1, 10 ] } ``` In the DoE phase, all of the outputs show...

Is there a way to restrict the search space across multiple input parameters? For example, can I specify multiple integer parameters, but require that the integer values for all parameters...

Any time I begin the optimizer, I get an error that stems from the local_search() script when threadpool_limits() is called. Beyond that, the error further propogates into threadpoolctl until it...

i am tryping to install hypermapper in Pycharm platform but its giving an error. i tried in different PC but i always have problem. Can you please tell me how...

### Observation For an integer parameter with a min value of 1 and a max value of 15, HyperMapper predicts a value of 16 in some iterations. ### Hypothesis I...

The following error comes up when using Standard Latin Hypercube sampling and the number_of_samples is 2. There is no error when the the number_of_samples is 1 or when it is...

The latest version of sklearn is 1.2.1. The official documentation says "sparse is deprecated in 1.2 and will be removed in 1.4. Use sparse_output instead." (https://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.OneHotEncoder.html) The issue can be...

i am trying to run example code but its not running: .json file i already stored ` import math import os import sys import warnings from collections import OrderedDict from...