Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,5 +10,41 @@ pinned: false
|
|
| 10 |
license: mit
|
| 11 |
short_description: Sentiment, NER, and translation using Transformers.
|
| 12 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 10 |
license: mit
|
| 11 |
short_description: Sentiment, NER, and translation using Transformers.
|
| 12 |
---
|
| 13 |
+
---
|
| 14 |
+
title: Mini NLP AI Assistant
|
| 15 |
+
emoji: 🤖
|
| 16 |
+
colorFrom: blue
|
| 17 |
+
colorTo: indigo
|
| 18 |
+
sdk: gradio
|
| 19 |
+
app_file: app.py
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
# 🤖 Mini NLP AI Assistant
|
| 23 |
+
|
| 24 |
+
A lightweight NLP app that performs:
|
| 25 |
+
|
| 26 |
+
- 🧠 Sentiment Analysis
|
| 27 |
+
- 🔍 Named Entity Recognition (NER)
|
| 28 |
+
- 🌍 Translation (English to Hindi or French)
|
| 29 |
+
|
| 30 |
+
Built using Hugging Face Transformers and Gradio.
|
| 31 |
+
|
| 32 |
+
## 🚀 How to Use
|
| 33 |
+
1. Enter an English sentence.
|
| 34 |
+
2. Choose a translation language (Hindi or French).
|
| 35 |
+
3. View sentiment, named entities, and translated sentence.
|
| 36 |
+
|
| 37 |
+
### 🧪 Example
|
| 38 |
+
**Input:**
|
| 39 |
+
"Narendra Modi visited Paris in 2023."
|
| 40 |
+
|
| 41 |
+
**Output:**
|
| 42 |
+
- Sentiment: POSITIVE
|
| 43 |
+
- Named Entities: Narendra Modi (PER), Paris (LOC), 2023 (DATE)
|
| 44 |
+
- Translation (Hindi): नरेंद्र मोदी ने 2023 में पेरिस का दौरा किया।
|
| 45 |
+
|
| 46 |
+
---
|
| 47 |
+
|
| 48 |
+
👩💻 Built by **Sonia**
|
| 49 |
|
| 50 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|