Should only be used by experts!
liquidSVM command line tools svm-train
, svm-select
, and svm-test
can be used by more advanced users to get the most advanced use.
These three tools have command line arguments and those can be used from R as well.
1 2 3 4 5 6 7 8 | ## Not run:
reg <- liquidData('reg-1d')
model <- init.liquidSVM(Y~., reg$train)
trainSVMs(model, command.args=list(L=2, T=2, d=1))
selectSVMs(model, command.args=list(R=0,d=2))
result <- test(model, reg$test, command.args=list(T=1, d=0))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.