Hidden Markov Model

Role
Developer
Course
CS 10: Problem Solving via Object Oriented Programming
Tools
Java
Duration
Overview
I built a natural language processing algorithm using a Hidden Markov Model. It labels each word in a sentence with its part of speech, based off of the book "Natural Language Processing with Python." Here are some of the technical details of this project:
Data Collection: Utilized the Brown corpus for training and testing to ensure a diverse representation of sentence structures.
Model Training: Implemented an HMM to calculate transition and observation probabilities, converting counts to log probabilities for accuracy.
Viterbi Algorithm: Optimally tagged words in sequence, and improved tagging accuracy through dynamic programming.
Please contact me at emiko.rohn@gmail.com to see the GitHub repo.