Model predictions
This function predicts values based upon a model trained for text mining.
## S3 method for class 'textmining' predict(object, test, fuzzy = FALSE, ...)
object |
The classification model (of class |
test |
The test set (a |
fuzzy |
A boolean indicating whether fuzzy classification is used or not. |
... |
Other parameters. |
A vector of predicted values (factor
).
## Not run: require (text2vec) data ("movie_review") d = movie_review [, 2:3] d [, 1] = factor (d [, 1]) d = splitdata (d, 1) model = TEXTMINING (d$train.x, NB, labels = d$train.y, mincount = 50) pred = predict (model, d$test.x) evaluation (pred, d$test.y) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.