-
|
Hi, I know we could use Thank you |
Beta Was this translation helpful? Give feedback.
Answered by
gm89uk
Aug 28, 2025
Replies: 1 comment 2 replies
-
using SymbolicRegression, CSV, MLJ
guesses = CSV.read("path\\hall_of_fame.csv", DataFrame).Equation
model = SRRegressor(
#...
guesses = guesses,
fraction_replaced_guesses=0.0, #unless you want the search to keep referring back to your guesses
)
mach = machine(model, X, y)
fit!(mach)This will however, re-evolve the equations to match your new dataset, presumably this is what you want, rather than a post-hoc test. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
qizzhao
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This will however, re-evolve the equations to match your new dataset, presumably this is what you want, rather than a post-hoc test.