Bogdan Burlacu

Results 27 comments of Bogdan Burlacu

@Ta180m zenpower/zenmonitor already works with the patches mentioned in the comments above. Could you explain what else was changed/improved besides that in your fork? Thanks

Hi, it seems like the `pyoperon` target is not generated by CMake. Could you post the whole output of the cmake command?

Hi, I think you are missing the Python libraries which are necessary to build the python module. Normally, CMake should find them and display something like this: ``` -- Found...

To rule out this cause could you make the following change to the `CMakeLists.txt` file and then re-run cmake? ```diff diff --git a/CMakeLists.txt b/CMakeLists.txt index 27e5746..f2eceb6 100644 --- a/CMakeLists.txt +++...

### TODO - [ ] _tree initialization_: ~add option to specify whether variable~ coefficients are ~randomly initialized or~ fixed (i.e. 1.0) - [ ] ~_mutation_: add option to specify whether...

Hi, Yes, it is possible. With the C++ library, you can construct a `UserDefinedEvaluator` with a lambda, see [here](https://github.com/heal-research/operon/blob/master/include/operon/operators/evaluator.hpp#L211) for an example. With the python bindings, you need to define...

Hi, I think it should be possible but will need some time to go through the publication and decide how to approach this.

This is great, thanks! My only concern is that this extra output will make it more difficult to call the cli program from scripts and parse the output. Perhaps the...

> In my last commit I also changed the code to scale the evaluation results for the progress report only when linear scaling is turned on. Instead of the if-statements...

Marking this issue as done: - every node has an `Optimize` property which turns optimization on/off for its coefficient - mutations can take integer distributions - _symbolic mode_ is a...