As much as this may sound like a simple task, I have not encountered a way to do it though the documentation.
After running an arbitrary routine (such as one of these examples, I get something like
>>> print(est_gp)
sqrt(div(add(1.000, sub(div(sqrt(log(0.978)), X0), mul(-0.993, X0))),add(-0.583, 0.592)))
How do I (or can I even) convert this to an expression that can be used outside gplearn
, like a sympy
expression?
You can make it into a SymPy expression with
sympify
. This requires providing a dictionary so that things like add, mul, sub, div are interpreted correctly by SymPy:This returns a SymPy expression, which prints as
The symbol X0 can be accessed as
Symbol("X0")
. Or, which is a more robust approach, you can explicitly say what the symbols are, by creating them and adding them to the dictionary ahead of time.This is needed, for example, to parse I as a symbol "I" rather than "imaginary unit" as SymPy would do by default.
I'm not happy about the evaluation of
sqrt(log(0.978))
. Althoughsympify
has optionevaluate=False
, which prevents things like addition, it does not prevent functions with floating point arguments from being evaluated.