English 中文(简体)
利用“投入”这一特征在SRV上建造几个机器
原标题:Using a feature as Input vs. using it to build Several Machines on SVM

我正在使用SVM来预测一辆公共汽车到达途中的行车时间。 在进行了大量研究和阅读一些论文之后,我仍然对如何模仿我的系统有关键怀疑。

We ve decided which features to use and we are in the process of gathering the data required to perform the regression, but what is confusing us are the implications or consequences of using some features as input for the SVM or building separated machines based on some of these features.

For instance, in this paper the authors built 4 SVMs for predicting bus arrival times: one for rush hour on sunny days, rush hour on rainy days, off-rush hour on sunny days and the last one for off-rush hours and rainy days.

但是,在

何时选择其中一种方法?

问题回答

Most important question: what is the data like? Second question: what model do you expect to capture this?

因此,如果你想出于某种原因使用SVERS,就会铭记其基本机制是线性的,而且如果数据由适当的方位转换,只能捕获非线性的现象。

For a particular problem at hand that means:

  1. Do you have reason (plots, insights in the problem nature) to believe your problem is linear(ly separable)? Just use one linear svm.
  2. Do you have reason your problem consist of several linear subproblems? Use a linear svm on each of the subproblems.
  3. Does your data seem non-linearly grouped? Try an svm with something like rbf kernel.

当然,你只能pl弄和尝试,但检查上述情况可能会加深对这个问题的了解。

In your particular problem I would go for single SVM.

由于我没有这么广泛的经验,我将考虑以以下原因在几个小型和小型设备中消除一个问题:

  1. The classes are too different, or there are classes and subclasses in your problem. E.g. in my case: there are several types of antibodies in a microscope image and they all may be positive or negative. So instead of defining A_Pos, A_Neg, B_Pos, B_Neg, ... I decide first if the image is positive or negative and determine the type in second SVM.

  2. 采物价格太高。 如果你有几类班级,可以发现这些班级有点。 您不是为单一机器提取所有特征,而是首先可以提取一个小小子,如果需要(但可能性不大),可以提取更多的特征。

  3. 裁定案件是否属于问题。 形成一个包含一门课程和所有培训类型的模式。 如果要分类的案件是外事,则停办。 否则,将包含所有类别的第2级最低生活标准分类。

关键词是“经典的SVER”





相关问题
Resample Filter of WEKA - How to interpret the result

I am currently strugeling with a machine learning problem whereas I have to deal with great unbalanced data sets. That is, there are six classes ( 1 , 2 ... 6 ). Unfortunately there are e.g. for class ...

How to recognize rectangles in this image?

I have a image with horizontal and vertical lines. In fact, this image is the BBC website converted to horizontal and vertical lines. My problem is that I want to be able to find all the rectangles in ...

Question About Using Weka, the machine learning tool

I m using the explorer feature of Weka for classification. So I have my .arff file, with 2 features of NUMERIC value, and my class is a binary 0 or 1 (eg {0,1}). Sample: @RELATION summary @...

Implementing a linear, binary SVM (support vector machine)

I want to implement a simple SVM classifier, in the case of high-dimensional binary data (text), for which I think a simple linear SVM is best. The reason for implementing it myself is basically that ...

libsvm model file format

According to this FAQ the model format in libsvm should be straightforward. And in fact it is, when I call just svm-train. As an example, the first SV for the a1a dataset is 1 3:1 11:1 14:1 19:1 39:...

Competitive Learning in Neural Networks

I am playing with some neural network simulations. I d like to get two neural networks sharing the input and output nodes (with other nodes being distinct and part of two different routes) to compete. ...

热门标签