通过MIT Java Wordnet接口(JWI)检索Synset的语义关系时,我根本无法获得派生相关的形式。我正在使用ISynset类方法getRelatedSynsets(IPointer p),但是列表仅返回空。

作为一个简单的测试,我开发了一个类,该类可迭代wordnet的所有名词同义词集,并尝试查找任何暴露与派生相关形式的同义词集。令人惊讶的是,代码找不到具有该关系的单个同义词集。这是代码:

public class DerivationallyTest {

    private static IDictionary dict = null;

    public static void main(String[] args) throws IOException {
        IDictionary dict = dicitionaryFactory();
        Iterator<ISynset> it = dict.getSynsetIterator(POS.NOUN);
        while(it.hasNext()){
            ISynset synset = it.next();
            if(synset.getRelatedSynsets(Pointer.DERIVATIONALLY_RELATED).size() > 0){
                System.out.println("FOUND ONE!!!");
            }
        }
    }



    public static IDictionary dicitionaryFactory() throws IOException{
        if(dict == null){
            System.out.println("Instanciando Dicionario...");
            // construct the URL to the Wordnet dictionary directory
            String wnhome = System.getenv("WNHOME");
            String path = wnhome + File.separator + "dict";
            URL url = new URL("file", null, path);
            // construct the dictionary object and open it
            dict = new Dictionary(url);
            dict.open();
        }
        return dict;
    }
}


我是在做错什么,还是这是一种实际的怪异行为?我已经使用MIT JWI开发了很多类,并且在完成大量工作后不想更改为另一个API。

我在Ubuntu 12 LTS下使用Wordnet 3.1和MIT JWI 2.2.3

更新:我也尝试使用Wordnet 3.0,并且发生了同样的事情。

最佳答案

仅语义指针附加到同义词集。词法指针仅附加在单词上。试试:IWord.getRelatedWords(IPointer ptr)

http://projects.csail.mit.edu/jwi/api/edu/mit/jwi/item/ISynset.html#getRelatedSynsets(edu.mit.jwi.item.IPointer)

09-30 15:54