Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atharvapathak/customer_sentiment_analysis
Customer sentiment analysis is the process of using natural language processing (NLP) and machine learning techniques to analyze and understand the feelings, opinions, and attitudes expressed by customers in textual data, such as reviews, feedback, and social media posts.
https://github.com/atharvapathak/customer_sentiment_analysis
cnn naive-bayes nlp nltk spacy stemming text-mining tokenization
Last synced: 6 days ago
JSON representation
Customer sentiment analysis is the process of using natural language processing (NLP) and machine learning techniques to analyze and understand the feelings, opinions, and attitudes expressed by customers in textual data, such as reviews, feedback, and social media posts.
- Host: GitHub
- URL: https://github.com/atharvapathak/customer_sentiment_analysis
- Owner: atharvapathak
- License: mit
- Created: 2024-04-10T08:57:42.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-04-10T09:00:13.000Z (7 months ago)
- Last Synced: 2024-10-31T04:06:10.300Z (6 days ago)
- Topics: cnn, naive-bayes, nlp, nltk, spacy, stemming, text-mining, tokenization
- Language: Python
- Homepage:
- Size: 65.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sentiment Analysis on Customer Reviews
### Text engineering courseThis repository holds the implementation of the 2nd (second) assignment for the Text Engineering and Analytics course, which is part of the M.Sc. in Data Science program of the Athens University of Economics and Business.
### Assignment Description:
1. Develop a text classifier for a kind of texts of your choice (e.g., e-mail messages, tweets,
customer reviews) and at least two classes (e.g., spam/ham, positive/negative/neutral)*.
2. You may use Boolean, TF, or TF-IDF features corresponding to words or n-grams, to which you
can also add other features (e.g., length of the text). You may apply any feature selection (or
dimensionality reduction) method you consider appropriate. You may also want to try using
centroids of pre-trained word embeddings (slide 36).
3. You can write your own code to produce feature vectors, perform feature selection (or dimensionality reduction)
and train the classifier (e.g., using SGD and the tricks of slides 59–60, in the case of logistic regression), or
you can use existing implementations and software libraries.
4. You should experiment with at least logistic regression, and optionally other learning algorithms
(e.g., Naive Bayes, k-NN, SVM). Draw learning curves (slides 66, 69) with appropriate measures (e.g., accuracy, F1)
and precision-recall curves (slide 24). Include experimental results of appropriate baselines
(e.g., majority classifiers). Make sure that you use separate training and test data. Tune the
feature set and hyper-parameters (e.g., regularization weight λ) on a held-out part of the
training data or using a cross-validation (slide 26) on the training data. Document clearly in a
short report (max. 5 pages) how your system works (e.g., what algorithms it uses, examples of
input/output) and its experimental results (e.g., learning curves, precision-recall curves).* For e-mail spam filtering, you may want to use the Ling-Spam or Enron-Spam datasets (available
from http://nlp.cs.aueb.gr/software.html). For tweets, you may want to use datasets from
http://alt.qcri.org/semeval2016/task4/. For customer reviews, you may want to use datasets from
http://alt.qcri.org/semeval2016/task5/. Consult the instructor for further details.
* Pre-trained word embeddings are available, for example, from http://nlp.stanford.edu/projects/glove/.
See also word2vec (https://code.google.com/archive/p/word2vec/).# Implementation Details
## Getting started
The following instructions will get you a copy of the project up and running on your local machine for development and testing purposes.### Installing
In order to run the code in your local environment, please make sure your have python 3. and above and to have installed the needed python libraries.
To install the libraries please run on your console:```
pip install -r requirements.txt file
```