Day 14: Sentiment Analysis
Sentiment analysis is determining the emotion of the writer using only a string of characters. For humans this is very easy but this is a daunting task for a computer. One thing a computer does to deconstruct a sentence is turn it into a vector. Based on weights give to each specific word a sentence can be represented by a list of numbers. These numbers can more easily be analyzed by a computer. Surprisingly interpreting sentences as vectors is an effective tool for computers. Today i looked over code that implemented a VQA algorithm that performed sentiment analysis.The program looked at a dataset of tweets that were labeled as positive or negative. After training in the data the program was able to identify new sentences as positive or negative with surprisingly good accuracy. In the future I plan to implement my own VQA algorithm.
Comments
Post a Comment