-
In the PushGP regression examples, I'm following "common practice" and returning a "big" error value (like 1,000) if the evolved program doesn't have a value on the "return" stack. If we're expecting …
-
Hello @erp12 @lspector ,
Very grateful for your contribution on making this PyshGP!
I am doing my research project on PushGP and I am trying to use this Python library.
- I found that it seems…
-
Over at [the ongoing experiment](https://github.com/Vaguery/lexicase-redux) I've got some random code generation and the interpreter nominally working, still as a preliminary for anything interesting.…
-
If a set of individual errors is large enough, their sum can currently overflow because `.sum()` doesn't do checked addition. Some options include
- Using a floating point type for the total error
…
-
I've been running some very long, sort of large runs on a desktop machine. In several runs the search has gotten a few generations, and then hung. No error, no crash, just "Processing generation: X" f…
-
I noticed that the end of every single genetic operator looks the same -- it calls `make-individual`, setting some of the fields. But, every one is the same! This seems like something that should be m…
-
To be frank, this is more a facet of "what are the individual problems for exactly?"
I'm just running all of them in turn by hand and watching, and I find several in `synthetic` that are interesting …
-
I see some activity on particular aspects of "reporting", for instance in #102. But inside the `pushgp` loop is a lot of intermingled and overlapping reportage.
I'd like to sketch a (big) refactoring…
-
Specifically [this line](https://github.com/lspector/Clojush/blob/master/src/clojush/pushstate.clj#L42) throws an exception when an instruction is registered with the same symbol as a previously regis…
-
It would be cool to have higher-order function instructions like map, reduce, and filter in Clojush. Maybe they'd only be defined on the array-like types (string, vector_integer, vector_boolean, etc.)…