Spaces:
Sleeping
Sleeping
Fix README frontmatter
Browse files
README.md
CHANGED
|
@@ -1,36 +1,21 @@
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
title: SchemeImpactNet
|
| 3 |
emoji: ποΈ
|
| 4 |
colorFrom: orange
|
| 5 |
colorTo: red
|
| 6 |
sdk: docker
|
|
|
|
| 7 |
pinned: false
|
| 8 |
license: mit
|
| 9 |
-
app_port: 7860
|
| 10 |
---
|
| 11 |
|
| 12 |
# SchemeImpactNet
|
| 13 |
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
Built with FastAPI + Streamlit + SciPy LP + XGBoost.
|
| 17 |
-
|
| 18 |
-
## Features
|
| 19 |
-
|
| 20 |
-
- π **Overview** β National MNREGA employment and wage trends (2014β2024)
|
| 21 |
-
- π **District Explorer** β Deep-dive into any district's historical performance
|
| 22 |
-
- π€ **Predictions** β GBR V3 district-level forecasts (walk-forward CV RΒ²β0.91)
|
| 23 |
-
- βοΈ **Budget Optimizer** β SciPy LP budget-neutral reallocation
|
| 24 |
-
- πΊοΈ **Spatial Map** β District-level prediction map across India
|
| 25 |
-
- π§ **Strategic Insights** β Auto-generated policy intelligence
|
| 26 |
-
|
| 27 |
-
## Architecture
|
| 28 |
-
|
| 29 |
-
```
|
| 30 |
-
FastAPI (port 8000) βββ SQLite (seeded from processed CSVs)
|
| 31 |
-
Streamlit (port 7860) βββ API client β charts & dashboards
|
| 32 |
-
```
|
| 33 |
-
|
| 34 |
-
## Data
|
| 35 |
|
| 36 |
-
|
|
|
|
|
|
|
|
|
| 1 |
+
# Overwrite README.md with correct HF frontmatter
|
| 2 |
+
cat > README.md << 'EOF'
|
| 3 |
---
|
| 4 |
title: SchemeImpactNet
|
| 5 |
emoji: ποΈ
|
| 6 |
colorFrom: orange
|
| 7 |
colorTo: red
|
| 8 |
sdk: docker
|
| 9 |
+
app_port: 7860
|
| 10 |
pinned: false
|
| 11 |
license: mit
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
# SchemeImpactNet
|
| 15 |
|
| 16 |
+
Predictive impact analysis and budget optimisation for India's MNREGA rural employment scheme.
|
| 17 |
+
EOF
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
+
git add README.md
|
| 20 |
+
git commit -m "Fix README frontmatter"
|
| 21 |
+
git push
|