# Full exact GP with Gaussian likelihood
gp <- gp_init(
cfs = cf_sexp(),
lik = lik_gaussian(),
method = method_full()
)
# Binary classification model with EP approximation for the latent values
# and FITC sparse approximation to facilitate large datasets
gp <- gp_init(
cfs = cf_sexp(),
lik = lik_bernoulli(),
approx = approx_ep(),
method = method_fitc(num_inducing = 100)
)
Run the code above in your browser using DataLab