Skip to content

This is a repo including all projects in my Introduction to Natural Language Processing course (DATA130006) in School of Data Science @fudan University.

Notifications You must be signed in to change notification settings

gottaBoy/FDU-Natural-Language-Processing

 
 

Repository files navigation

Introduction to Natural Language Processing @ FDU

This is a repo including all projects in my Introduction to Natural Language Processing course (DATA130006) in School of Data Science @Fudan University.

NOTICE: Requirements and code listed may be outdated, please refer to course website to see latest news.

Quick review of Projects

Project 1. Spell Correction

  • This project is aimed at using doing spell correction using language model and channel model.
  • Selection Mechanism: We choose the candidate with the highest probability.
  • Language Model: P(c) is the probability that c appears as a word of English text. We use Chain Rule and Markov Assumption to compute it.
  • Candidate Model: We use Edit Distance to find which candidate corrections, c, to consider.
  • Channel Model: P(w|c) is The probability that w would be typed in a text when the author meant c.
  • You can find detailed requirements of this project here and my report is here. My score of this project is: 13.4/15.

Project 2. Stock Market Prediction

  • This project is aimed at using Text Classification and Sentiment Analysis to process financial news and predict whether the price of a stock will go up or down.
  • For reading and saving data, I use libraries like xlrd, pickle and codecs. In terms of tokenization, I choose Jieba.
  • To achieve higher accuracy rate, I’ve added some financial dictionary to Jieba and removed stop-word from the already tokenized word list. As for extracting features, both positive and negative word dictionary are used and only considering the most common words in news for the purpose of reducing features dimension.
  • Talking about training and testing models, I divided the Development Set into Training Set and Dev-Test Set, and have used cross validation to find the best classifier among Naive Bayes, Decision Tree, Maximum Entropy from nltk and Bernoulli NB, Logistic Regression, SVC, Linear SVC, NuSVC from sklearn. Finally, the best accuracy was achieved at 69.5% with SVM.
  • You can find my report here and my score of this project is: 15/15.

Project 3. Chinese Event Extraction

  • This project is aimed at doing sequence labeling to extract Chinese event using Hidden Markov Models and Conditional Random Field, which can be separated as two subtasks: trigger labeling (for 8 types) and argument labeling (for 35 types).
  • During this project, for reading and saving data, I use libraries like pickle and codecs. In terms of tokenization and tagging Part-Of-Speech for preparation for the CRF toolkit, I choose Jieba. To achieve higher accuracy rate for HMM, I’ve used several smoothing methods, and implemented both bigram and trigram models. Talking about training and testing models, I divided the Development Set into Training Set and Dev-Test Set. Finally, the best accuracy was achieved at 71.65% for argument, 94.68% for trigger with CRF, 96.15% for argument, 71.88% for trigger with HMM.
  • You can find my report here and my score of this project is: 14.4/15.

Project 4. Word2Vec and Sentiment Analysis

  • This project is aimed at using word2vec models for sentiment analysis, which can be separated as two subtasks: implementing word2vec model(Skip-gram in this task) to train my own word vectors, and use the average of all the word vectors in each sentence as its feature to train a classifier(e.g. softmax regression) with gradient descent method.
  • During this project, alone with implementing the already well-framed code block, I’ve spent much time improving my code’s efficiency and comparing different implementation meth- ods. Talking about the sentiment analysis, to achieve higher accuracy, I’ve tried different combinations with Context size C, word vector’s dimension dimVectors and REGULARIZATION. In terms of training and testing models, the Development Set has been divided into Training Set and Dev-Test Set. Finally, the best accuracy for dev set was achieved at 29.79%.
  • You can find detailed assignment here and my solution to it here. My report is here and my score of this project is: 14.6/15.

About

This is a repo including all projects in my Introduction to Natural Language Processing course (DATA130006) in School of Data Science @fudan University.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 32.7%
  • C++ 29.0%
  • HTML 20.1%
  • Python 7.0%
  • Makefile 3.0%
  • C 2.6%
  • Other 5.6%