How to tell Symbolic Regression to create trees without using constants? #417
-
Hi, I wonder how can we tell SymbolicRegression.jl to not use any constants (e.g., 2.0, 15.6) when it creates trees. I am using SRRegressor via MLJ interface. Thank you. Regards |
Beta Was this translation helpful? Give feedback.
Answered by
MilesCranmer
Aug 27, 2023
Replies: 1 comment 1 reply
-
You can set the complexity of constants to a very large number. Like |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
vinhpb
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can set the complexity of constants to a very large number. Like
complexity_of_constants=100
. Then it will avoid them.