English 中文(简体)
分类示范建议
原标题:Model suggestion for classification

我的数据格式如下。

im1类

im2类

img3 class4

一个人能够提出最佳模型来记录这一数据。

问题回答

我认为,我们可以通过在最后一层使用草原而不是软顶来进行多级的多标签分类。

For example last layer will have 1 nodes for each class giving the probability of that class.

Assume 5级加Dense(5, 启动=“sigmoid”)是最后一个。 第一个图像“img1”的地面真相为[1,1,1,00],“img3”为[0,0,1,01]。

你们需要使问题具体化。

如果你想要将Ig1分类为1、2和3类,那么你可以重新界定包括3类的标签。

例如,<代码>类别A包括第1、2和3类。

<代码>B包括第1类和第2类。

此外,还有4个班级。

[第1类,第2类,第3类,第4类]

现在,你的数据集由6个班组成。

[第1类,第2类,第3类,第4类,A类,B类

作为6个类别,你可以解决这个问题。





相关问题
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. ...

热门标签