31 releases (breaking)

0.24.0 Nov 12, 2024
0.22.0 Sep 4, 2024
0.21.1 Jul 30, 2024
0.16.0 Mar 7, 2024
0.4.0 Jul 9, 2022

#620 in Machine learning

Download history 3/week @ 2024-08-16 8/week @ 2024-08-23 139/week @ 2024-08-30 35/week @ 2024-09-06 48/week @ 2024-09-13 32/week @ 2024-09-20 168/week @ 2024-09-27 37/week @ 2024-10-04 19/week @ 2024-10-11 5/week @ 2024-10-18 2/week @ 2024-10-25 26/week @ 2024-11-01 129/week @ 2024-11-08 28/week @ 2024-11-15 12/week @ 2024-11-22 5/week @ 2024-11-29

176 downloads per month
Used in 3 crates

Apache-2.0

210KB
4K SLoC

Gaussian processes

crates.io docs

egobox-gp provides a Rust implementation of gaussian process regression. It is a Rust port of some kriging algorithms of the SMT Python library.

The big picture

egobox-gp is a library crate in the top-level package egobox.

Current state

egobox-gp currently provides a Gaussian Process implementation with the following features:

  • Regression model choice: constant, linear or quadratic
  • Correlation model (kernel) choice: squared exponential, absolute exponential, matern 3/2, matern 5/2
  • Handling of high dimensional problem using PLS (linfa-pls)

Examples

There is an usage example in the examples/ directory. To run, use:

$ cargo run --release --example kriging

License

Licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0

Dependencies

~14–34MB
~492K SLoC