DineshKumar1329 commited on
Commit
6590cbb
·
verified ·
1 Parent(s): 9c5997a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -3
README.md CHANGED
@@ -1,3 +1,11 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ ## Data Collection
6
+
7
+ The sentiment data used in this project was collected manually. The dataset, stored in an Excel file (`Sentiment.xlsx`), includes text samples with corresponding sentiment labels. Details about the manual data collection process, sources, and criteria are explained in the data collection section of the code.
8
+
9
+ ## Data Cleaning
10
+
11
+ Before training the sentiment analysis model, the collected data undergoes a cleaning process. The `clean_text` function is applied to each text sample, which includes tasks such as lowercasing, HTML tag removal, punctuation removal, and lemmatization. The cleaned data is then used for model training.