Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.12 KB

README.md

File metadata and controls

32 lines (24 loc) · 1.12 KB

.NET Core implementation of Gaussian Processes

Exploration:

var kernel = new GaussianKernel(0.25, 1);
var model = new Model(kernel, 0, 8, 800, ObjectiveFunction);
var output = model.Explore(14);

Alt Text

Search For Min/Max:

Expected Improvement Utility Function:

Alt Text

var kernel = new GaussianKernel(0.25, 1);
var model = new Model(kernel, 0, 8, 800, ObjectiveFunction);
var output = model.FindExtrema(Goal.Max, 14);

Alt Text

Authors

Pavel koryakin [email protected]

License

This project is licensed under the MIT License - see the LICENSE.md for details.

Acknowledgments