- classification learner
Info
此问题已关闭。 请重新打开它进行编辑或回答。
How can I supply (trainsvm) my dataset if it was in text form?
1 次查看(过去 30 天)
显示 更早的评论
I am using trainsvm to train my dataset, I have the group names, and related text in different forms (doc, pdf).
1. How can I supply this text for svm to train it? In what form (extension) Matlab will accept the input? 2. Is there another function I should use before training to select features? If so, What choices does Matlab provide?
0 个评论
回答(1 个)
mizuki
2017-1-3
1. Your variable should be either string array (which is released in R2016b) or cell array if your target vector contains text.
2. Preprocessing depends on your data, so do not care about it at first. There are so many, but PCA (principal component analysis) would be the easy one to use for preprocessing data.
If you have MATLAB whose version is R2015a or later, use classificationLearner app & its MATLAB code generation feature.
3 个评论
Walter Roberson
2017-1-3
You need to write the tokenization code, which is not easy to get right for English text, especially when you consider quoted material and the multiple uses of "." and ","
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!