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)
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: