Spaces:
Sleeping
Sleeping
Commit Β·
17fc44c
1
Parent(s): 0cf9457
Update README.md with project overview and performance metrics; fix typo in requirements.txt
Browse files- README.md +31 -1
- requirements.txt +1 -1
README.md
CHANGED
|
@@ -11,4 +11,34 @@ license: mit
|
|
| 11 |
short_description: Sentiment Analysis of IMDB Movie Reviews
|
| 12 |
---
|
| 13 |
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
short_description: Sentiment Analysis of IMDB Movie Reviews
|
| 12 |
---
|
| 13 |
|
| 14 |
+
# NLP IMDB Sentiment Analysis π
|
| 15 |
+
|
| 16 |
+
A **Sentiment Analysis** application for **IMDB Movie Reviews** using **Gradio** and **BERT**. This project demonstrates how to use machine learning models to classify text data into positive or negative sentiments.
|
| 17 |
+
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
## π Project Overview
|
| 21 |
+
|
| 22 |
+
This project leverages **Natural Language Processing (NLP)** techniques to analyze the sentiment of movie reviews from the IMDB dataset. It uses a pre-trained **BERT model** fine-tuned for sentiment classification and provides an interactive user interface powered by **Gradio**.
|
| 23 |
+
|
| 24 |
+
### Key Features:
|
| 25 |
+
- **Interactive UI**: Built with Gradio for easy interaction.
|
| 26 |
+
- **State-of-the-Art Model**: Uses a fine-tuned BERT model for high accuracy.
|
| 27 |
+
- **Real-Time Predictions**: Analyze sentiments of movie reviews instantly.
|
| 28 |
+
- **Customizable**: Easily extendable for other text classification tasks.
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
### π Results and Performance
|
| 32 |
+
The fine-tuned BERT model achieves the following performance metrics on the IMDB dataset:
|
| 33 |
+
|
| 34 |
+
- Accuracy: 95%
|
| 35 |
+
- Precision: 94%
|
| 36 |
+
- Recall: 93%
|
| 37 |
+
- F1-Score: 94%
|
| 38 |
+
|
| 39 |
+
π Contact
|
| 40 |
+
For any questions or feedback, feel free to reach out:
|
| 41 |
+
|
| 42 |
+
Email: [Meet Mendapara](mailto://meetmendapara09@gmail.com)
|
| 43 |
+
GitHub: [MeetMendapara09](https://github.com/Meetmendapara09)
|
| 44 |
+
---
|
requirements.txt
CHANGED
|
@@ -2,5 +2,5 @@ huggingface_hub
|
|
| 2 |
transformers
|
| 3 |
torch
|
| 4 |
gradio
|
| 5 |
-
|
| 6 |
numpy
|
|
|
|
| 2 |
transformers
|
| 3 |
torch
|
| 4 |
gradio
|
| 5 |
+
matplotlib
|
| 6 |
numpy
|