Forcing PySR to use specific formula and shortcut for activating all unary operators #657
-
Hi @MilesCranmer In the first step I want to fit my data with PySR, but the mathematical function to fit the data is given by the literature as: A*( digmma(1/2-B/abs(x)) – ln(B/abs(x)) ) – C*abs(x)^2 In a second step I wanted to use PySR to find a temperature dependent expression for A, B and C. Thank you for your time and input in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @Sta1ger, since you are only optimising constants, perhaps you could use Related: |
Beta Was this translation helpful? Give feedback.
I don’t recommend turning them all on because many are correlated with each other (sin and cos) and the more operators you have, the slower the search. Keep in mind that it’s roughly a O(n!) search space to explore, with
n
some function of the number of features and operators.