マルチラベル分類を行うためにムーランライブラリを使用しています。私が使用している学習者は RAkEL 学習者です。ムーランの指示に従いました: http://mulan.sourceforge.net/starting.html
私のラベルxmlファイル:
<labels xmlns="http://mulan.sourceforge.net/labels">
<label name="1"/>
<label name="2"/>
<label name="3"/>
<label name="4"/>
<label name="5"/>
</labels>
私のトレーニングデータファイル:
@relation predict_label
@attribute 12345 numeric
@attribute A numeric
@attribute B numeric
@attribute C numeric
@attribute D numeric
@attribute E numeric
@attribute 1 {0, 1}
@attribute 2 {0, 1}
@attribute 3 {0, 1}
@attribute 4 {0, 1}
@attribute 5 {0, 1}
@data
2,3,2,2,2,2,1,0,0,0,0
2,2,3,2,2,2,0,1,0,0,0
2,2,2,3,2,2,0,0,1,0,0
2,2,2,2,3,2,0,0,0,1,0
2,2,2,2,2,3,0,0,0,0,1
私のテストデータファイル:
@relation catalog_ml
@attribute 12345 numeric
@attribute A numeric
@attribute B numeric
@attribute C numeric
@attribute D numeric
@attribute E numeric
@attribute 1 {0, 1}
@attribute 2 {0, 1}
@attribute 3 {0, 1}
@attribute 4 {0, 1}
@attribute 5 {0, 1}
@data
2,2,2,2,2,3,0,0,0,0,0
予測を実行した後の結果:
Bipartion: [false, false, false, false, false] Confidences: [0.0, 0.0, 0.0, 0.0, 0.0] Ranking: [5, 4, 3, 2, 1]Predicted values: null
私の質問は次のとおり
です。
2.私が理解しているように、ランキング[5、4、3、2、1]はxmlラベルファイル内のラベルの位置です。私の理解は正しいですか?なぜランキング順は1から5までじゃないの…?
3.これはマルチラベル分類テストであるため、予測値はnullですか?そうでない場合、どの学習者が予測値をnullに戻さないでしょうか?
どうもありがとうございました。提案やコメントは大歓迎です。