hassansattar commited on
Commit
cc1e783
·
verified ·
1 Parent(s): 099babe

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## 1) Create Amazon Product Review Sentiment Analysis
2
+
3
+
4
+ ### NOTE:
5
+ #### Download the Glove Embedding from Kaggle here : https://www.kaggle.com/datasets/danielwillgeorge/glove6b100dtxt
6
+
7
+
8
+ ## Project Overview
9
+
10
+ This repository contains a machine learning project focused on performing sentiment analysis on Amazon product reviews. The aim is to classify the sentiments expressed in the reviews as either positive or negative. This can assist businesses in automating the analysis of customer feedback and enhance user experience through improved product recommendations.
11
+
12
+ ## Problem Setup
13
+
14
+ The task is framed as a binary classification problem:
15
+ - **Input**: Text of a product review.
16
+ - **Output**: Sentiment classification (Positive or Negative).
17
+
18
+ ## Data Used
19
+
20
+ The dataset comprises reviews collected from Amazon, each labeled as either positive or negative based on the sentiment expressed by the reviewer. The dataset includes:
21
+ - **Review Text**: The text content of the review.
22
+ - **Sentiment Label**: Binary labels (Positive or Negative).
23
+
24
+ ### Sample Data Structure
25
+ ```python
26
+ {
27
+ "reviewText": "Great product, loved it!",
28
+ "sentiment": "Positive"
29
+ }
30
+ ```
31
+
32
+ ## Technologies and Techniques Used
33
+ - **Python**: For all backend operations including data handling and model training.
34
+ - **TensorFlow/Keras**: To build and train the neural network.
35
+ - **Natural Language Processing**: Techniques such as tokenization and vectorization to convert text data into a form that can be fed into the model.