Marius Almanstötter

Results 18 comments of Marius Almanstötter

PolyOpt and BFGS. If i just set maxiters to 5 they produce more than 5 iterations in my case

Alright, so which package would you then recommend instead?

Also would you prefer DiffEqParamEstim over Optimization.jl for parameter estimation with ODEs?

Thanks for the fast response! I see... Is it possible to return somehow Nans instead of skipping. Or would you suggest something else? I basically want to explore the Parameter...

Thank you so much for the response! I think it is atm only the derivative. So how would that Look then with ForwardDiff? How can i pass the explicit input...

Did you resolve it? I have the same problem with Sparse arrays

Thanks for your response. Which alternative did you use?

Interesting, thank you very much for the link, I will try to have look at it. Using the Dirac DElta function as Likelihood would not work right?

I have implemented sth like the code below. But it doesn't seem to work: ``` def optimize_batch(initial_guesses, compute_mse): def single_optimization(initial_guess): solver = optx.BFGS(rtol=1e-5, atol=1e-5) try: solver = optx.BFGS(rtol=1e-5, atol=1e-5) sol...