blob: 6a5fcad6fde4cbbd49f6522f58be9a1a7d9622e2 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package opennlp.tools.disambiguator.ims;
import java.util.ArrayList;
import net.sf.extjwnl.data.POS;
import opennlp.tools.disambiguator.WSDHelper;
import opennlp.tools.disambiguator.WordToDisambiguate;
public class WTDIMS extends WordToDisambiguate {
protected String[] posOfSurroundingWords;
protected String[] surroundingWords;
protected String[] localCollocations;
protected String[] features;
public WTDIMS(String[] sentence, int word, int sense) {
super(sentence, word, sense);
}
public WTDIMS(String[] sentence, int word) {
super(sentence, word);
}
public WTDIMS(String xmlWord, ArrayList<String> senseIDs, String xmlSentence,
String xmlrawWord) {
super();
// this.word = xmlWord;
this.sentence = WSDHelper.getTokenizer().tokenize(xmlSentence);
this.posTags = WSDHelper.getTagger().tag(this.sentence);
for (int i = 0; i < sentence.length; i++) {
if (xmlrawWord.equals(sentence[i])) {
this.wordIndex = i;
break;
}
}
this.senseIDs = senseIDs;
}
public WTDIMS(WordToDisambiguate wtd) {
super(wtd.getSentence(), wtd.getWordIndex(), wtd.getSense());
this.senseIDs = wtd.getSenseIDs();
}
public WTDIMS(String[] sentence, int wordIndex, ArrayList<String> senseIDs) {
super(sentence, wordIndex);
this.senseIDs = senseIDs;
}
public String[] getPosOfSurroundingWords() {
return posOfSurroundingWords;
}
public void setPosOfSurroundingWords(String[] posOfSurroundingWords) {
this.posOfSurroundingWords = posOfSurroundingWords;
}
public String[] getSurroundingWords() {
return surroundingWords;
}
public void setSurroundingWords(String[] surroundingWords) {
this.surroundingWords = surroundingWords;
}
public String[] getLocalCollocations() {
return localCollocations;
}
public void setLocalCollocations(String[] localCollocations) {
this.localCollocations = localCollocations;
}
public String[] getFeatures() {
return this.features;
}
public void setFeatures(String[] features) {
this.features = features;
}
public String getWordTag() {
String wordBaseForm = WSDHelper.getLemmatizer().lemmatize(this.getWord(),
this.getPosTag());
String ref = "";
if ((WSDHelper.getPOS(this.getPosTag()) != null)) {
if (WSDHelper.getPOS(this.getPosTag()).equals(POS.VERB)) {
ref = wordBaseForm + ".v";
} else if (WSDHelper.getPOS(this.getPosTag()).equals(POS.NOUN)) {
ref = wordBaseForm + ".n";
} else if (WSDHelper.getPOS(this.getPosTag()).equals(POS.ADJECTIVE)) {
ref = wordBaseForm + ".a";
} else if (WSDHelper.getPOS(this.getPosTag()).equals(POS.ADVERB)) {
ref = wordBaseForm + ".r";
}
}
return ref;
}
}