문제

I use Java and JWNL library to access WordNet. Having Synset object of some verb how can I access his "derivationally related forms".

I tried these things:

Synset synset;
...
Pointer[] pointers = synset.getPointers(PointerType.DERIVED);

or

PointerTarget[] targets = synset.getTargets(PointerType.DERIVED);

but there is no result

도움이 되었습니까?

해결책 2

It's turned out that I have to use:

Pointer[] pointers = synset.getPointers(PointerType.NOMINALIZATION);

다른 팁

Haven't worked with JWNL. But I to faced such problems.

You should remember not all words are verbs and not every verb has "derivationally related forms". Basically try more words.

Try "dash" has derivations - bolt and sprint

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top