You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I installed fast-cma-es on Windows 11 following the instructions in README (X64 C++ runtime libraries were also installed).
Tried a small optimization:
import numpy as np
from scipy.optimize import Bounds
from fcmaes import cmaescpp, cmaes
def obj(x):
return np.sum(x**2)
bounds = Bounds([-1, -1], [1, 1])
result = cmaescpp.minimize(obj, bounds)
print(result)
Please update to 1.6.11
pip install fcmaes --upgrade
I checked under Windows 10 and Linux Mint 21.3 using miniforge https://github.com/conda-forge/miniforge with python 10
and cannot reproduce the issue. If you can still can reproduce with 1.6.11 please provide more details about your environment.
Hi Dietmar,
I installed fast-cma-es on Windows 11 following the instructions in README (X64 C++ runtime libraries were also installed).
Tried a small optimization:
and got the following result:
The python algorithm works (cmaes). Output:
What do you think could be the cause? Thanks :)
The text was updated successfully, but these errors were encountered: