question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

question about Low-level interface

See original GitHub issue

Hi, I have a question about setting bounds in the Low-level interface. I want to set a [-1,1]^100 hypercube bounds, and my code are as below:

    bounds = np.zeros((100,2))
    for i in range(high_dim):
        bounds[i][0] = -1
        bounds[i][1] = 1
    cma_es = CMA(bounds=bounds,mean=np.zeros(high_dim), sigma=1.3)

However, this doesn’t work when I run “x = cma_es.ask()” Could you tell me the right way to set the bounds in Low-level interface?

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:6

github_iconTop GitHub Comments

1reaction
cjfcsjtcommented, Feb 12, 2020

Thank you so much!

0reactions
c-batacommented, Feb 12, 2020

Hi @cjfcsjt ! I released v0.3.0 which includes the change. Please execute pip install -U cmaes. https://github.com/CyberAgent/cmaes/releases/tag/v0.3.0

Read more comments on GitHub >

github_iconTop Results From Across the Web

Top Low Level Design Interview Questions - InterviewBit
In this article, we discuss why LLD is important, how to prepare for low-level design interview questions for freshers and experienced candidates with...
Read more >
Low-level interfaces — EQTK 0.1.0 documentation
EQTK offers low-level interfaces for solving coupled equilibria. · Importantly, all low-level functions require inputs that are contiguous Numpy arrays in C ......
Read more >
Google low level system design question - Part 1 - YouTube
This live session will discuss a strategy to solve low-level design questions. This question was asked in a #Google software engineering ...
Read more >
CoolProp Low-Level interface - MATLAB Answers - MathWorks
I am using the High-Level interface of CoolProp in MATLAB, but I need to use the Low-Level interface of CoolProp in order to...
Read more >
Low Level GUI Programming [closed] - Stack Overflow
Improve this question. How are gui's created at the lowest level? In Java, one may type in a JFrame method and create a...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found