Learning an expression with four terms #240
Unanswered
strifinopoulos
asked this question in
Q&A
Replies: 1 comment 4 replies
-
What's the range of x and y? Regardless, this looks like a pretty difficult expression to find. But it might be possible. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to learn an equation of the form:
a*(x+y)+b*(x+y)^(2/3)-cx(x-1)/(x+y)^(1/3)-d*(y-x)^2/(x+y)
where a,b,c,d are constants
Things I have tried:
-Change variables to x, z=x+y, w=x-y and train on them
-define: ()^(2/3), ()^(1/3) and square as new unary operators (and put constraints on their complexities <3)
-increase d the maxdepth=maxsize=30
-increase the population_size
-increase the complexity of constants
-randomize the tree more frequently
-let the code run until loss<10
I am running out of ideas and the loss is still > 300 (the program halts since there is no improvement)
I would be grateful for any ideas.
Beta Was this translation helpful? Give feedback.
All reactions