meshsl commited on
Commit
5ad553a
Β·
verified Β·
1 Parent(s): 530845c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -0
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