skymanaditya1 / Sound_Forensics_ASR

Code related to Sound Forensics and Automatic Speech Recognition.
2 stars 0 forks source link

HMM-Part Of Speech Tagging Algorithm #5

Closed skymanaditya1 closed 9 years ago

skymanaditya1 commented 9 years ago

The Hidden Markov Model Part Of Speech Tagging Algorithm needs to be written, that takes an English sentence as input and outputs the respective sentence with Parts Of Speech attached with either _ or / as the delimiter. The tagset is taken from the Penn Tree Bank (University of Pennsylvania) using the Brown corpus for identification.

skymanaditya1 commented 9 years ago

The HMM Parts of Speech tag is the job of assigning each word of the English sentence with the parts of the speech tag. Stanford University already implements this algorithm, where the English sentence is taken as input and the corresponding sentence with each word tagged with the part of speech tag in given. The tagset convention follows from the PENN tree bank using the Brown Corpus. @syedmunawwar solved it.