Hasitha16 commited on
Commit
4da3017
·
verified ·
1 Parent(s): f1f4d7f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -7
README.md CHANGED
@@ -2,16 +2,56 @@
2
  license: apache-2.0
3
  title: NeuroPulse AI
4
  sdk: docker
5
- emoji: 🌍🧠
6
  colorFrom: indigo
7
  colorTo: pink
8
- pinned: false
9
  app_file: Dockerfile
10
  ---
11
- Multimodal Feedback Analyzer with Streamlit + FastAPI.
12
- Summarization · Sentiment · Emotion · Aspects · Smart Clustering.
13
 
14
- ## Running locally
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  ```bash
16
- streamlit run app/frontend/frontend.py
17
- python -m uvicorn app.main:app --reload
 
 
 
 
 
 
 
 
2
  license: apache-2.0
3
  title: NeuroPulse AI
4
  sdk: docker
5
+ emoji: 🧠📊
6
  colorFrom: indigo
7
  colorTo: pink
8
+ pinned: true
9
  app_file: Dockerfile
10
  ---
 
 
11
 
12
+ # 🧠 NeuroPulse AI
13
+
14
+ **Multimodal Feedback Intelligence using Streamlit + FastAPI + Transformers**
15
+
16
+ Analyze customer reviews using NLP pipelines for:
17
+ - ✅ Summarization
18
+ - 😊 Sentiment & Emotion Detection
19
+ - 🧩 Aspect-Based Sentiment
20
+ - 🔁 LLM Q&A (Follow-Up)
21
+ - 🧠 Smart Clustering
22
+ - 📈 Visual Charts in Bulk Mode
23
+ - 🎧 Voice Summary Output (TTS)
24
+
25
+ ---
26
+
27
+ ## 🚀 Features
28
+
29
+ - Works for 10+ industries and 12+ product categories
30
+ - Dual UI Modes: Single Review and Bulk CSV
31
+ - GenAI-powered Smart Summary + Follow-up Q&A
32
+ - Audio output (Text-to-Speech) in 6 languages
33
+ - Optional “Intelligence Mode” toggle for LLM enrichment
34
+ - Deployable on Hugging Face Spaces or Docker
35
+
36
+ ---
37
+
38
+ ## 🧪 Demo Use-Cases
39
+
40
+ - Healthtech: Analyze feedback from appointment apps or medical devices
41
+ - E-commerce: Summarize customer reviews for mobile or streaming apps
42
+ - General apps: Identify UX issues across platforms like iOS, Android, Web
43
+
44
+ ---
45
+
46
+ ## 🛠 Running Locally
47
+
48
  ```bash
49
+ # Clone the repository
50
+ git clone https://github.com/your-username/neuro-app.git
51
+ cd neuro-app
52
+
53
+ # Build the Docker image
54
+ docker build -t neuro-app .
55
+
56
+ # Run the app
57
+ docker run -p 7860:7860 -p 8000:8000 neuro-app