Spaces:
Runtime error
Runtime error
Meshal Falah
commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -12,3 +12,51 @@ short_description: Multifunctional AI Language App
|
|
| 12 |
---
|
| 13 |
|
| 14 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
| 15 |
+
|
| 16 |
+
# π§ AI Language Toolkit
|
| 17 |
+
|
| 18 |
+
This Gradio-based application brings together three core NLP capabilities in one interactive interface:
|
| 19 |
+
|
| 20 |
+
## β¨ Features
|
| 21 |
+
|
| 22 |
+
πΉ **Sentiment Analysis**
|
| 23 |
+
Detects the emotional tone of any sentence (positive, negative, or neutral) using a multilingual model.
|
| 24 |
+
|
| 25 |
+
πΉ **Text Summarization**
|
| 26 |
+
Summarizes long passages into concise, clear summaries with a powerful transformer model.
|
| 27 |
+
|
| 28 |
+
πΉ **Text-to-Speech (TTS)**
|
| 29 |
+
Converts English text into realistic speech using a neural voice model (Coqui TTS).
|
| 30 |
+
|
| 31 |
+
---
|
| 32 |
+
|
| 33 |
+
## π How to Use
|
| 34 |
+
|
| 35 |
+
1. Select a tab based on the task:
|
| 36 |
+
- **Sentiment Analysis** β Enter a sentence to analyze its sentiment.
|
| 37 |
+
- **Summarization** β Paste a long text to get a short summary.
|
| 38 |
+
- **Text-to-Speech** β Type a sentence to hear it spoken aloud.
|
| 39 |
+
|
| 40 |
+
2. Click the corresponding button to get your result.
|
| 41 |
+
|
| 42 |
+
---
|
| 43 |
+
|
| 44 |
+
## π οΈ Technical Info
|
| 45 |
+
|
| 46 |
+
- Built with **Gradio**
|
| 47 |
+
- Models used:
|
| 48 |
+
- `tabularisai/multilingual-sentiment-analysis` (Sentiment)
|
| 49 |
+
- `facebook/bart-large-cnn` (Summarization)
|
| 50 |
+
- `tts_models/en/ljspeech/tacotron2-DDC` (TTS)
|
| 51 |
+
|
| 52 |
+
---
|
| 53 |
+
|
| 54 |
+
## π¦ Requirements
|
| 55 |
+
|
| 56 |
+
This Space uses the following libraries:
|
| 57 |
+
```txt
|
| 58 |
+
transformers
|
| 59 |
+
gradio
|
| 60 |
+
TTS
|
| 61 |
+
torch
|
| 62 |
+
sentencepiece
|