I'm using java wordnet library(jwnl)for my project.i need to find base form of a word before processing.For example,if i give "sent" the base form word should be "send".like wise for "dispatched"the base word should be "dispatch".i have read the jwnl documentation but it confuses me.please provide me piece of code for finding base word.Thanks in anticipation.

link|improve this question

67% accept rate
feedback

2 Answers

I would suggest trying using a Porter stemmer algorithm instead of wordnet, you can find implementations in most languages - including java here

This should get you what you want

link|improve this answer
1  
Thanx.Actually i solved the problem by reading the documentation of jwnl.Using Morphological processor i can get base form of a word.for e.g sent=>send,children=>child..etc – KNsiva Mar 9 '11 at 8:08
2  
List baseforms = dict.getMorphologicalProcessor().lookupAllBaseForms(POS.VERB, "sent");is a code example – KNsiva Mar 9 '11 at 8:09
feedback

I used JAWS as I found it better then JWNL check this code out to find base for and gloss about it

import java.io.*;
import edu.smu.tspell.wordnet.*;

/**
 * Displays word forms and definitions for synsets containing the word form
 * specified on the command line. To use this application, specify the word
 * form that you wish to view synsets for, as in the following example which
 * displays all synsets containing the word form "airplane":
 * <br>
 * java TestJAWS airplane
 */
public class start
{
    /**
     * Main entry point. The command-line arguments are concatenated together
     * (separated by spaces) and used as the word form to look up.
     */
    public static void main(String[] args)
    {
        while(true)
        {
            if (args.length == 0)
            {
                StringBuffer buffer = new StringBuffer();
                String wordForm = null;//"fast";//buffer.toString();
                System.out.print("\n");
                System.out.print("Enter your query: ");
                   BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

                   try {
                     wordForm = br.readLine();
                   } catch (IOException e) {
                     System.out.println("Error!");
                     System.exit(1);
                   }
                   System.out.println("Your looking for: " + wordForm);
                System.setProperty("wordnet.database.dir", "/home/dell/workspace/wordnet/WordNet-3.0/dict");
                WordNetDatabase database = WordNetDatabase.getFileInstance();
                Synset[] synsets = database.getSynsets(wordForm);
                //  Display the word forms and definitions for synsets retrieved
                if (synsets.length > 0)
                {
                    System.out.println("The following synsets contain '" +
                            wordForm + "' or a possible base form " +
                            "of that text:");
                    for (int i = 0; i < synsets.length; i++)
                    {
                        System.out.println("");
                        String[] wordForms = synsets[i].getWordForms();
                        for (int j = 0; j < wordForms.length; j++)
                        {
                            System.out.print((j > 0 ? ", " : "") +
                                    wordForms[j]);
                        }
                        System.out.println(": " + synsets[i].getDefinition());
                    }
                }
                else
                {
                    System.err.println("No synsets exist that contain " +
                            "the word form '" + wordForm + "'");
                }
            }
            else
            {
                System.err.println("You must specify " +
                        "a word form for which to retrieve synsets.");
            }
        }
    }

}
link|improve this answer
with this you can also find multiple meaning of word, while with porter stemmer you'd get base form of words you were looking for. but if you wanna find higher meaning out of it this code will help. – yashodhan katte May 21 at 6:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.