Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -124,7 +124,25 @@ with gr.Blocks(title="📚 Book Price Decider", theme=gr.themes.Soft()) as app:
|
|
| 124 |
|
| 125 |
# ── Tab 3 : À propos ───────────────────────────────
|
| 126 |
with gr.Tab("ℹ️ About"):
|
| 127 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 128 |
## About this app
|
| 129 |
|
| 130 |
This app is part of the **AI for Big Data Management** group project at ESCP Business School.
|
|
|
|
| 124 |
|
| 125 |
# ── Tab 3 : À propos ───────────────────────────────
|
| 126 |
with gr.Tab("ℹ️ About"):
|
| 127 |
+
gr.Markdown("""
|
| 128 |
+
## About this app
|
| 129 |
+
|
| 130 |
+
This app is part of the **AI for Big Data Management** group project at ESCP Business School.
|
| 131 |
+
|
| 132 |
+
### Pipeline
|
| 133 |
+
1. **Real-world data** scraped from Books to Scrape
|
| 134 |
+
2. **Synthetic data** generated to enrich with reviews & sales history
|
| 135 |
+
3. **VADER sentiment analysis** on customer reviews
|
| 136 |
+
4. **ARIMA forecasting** on sales time series
|
| 137 |
+
5. **Rule-based pricing decisions** combining sentiment + sales volume
|
| 138 |
+
6. **This Hugging Face app** as the final automation layer
|
| 139 |
+
|
| 140 |
+
### Team — Group A4
|
| 141 |
+
- Project Manager
|
| 142 |
+
- Data Analyst
|
| 143 |
+
- UX Designer(s)
|
| 144 |
+
- Content Specialist
|
| 145 |
+
""")
|
| 146 |
## About this app
|
| 147 |
|
| 148 |
This app is part of the **AI for Big Data Management** group project at ESCP Business School.
|