dhani10 commited on
Commit
81b9817
Β·
verified Β·
1 Parent(s): a7526da

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -4
README.md CHANGED
@@ -1,6 +1,53 @@
1
- # SuperKart Sales Prediction Frontend (Docker + Streamlit)
 
 
 
 
 
 
 
 
 
2
 
3
- Streamlit UI for SuperKart Sales prediction. Uses a REST API backend hosted on Hugging Face Spaces.
4
 
5
- - βœ… Online and batch prediction
6
- - πŸ”— Backend: https://dhani10-SuperKartSalesPredictionBackend.hf.space
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: SuperKart Sales Prediction
3
+ emoji: πŸ›’
4
+ colorFrom: purple
5
+ colorTo: blue
6
+ sdk: streamlit
7
+ sdk_version: "1.35.0"
8
+ app_file: app.py
9
+ pinned: false
10
+ ---
11
 
12
+ # πŸ›’ SuperKart Sales Prediction Frontend (Streamlit)
13
 
14
+ This is the **Streamlit UI** for the SuperKart Sales Prediction API.
15
+
16
+ It supports:
17
+ - βœ… Online sales prediction for a single product
18
+ - πŸ“¦ Batch prediction via CSV file upload
19
+
20
+ ---
21
+
22
+ ### πŸ”— Backend API
23
+
24
+ Powered by the backend hosted at:
25
+
26
+ - POST `/v1/sales`: Predict sales for a single product
27
+ - POST `/v1/salesbatch`: Predict for a batch of products
28
+
29
+ Backend URL: https://dhani10-SuperKartSalesPredictionBackend.hf.space
30
+
31
+ ---
32
+
33
+ ### πŸ“‹ Required Features
34
+
35
+ | Feature | Example |
36
+ |--------------------------|-----------------|
37
+ | Product_Weight | 10.5 |
38
+ | Product_Allocated_Area | 0.08 |
39
+ | Product_MRP | 150.0 |
40
+ | Store_Establishment_Year | 2005 |
41
+ | Product_Sugar_Content | "Regular" |
42
+ | Product_Type | "Snack Foods" |
43
+ | Store_Size | "Medium" |
44
+ | Store_Location_City_Type| "Tier 2" |
45
+ | Store_Type | "Supermarket Type1" |
46
+
47
+ ---
48
+
49
+ ### πŸš€ Live Frontend
50
+
51
+ πŸ‘‰ [Launch Streamlit App](https://dhani10-SuperKartSalesPredictionFrontend.hf.space)
52
+
53
+ ---