0

マレットの開発者リストから助けを得るのに苦労しているので、ここで試しています。

ターゲットアルファベットが{A、B、C}のInstancesListがあり、別の分析のためにターゲットアルファベットを{A、NOT_A}に変更する必要があります。

これまでのところ、私は次のコード(他のMalletソースコードから適応)を持っていますが、私は取得し続けます:

アルファベットが一致しません:インスタンス:[5976、null]、InstanceList:[5976、2]

...
InstanceList iListCopy = (InstanceList) instances.clone();

Alphabet blank = new Alphabet();
Alphabet newAlpha = new Alphabet();

//A and NOT_A cannot be found in alphabet, so add them.
newAlpha.lookupIndex("A", true);
newAlpha.lookupIndex("NOT_A", true);

Noop pipe = new Noop(blank, newAlpha);
InstanceList newIList = new InstanceList(pipe);

//iterate through each instance and change the target based on the
original value.
for (int i = 0; i < iListCopy.size(); i++) {
   Instance inst = iListCopy.get(i);

   FeatureVector original = (FeatureVector) inst.getData();
   Instance newInst = pipe.instanceFrom(new Instance(original,
newAlpha, inst.getName(), inst.getSource()));
   if (inst.getLabeling().toString().equals("A") {  
       newInst.setTarget("A");
   } else {
       newInst.setTarget("NOT_A");
   }
   newIList.add(newInst);   //FAILS with "Alphabets do not match."
}
...

ターゲットアルファベットを{A、B、C}から{A、NOT_A}に変更する方法について誰か提案がありますか?

4

1 に答える 1

0

ターゲットはラベルである必要があります。これを試して:

..
newInst.setTarget(((LabelAlphabet) newList.getTargetAlphabet()).lookupLabel("A"));
..
newInst.setTarget(((LabelAlphabet) newList.getTargetAlphabet()).lookupLabel("NOT_A"));
于 2012-09-26T14:25:54.423 に答える