SciML / Surrogates.jl

Surrogate modeling and optimization for scientific machine learning (SciML)
https://docs.sciml.ai/Surrogates/stable/
Other
335 stars 69 forks source link

Integrate Radial and Kriging with samplings #12

Closed ludoro closed 5 years ago

ludoro commented 5 years ago
ChrisRackauckas commented 5 years ago

Indeed having sampling procedures is necessary for making this useful. It would be good to create an interface for general sampling, and then getting all of these under the same roof.

ChrisRackauckas commented 5 years ago

Maybe something like sample(f,SobolSampler()).

ludoro commented 5 years ago

I suppose f is the function/solution of the Differential equation we want to approximate?

ChrisRackauckas commented 5 years ago

Indeed. It's any x to scalar function. So not a full differential equation over time, let's take that off the table for now, but the evaluation of a cost function on the differential equation solution (for example, distance from data) is perfectly reasonable.

ludoro commented 5 years ago

Closing this because the samplings in the links are already implemented, but opening another separate issue for https://arxiv.org/pdf/1703.05312.pdf which is another surrogate I want to implement