blackbox
blackbox copied to clipboard
A Python module for parallel optimization of expensive black-box functions
https://bugs.python.org/issue37315 Accepting floats for math.factorial was removed. since d is either even or manipulated to be even, it should be safe to convert to an integer. https://stackoverflow.com/questions/21753841/factorial-in-numpy-and-scipy math.factorial and np.math.factorial...
Hello Paul. Is it possible to pass function arguments to the solver? For example, my function is defined as: def func(x,*parms): And then with the scipy minimize I can pass...
It will freeze in Python 3. I suggest labeling the project Python 2.
Is there a way to limit parameters to integers only? I'm currently rounding the parameter in the objective function, but this leads to the same value being evaluated multiple times.
Using a distributed job submission platform to submit the function evaluation calls to a cluster. It seemed that the number of evaluations run in parallel was lower than what I...
The rbf() function is now called from standard scipy library.
Thanks for a great piece of code! Have you considered typing it? That would make it easier to use and to improve on :)
Hi! I have a hard function, that includes ```max``` and ```min``` and some conversions. I am getting the following error after few steps: ```Traceback (most recent call last): File "/home/vzinoviev/ttf_DALI/training_toolbox/ssd_detector/blackbox_opt.py",...
processing in batches is not very efficient when objective function execution time is not constant
My objective function execution time is quite variable. This means nodes in the cluster (once there is a cluster) will be idle a lot of the time. Is there a...
Hello. I am running some simulations and I am trying to optimize for some parameter. The simulation fails sometimes when I give a large value of m, n (say m=n=100)...