JuliusMartensen

Results 98 comments of JuliusMartensen

Yes! Probably starting on Monday, but I think so. Thanks!

Similar just initializes a new vector of operations which is needed for generating an ODEsystem, since at the moment we do not handle time dependent variables explicitly. I am planning...

https://github.com/adrhill/NoiseRobustDifferentiation.jl

You're right of course. This issue got a little bit out of hand. Trying to resolve this :smile: : `similar` in `basis.jl` was just used to [initialize an empty array](https://docs.julialang.org/en/v1/base/arrays/#Base.similar)...

I appreciate your comment. However, I got mixed feelings about this. In general, my experience with data tells me basically this: Everything is different every time. So a too rigid...

Ah, nice! I did not know about this ( albeit it makes total sense here. ) The algorithm is already implemented [here](https://github.com/SciML/DataDrivenDiffEq.jl/blob/0483ff0718318279a852a99342ab76abf43a55d4/src/utils/utils.jl#L52), since it is used for denoising of the...

I've slightly modified your code to ```Julia using DataDrivenDiffEq, ModelingToolkit, OrdinaryDiffEq, LinearAlgebra function lorenz(u, p, t) x, y, z = u xdot = 10.0*(y-x) ydot = x*(28.0 - z) -...

Oh, nice! I'll think it *should* just run given that I implemented the API just with `kwargs...` for any of the [keywords](https://github.com/SciML/DataDrivenDiffEq.jl/blob/48017945264085073c421ed42b9ee3428c29cd51/src/symbolic_regression/symbolic_regression.jl#L27). For the result, this could can be handled...

Just some tasks related - [ ] Add more tests to `src\symbolic_regression/occamnet.jl`, see [here](https://app.codecov.io/gh/SciML/DataDrivenDiffEq.jl/blob/master/src/symbolic_regression/occamnet.jl) - [ ] I am running 100 training loops locally right now. There are no errors...