SciML / Surrogates.jl

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

Update Branin Function #449

Closed Spinachboul closed 9 months ago

Spinachboul commented 9 months ago

What Modified?

Branin Function

How Modified?

Added an additional parameter time_step to simulate dynamic changes. The randn() function adds random noise to the function output at each time step.

Why Modified?

This introduces variability, making the function's landscape more challenging for optimization algorithms. Also the suitable noise parameter mimics the real world scenario where the objective functions might not be so smooth!

Any additional change, recommendation highly appreciated

ChrisRackauckas commented 9 months ago

Is this supposed to be a tutorial? Benchmark?

Spinachboul commented 9 months ago

Actually it's a way of improving the branin function by including the element of noise_step

codecov[bot] commented 9 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Comparison is base (33d3eaa) 77.93% compared to head (9a0ef6f) 78.05%.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #449 +/- ## ========================================== + Coverage 77.93% 78.05% +0.12% ========================================== Files 23 23 Lines 3154 3154 ========================================== + Hits 2458 2462 +4 + Misses 696 692 -4 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

Spinachboul commented 9 months ago

@ChrisRackauckas Thanks for merging my branch with the master branch. Could you tell what all functions do you think can be improved, currently I am working on genetic algorithm

ChrisRackauckas commented 9 months ago

I think GEKPLS would be one to take a look at https://github.com/SciML/Surrogates.jl/issues/362

Spinachboul commented 9 months ago

I think GEKPLS would be one to take a look at #362

Sure! I would certainly look into that.