rssl-predict {RSSL} | R Documentation |
Predict using RSSL classifier
Description
Predict using RSSL classifier
For the SelfLearning Classifier the Predict Method delegates prediction to the specific model object
Usage
## S4 method for signature 'LeastSquaresClassifier'
predict(object, newdata, ...)
## S4 method for signature 'NormalBasedClassifier'
predict(object, newdata)
## S4 method for signature 'LogisticRegression'
predict(object, newdata)
## S4 method for signature 'GRFClassifier'
responsibilities(object, newdata, ...)
## S4 method for signature 'GRFClassifier'
predict(object, newdata = NULL, ...)
## S4 method for signature 'KernelLeastSquaresClassifier'
predict(object, newdata, ...)
## S4 method for signature 'LinearSVM'
predict(object, newdata)
## S4 method for signature 'LogisticLossClassifier'
predict(object, newdata)
## S4 method for signature 'MajorityClassClassifier'
predict(object, newdata)
## S4 method for signature 'SVM'
predict(object, newdata)
## S4 method for signature 'SelfLearning'
predict(object, newdata, ...)
## S4 method for signature 'USMLeastSquaresClassifier'
predict(object, newdata, ...)
## S4 method for signature 'WellSVM'
predict(object, newdata, ...)
## S4 method for signature 'WellSVM'
decisionvalues(object, newdata)
## S4 method for signature 'svmlinClassifier'
predict(object, newdata, ...)
Arguments
object |
classifier |
newdata |
objects to generate predictions for |
... |
Other arguments |
[Package RSSL version 0.9.7 Index]