Gaussian Process Models for Scalar and Functional Inputs

Description: funGp is a regression package based on Gaussian process models. It allows inputs to be either scalar, functional (represented as vectors), or a combination of both. A dimension reduction functionality is implemented in order aid keeping the model light while keeping enough information about the inputs for the model to predict well. Moreover, funGp offers a model selection feature which allows to tune different characteristics of the model such as the active scalar and functional inputs, the type of kernel function and the family of basis function used for the projection of the inputs. This is an extension of the work presented in Betancourt et al. (2020).

Main functionalities
🔹 Creation of regression models
🔹 Output estimation at unobserved input points
🔹 Random sampling from a Gaussian process model
🔹 Heuristic optimization of model structure

Note: funGp was first developed in the frame of the RISCOPE research project, funded by the French Agence Nationale de la Recherche (ANR) for the period 2017-2021 (ANR project No. 16CE04-0011, RISCOPE.fr), and certified by SAFE Cluster.

This project is licensed under the GPL-3 License.

Installation

# Install release version from CRAN
install.packages("funGp")

# Install release version from GitHub
# way 1
library(devtools)
install_github("djbetancourt-gh/funGp", dependencies = TRUE)

# way 2
library(githubinstall)
githubinstall("funGp", dependencies = TRUE)


# Install development version from GitHub
# way 1
library(devtools)
install_github("djbetancourt-gh/funGp@develop", dependencies = TRUE)

# way 2
library(githubinstall)
githubinstall("funGp@develop", dependencies = TRUE)


Manual 📖
Gaussian Process Regression for Scalar and Functional Inputs with funGp - The in-depth tour

Authors: José Betancourt 🔧 (IMT, ENAC), François Bachoc (IMT), Thierry Klein (IMT, ENAC) and Jérémy Rohmer (BRGM).

Contributors: Yves Deville (Alpestat) and Déborah Idier (BRGM).

🔧 maintainer - djbetancourt@uninorte.edu.co

Acknowledgments: we are grateful to Yves Deville from Alpestat for his advice on the documentation of R packages and to Juliette Garcia from ENAC for her assistance on the stabilization of the Ant Colony algorithm for structural parameter optimization.

References

Betancourt, J., Bachoc, F., Klein, T., Idier, D., Pedreros, R., and Rohmer, J. (2020), “Gaussian process metamodeling of functional-input code for coastal flood hazard assessment”. Reliability Engineering & System Safety, 198, 106870. [RESS] - [HAL]

Betancourt, J., Bachoc, F., Klein, T., and Gamboa, F. (2020), Technical Report: “Ant Colony Based Model Selection for Functional-Input Gaussian Process Regression. Ref. D3.b (WP3.2)”. RISCOPE project. [HAL]

Betancourt, J., Bachoc, F., and Klein, T. (2020), R Package Manual: “Gaussian Process Regression for Scalar and Functional Inputs with funGp - The in-depth tour”. RISCOPE project. [HAL]