https://github.com/ananthakrishnan12/sentimental-analysis-on-hotel-reviews
https://github.com/ananthakrishnan12/sentimental-analysis-on-hotel-reviews
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ananthakrishnan12/sentimental-analysis-on-hotel-reviews
- Owner: Ananthakrishnan12
- Created: 2023-07-14T15:57:02.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-14T16:20:03.000Z (almost 2 years ago)
- Last Synced: 2023-07-14T17:23:10.198Z (almost 2 years ago)
- Language: Jupyter Notebook
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sentimental Analysis on Hotel Reviews::
Abstarct: With the development of e-commerce, a large number of hotel reviews have been produced. According to the short text features of hotel reviews, sentiment classification method based on emotion dictionary needs a lot of emotional database resources, while machine learning method needs complex artificial design features and feature extraction process. In this model, long short term memory is proposed. The text classification algorithm is used to analyze the sentiment tendency. Firstly, Data cleaned Text are used to process the short comment text into the LSTM network, and dropout algorithm is added to prevent over fitting to get the final classification model, Using the unique characteristics of short-term memory of LSTM network, it has achieved a good effect on sentiment classification of hotel reviews.# To install Required Dependency:
Type pip install -r requirnments.txt# Steps which are Implemented in this Model:
1.Data collection (https://www.kaggle.com/code/jonathanoheix/sentiment-analysis-with-hotel-reviews/input)2.Data Description
3.Data Preprocessing: a) check duplicates in the data b) cleaning /?@ symbol form the URL
4.Data Transformation: a) Converting Text into Numerical using Tokenization
5.Model Training: a) using LSTM Algorithm
6.Evaluation Metrics: a)ConfusionMatrix,precision score,recall score,accuracy score
7.convert to h5 file.
8.Prediction.