Bengali POS-Tagger ==================== Bangla POS-Tagger using Stanford Postagger Installation and run: ========================= 1. Download Stanford Postagger from : http://nlp.stanford.edu/software/tagger.shtml 2. The system requires Java 1.5+ to be installed. Set JAVA_HOME to environment variable by typing export JAVA_HOME=/path/to/Java to the end of the file bash.bashrc(For LINUX) This can be done as follows: cd /etc su Enter your root password gedit bash.bashrc To tag your Bengali sentences: ============================== Download bengaliModelFile.tagger file into your working directory(Postagger directory) and execute the following command: java -mx1000m -classpath stanford-postagger.jar edu.stanford.nlp.tagger.maxent.MaxentTagger -model bengaliModelFile.tagger -textFile input.txt > output.txt input.txt : Input text file in Bengali. output.txt : Corresponding tagged output. Question: ============== arjundas.cs@gmail.com