Replies: 1 comment
-
The # of evaluations is much more complicated (e.g., a BFGS constant optimization step can do 100s of evaluations). There is also the Easiest is to measure it with |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
I am currently trying to use the integration value as my loss function. My ODE function is written as: dc_pred_dt, _ = eval_tree_array(tree, X, options) , and the loss function is written as: sum((C_pred .- dataset.y) .^ 2) / length(dataset.y).
However, when I set niteration = 1 and population = 1 to test the code, it seems to call the loss function too many times( around 800). It should be 1(niteration) * 1(population) = 1 (time) if I get this right? Wondering is there any potential problem here, or why is it evaluating the loss function so many times?
Thank you so much for your help!
Best regards
Beta Was this translation helpful? Give feedback.
All reactions