Skip to contents

Gaussian process for classification. Calls kernlab::gausspr() from kernlab. Parameters sigma, degree, scale, offset and order are added to make tuning kpar easier. If kpar is provided then these new parameters are ignored. If none are provided then the default "automatic" is used for kpar.

Dictionary

This Learner can be instantiated via lrn():

lrn("classif.gausspr")

Meta Information

  • Task type: “classif”

  • Predict Types: “response”, “prob”

  • Feature Types: “logical”, “integer”, “numeric”, “character”, “factor”, “ordered”

  • Required Packages: mlr3, mlr3extralearners, kernlab

Parameters

IdTypeDefaultLevelsRange
scaleduntypedTRUE-
kernelcharacterrbfdotrbfdot, polydot, vanilladot, tanhdot, laplacedot, besseldot, anovadot, splinedot-
sigmanumeric-\((-\infty, \infty)\)
degreenumeric-\((-\infty, \infty)\)
scalenumeric-\((-\infty, \infty)\)
offsetnumeric-\((-\infty, \infty)\)
ordernumeric-\((-\infty, \infty)\)
kparuntyped"automatic"-
tolnumeric0.001\([0, \infty)\)
fitlogicalTRUETRUE, FALSE-
na.actionuntypedna.omit-
couplercharacterminpairminpair, pkpd-

References

Karatzoglou, Alexandros, Smola, Alex, Hornik, Kurt, Zeileis, Achim (2004). “kernlab-an S4 package for kernel methods in R.” Journal of statistical software, 11(9), 1–20.

See also

Author

RaphaelS1

Super classes

mlr3::Learner -> mlr3::LearnerClassif -> LearnerClassifGausspr

Methods

Inherited methods


Method new()

Creates a new instance of this R6 class.

Usage


Method clone()

The objects of this class are cloneable with this method.

Usage

LearnerClassifGausspr$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

# Define the Learner
learner = mlr3::lrn("classif.gausspr")
print(learner)
#> <LearnerClassifGausspr:classif.gausspr>: Gaussian Process
#> * Model: -
#> * Parameters: list()
#> * Packages: mlr3, mlr3extralearners, kernlab
#> * Predict Types:  [response], prob
#> * Feature Types: logical, integer, numeric, character, factor, ordered
#> * Properties: multiclass, twoclass

# Define a Task
task = mlr3::tsk("sonar")

# Create train and test set
ids = mlr3::partition(task)

# Train the learner on the training ids
learner$train(task, row_ids = ids$train)
#> Using automatic sigma estimation (sigest) for RBF or laplace kernel 

print(learner$model)
#> Gaussian Processes object of class "gausspr" 
#> Problem type: classification 
#> 
#> Gaussian Radial Basis kernel function. 
#>  Hyperparameter : sigma =  0.0119510962717118 
#> 
#> Number of training instances learned : 139 
#> Train error : 0.079136691 


# Make predictions for the test rows
predictions = learner$predict(task, row_ids = ids$test)

# Score the predictions
predictions$score()
#> classif.ce 
#>   0.115942