Package org.biojava.stats.svm
Interface SVMTarget
- All Known Implementing Classes:
AbstractSVMTarget
,SimpleSVMTarget
public interface SVMTarget
An SVM classifier model.
This is the interface for objects that contain the model for a binary classification task.
- Author:
- Matthew Pocock
-
Method Summary
Modifier and TypeMethodDescriptionvoid
void
addItemTarget
(Object item, double target) void
clear()
double
items()
void
removeItem
(Object item) void
-
Method Details
-
items
-
itemTargets
-
getTarget
-
setTarget
- Throws:
UnsupportedOperationException
-
addItem
- Throws:
UnsupportedOperationException
-
addItemTarget
- Throws:
UnsupportedOperationException
-
removeItem
- Throws:
UnsupportedOperationException
-
clear
- Throws:
UnsupportedOperationException
-