Create a SVM model.

Parameters:
records/out.rModel).Group 1).4 is a safe starter, increase for more exhaustive tuning.classification for categorical targets (default here).
Parameters:
See dedicated page for more information.
R_SVMe1071 trains a Support Vector Machine (SVM) classifier using the e1071 R package. SVMs learn a decision boundary (a hyper-plane) that maximizes the margin between classes. With kernel functions, the model can capture non-linear relationships while still controlling complexity via regularization.
SVMs remain a solid baseline for tabular, medium-sized datasets when:
Strengths
Considerations
A single table with:
Predictors: one or more numeric columns.
Target: a categorical column (2+ levels).
Tip: Standardize or scale numeric features upstream for smoother optimization.
Configuration tips
float (keeps numeric types consistent).4) then increase if performance plateaus.“factor X has new levels …”
Your prediction rows contain factor levels unseen in training or a numeric column was parsed as text. Fix by:
“NN/MNL can only process numbers…”
This message belongs to a different node (NNET/MNL). For SVM, ensure you’re using R_SVMe1071 and predictors are numeric.
“cannot open compressed file 'records/out.rModel'”
Use Model output = recorded data and a simple path (e.g., records/out.rModel). Ensure the pipeline has permission to write.
Slow training / memory
Reduce tuning breadth, downsample to explore, or prefer linear kernel when relationships are close to linear.
Q: Can I use SVM for regression here?
A: This node is configured for classification. For regression, use a dedicated regression node.
Q: How do I reuse the trained model?
A: Point a scoring pipeline to the recorded model artifact (out.rModel) and the same feature schema to generate predictions.
Q: What kernel is used? Can I change it?
A: By default it’s RBF (radial). Kernel and hyper-parameters are handled inside the node; expand the tuning range if you need more exploration.
