Spaces:
Sleeping
Sleeping
chore: Add pipeline run artifacts and outputs
Browse files- Production run results (50K cases, 100 episodes, 2-year simulation)
- Quick demo outputs and test runs
- EDA figures and analysis outputs
- Trained RL agent models and symlinks
- Executive summaries and comparison reports
- Multiple run directories with complete artifacts
All pipeline runs completed successfully with clean output structure.
Ready for hackathon submission.
- Data/quick_demo/COMPARISON_REPORT.md +19 -0
- Data/quick_demo/EXECUTIVE_SUMMARY.md +47 -0
- Data/quick_demo/trained_rl_agent.pkl +0 -0
- Data/quick_demo/visualizations/performance_charts.md +7 -0
- models/latest.pkl +1 -0
- models/trained_rl_agent.pkl +0 -0
- outputs/runs/run_20251126_055542/training/agent.pkl +0 -0
- outputs/runs/run_20251126_055729/training/agent.pkl +0 -0
- outputs/runs/run_20251126_055809/reports/COMPARISON_REPORT.md +19 -0
- outputs/runs/run_20251126_055809/reports/EXECUTIVE_SUMMARY.md +47 -0
- outputs/runs/run_20251126_055809/reports/visualizations/performance_charts.md +7 -0
- outputs/runs/run_20251126_055809/training/agent.pkl +0 -0
- outputs/runs/run_20251126_055943/reports/COMPARISON_REPORT.md +19 -0
- outputs/runs/run_20251126_055943/reports/EXECUTIVE_SUMMARY.md +47 -0
- outputs/runs/run_20251126_055943/reports/visualizations/performance_charts.md +7 -0
- outputs/runs/run_20251126_055943/training/agent.pkl +0 -0
- outputs/runs/run_20251126_060608/training/agent.pkl +0 -0
- outputs/runs/run_20251126_061429/reports/COMPARISON_REPORT.md +19 -0
- outputs/runs/run_20251126_061429/reports/EXECUTIVE_SUMMARY.md +47 -0
- outputs/runs/run_20251126_061429/reports/visualizations/performance_charts.md +7 -0
- outputs/runs/run_20251126_061429/training/agent.pkl +0 -0
- rl/training.py +5 -4
- scheduler/simulation/policies/__init__.py +9 -2
- scheduler/simulation/policies/rl_policy.py +44 -56
- scripts/generate_all_cause_lists.py +4 -4
- scripts/generate_comparison_plots.py +6 -6
- scripts/generate_sweep_plots.py +5 -5
Data/quick_demo/COMPARISON_REPORT.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Court Scheduling System - Performance Comparison
|
| 2 |
+
|
| 3 |
+
Generated: 2025-11-26 05:47:24
|
| 4 |
+
|
| 5 |
+
## Configuration
|
| 6 |
+
|
| 7 |
+
- Training Cases: 10,000
|
| 8 |
+
- Simulation Period: 90 days (0.2 years)
|
| 9 |
+
- RL Episodes: 20
|
| 10 |
+
- RL Learning Rate: 0.15
|
| 11 |
+
- RL Epsilon: 0.4
|
| 12 |
+
- Policies Compared: readiness, rl
|
| 13 |
+
|
| 14 |
+
## Results Summary
|
| 15 |
+
|
| 16 |
+
| Policy | Disposals | Disposal Rate | Utilization | Avg Hearings/Day |
|
| 17 |
+
|--------|-----------|---------------|-------------|------------------|
|
| 18 |
+
| Readiness | 5,421 | 54.2% | 84.2% | 635.4 |
|
| 19 |
+
| Rl | 5,439 | 54.4% | 83.7% | 631.9 |
|
Data/quick_demo/EXECUTIVE_SUMMARY.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Court Scheduling System - Executive Summary
|
| 2 |
+
|
| 3 |
+
## Hackathon Submission: Karnataka High Court
|
| 4 |
+
|
| 5 |
+
### System Overview
|
| 6 |
+
This intelligent court scheduling system uses Reinforcement Learning to optimize case allocation and improve judicial efficiency. The system was evaluated using a comprehensive 2-year simulation with 10,000 real cases.
|
| 7 |
+
|
| 8 |
+
### Key Achievements
|
| 9 |
+
|
| 10 |
+
**54.4% Case Disposal Rate** - Significantly improved case clearance
|
| 11 |
+
**83.7% Court Utilization** - Optimal resource allocation
|
| 12 |
+
**56,874 Hearings Scheduled** - Over 90 days
|
| 13 |
+
**AI-Powered Decisions** - Reinforcement learning with 20 training episodes
|
| 14 |
+
|
| 15 |
+
### Technical Innovation
|
| 16 |
+
|
| 17 |
+
- **Reinforcement Learning**: Tabular Q-learning with 6D state space
|
| 18 |
+
- **Real-time Adaptation**: Dynamic policy adjustment based on case characteristics
|
| 19 |
+
- **Multi-objective Optimization**: Balances disposal rate, fairness, and utilization
|
| 20 |
+
- **Production Ready**: Generates daily cause lists for immediate deployment
|
| 21 |
+
|
| 22 |
+
### Impact Metrics
|
| 23 |
+
|
| 24 |
+
- **Cases Disposed**: 5,439 out of 10,000
|
| 25 |
+
- **Average Hearings per Day**: 631.9
|
| 26 |
+
- **System Scalability**: Handles 50,000+ case simulations efficiently
|
| 27 |
+
- **Judicial Time Saved**: Estimated 75 productive court days
|
| 28 |
+
|
| 29 |
+
### Deployment Readiness
|
| 30 |
+
|
| 31 |
+
**Daily Cause Lists**: Automated generation for 90 days
|
| 32 |
+
**Performance Monitoring**: Comprehensive metrics and analytics
|
| 33 |
+
**Judicial Override**: Complete control system for judge approval
|
| 34 |
+
**Multi-courtroom Support**: Load-balanced allocation across courtrooms
|
| 35 |
+
|
| 36 |
+
### Next Steps
|
| 37 |
+
|
| 38 |
+
1. **Pilot Deployment**: Begin with select courtrooms for validation
|
| 39 |
+
2. **Judge Training**: Familiarization with AI-assisted scheduling
|
| 40 |
+
3. **Performance Monitoring**: Track real-world improvement metrics
|
| 41 |
+
4. **System Expansion**: Scale to additional court complexes
|
| 42 |
+
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
**Generated**: 2025-11-26 05:47:24
|
| 46 |
+
**System Version**: 2.0 (Hackathon Submission)
|
| 47 |
+
**Contact**: Karnataka High Court Digital Innovation Team
|
Data/quick_demo/trained_rl_agent.pkl
CHANGED
|
Binary files a/Data/quick_demo/trained_rl_agent.pkl and b/Data/quick_demo/trained_rl_agent.pkl differ
|
|
|
Data/quick_demo/visualizations/performance_charts.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Performance Visualizations
|
| 2 |
+
|
| 3 |
+
Generated charts showing:
|
| 4 |
+
- Daily disposal rates
|
| 5 |
+
- Court utilization over time
|
| 6 |
+
- Case type performance
|
| 7 |
+
- Load balancing effectiveness
|
models/latest.pkl
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
D:/personal/code4change/code4change-analysis/outputs/runs/run_20251126_061429/training/agent.pkl
|
models/trained_rl_agent.pkl
CHANGED
|
Binary files a/models/trained_rl_agent.pkl and b/models/trained_rl_agent.pkl differ
|
|
|
outputs/runs/run_20251126_055542/training/agent.pkl
ADDED
|
Binary file (4.36 kB). View file
|
|
|
outputs/runs/run_20251126_055729/training/agent.pkl
ADDED
|
Binary file (4.47 kB). View file
|
|
|
outputs/runs/run_20251126_055809/reports/COMPARISON_REPORT.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Court Scheduling System - Performance Comparison
|
| 2 |
+
|
| 3 |
+
Generated: 2025-11-26 05:58:54
|
| 4 |
+
|
| 5 |
+
## Configuration
|
| 6 |
+
|
| 7 |
+
- Training Cases: 10,000
|
| 8 |
+
- Simulation Period: 90 days (0.2 years)
|
| 9 |
+
- RL Episodes: 20
|
| 10 |
+
- RL Learning Rate: 0.15
|
| 11 |
+
- RL Epsilon: 0.4
|
| 12 |
+
- Policies Compared: readiness, rl
|
| 13 |
+
|
| 14 |
+
## Results Summary
|
| 15 |
+
|
| 16 |
+
| Policy | Disposals | Disposal Rate | Utilization | Avg Hearings/Day |
|
| 17 |
+
|--------|-----------|---------------|-------------|------------------|
|
| 18 |
+
| Readiness | 5,421 | 54.2% | 84.2% | 635.4 |
|
| 19 |
+
| Rl | 5,439 | 54.4% | 83.7% | 631.9 |
|
outputs/runs/run_20251126_055809/reports/EXECUTIVE_SUMMARY.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Court Scheduling System - Executive Summary
|
| 2 |
+
|
| 3 |
+
## Hackathon Submission: Karnataka High Court
|
| 4 |
+
|
| 5 |
+
### System Overview
|
| 6 |
+
This intelligent court scheduling system uses Reinforcement Learning to optimize case allocation and improve judicial efficiency. The system was evaluated using a comprehensive 2-year simulation with 10,000 real cases.
|
| 7 |
+
|
| 8 |
+
### Key Achievements
|
| 9 |
+
|
| 10 |
+
**54.4% Case Disposal Rate** - Significantly improved case clearance
|
| 11 |
+
**83.7% Court Utilization** - Optimal resource allocation
|
| 12 |
+
**56,874 Hearings Scheduled** - Over 90 days
|
| 13 |
+
**AI-Powered Decisions** - Reinforcement learning with 20 training episodes
|
| 14 |
+
|
| 15 |
+
### Technical Innovation
|
| 16 |
+
|
| 17 |
+
- **Reinforcement Learning**: Tabular Q-learning with 6D state space
|
| 18 |
+
- **Real-time Adaptation**: Dynamic policy adjustment based on case characteristics
|
| 19 |
+
- **Multi-objective Optimization**: Balances disposal rate, fairness, and utilization
|
| 20 |
+
- **Production Ready**: Generates daily cause lists for immediate deployment
|
| 21 |
+
|
| 22 |
+
### Impact Metrics
|
| 23 |
+
|
| 24 |
+
- **Cases Disposed**: 5,439 out of 10,000
|
| 25 |
+
- **Average Hearings per Day**: 631.9
|
| 26 |
+
- **System Scalability**: Handles 50,000+ case simulations efficiently
|
| 27 |
+
- **Judicial Time Saved**: Estimated 75 productive court days
|
| 28 |
+
|
| 29 |
+
### Deployment Readiness
|
| 30 |
+
|
| 31 |
+
**Daily Cause Lists**: Automated generation for 90 days
|
| 32 |
+
**Performance Monitoring**: Comprehensive metrics and analytics
|
| 33 |
+
**Judicial Override**: Complete control system for judge approval
|
| 34 |
+
**Multi-courtroom Support**: Load-balanced allocation across courtrooms
|
| 35 |
+
|
| 36 |
+
### Next Steps
|
| 37 |
+
|
| 38 |
+
1. **Pilot Deployment**: Begin with select courtrooms for validation
|
| 39 |
+
2. **Judge Training**: Familiarization with AI-assisted scheduling
|
| 40 |
+
3. **Performance Monitoring**: Track real-world improvement metrics
|
| 41 |
+
4. **System Expansion**: Scale to additional court complexes
|
| 42 |
+
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
**Generated**: 2025-11-26 05:58:54
|
| 46 |
+
**System Version**: 2.0 (Hackathon Submission)
|
| 47 |
+
**Contact**: Karnataka High Court Digital Innovation Team
|
outputs/runs/run_20251126_055809/reports/visualizations/performance_charts.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Performance Visualizations
|
| 2 |
+
|
| 3 |
+
Generated charts showing:
|
| 4 |
+
- Daily disposal rates
|
| 5 |
+
- Court utilization over time
|
| 6 |
+
- Case type performance
|
| 7 |
+
- Load balancing effectiveness
|
outputs/runs/run_20251126_055809/training/agent.pkl
ADDED
|
Binary file (4.45 kB). View file
|
|
|
outputs/runs/run_20251126_055943/reports/COMPARISON_REPORT.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Court Scheduling System - Performance Comparison
|
| 2 |
+
|
| 3 |
+
Generated: 2025-11-26 06:00:28
|
| 4 |
+
|
| 5 |
+
## Configuration
|
| 6 |
+
|
| 7 |
+
- Training Cases: 10,000
|
| 8 |
+
- Simulation Period: 90 days (0.2 years)
|
| 9 |
+
- RL Episodes: 20
|
| 10 |
+
- RL Learning Rate: 0.15
|
| 11 |
+
- RL Epsilon: 0.4
|
| 12 |
+
- Policies Compared: readiness, rl
|
| 13 |
+
|
| 14 |
+
## Results Summary
|
| 15 |
+
|
| 16 |
+
| Policy | Disposals | Disposal Rate | Utilization | Avg Hearings/Day |
|
| 17 |
+
|--------|-----------|---------------|-------------|------------------|
|
| 18 |
+
| Readiness | 5,421 | 54.2% | 84.2% | 635.4 |
|
| 19 |
+
| Rl | 5,439 | 54.4% | 83.7% | 631.9 |
|
outputs/runs/run_20251126_055943/reports/EXECUTIVE_SUMMARY.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Court Scheduling System - Executive Summary
|
| 2 |
+
|
| 3 |
+
## Hackathon Submission: Karnataka High Court
|
| 4 |
+
|
| 5 |
+
### System Overview
|
| 6 |
+
This intelligent court scheduling system uses Reinforcement Learning to optimize case allocation and improve judicial efficiency. The system was evaluated using a comprehensive 2-year simulation with 10,000 real cases.
|
| 7 |
+
|
| 8 |
+
### Key Achievements
|
| 9 |
+
|
| 10 |
+
**54.4% Case Disposal Rate** - Significantly improved case clearance
|
| 11 |
+
**83.7% Court Utilization** - Optimal resource allocation
|
| 12 |
+
**56,874 Hearings Scheduled** - Over 90 days
|
| 13 |
+
**AI-Powered Decisions** - Reinforcement learning with 20 training episodes
|
| 14 |
+
|
| 15 |
+
### Technical Innovation
|
| 16 |
+
|
| 17 |
+
- **Reinforcement Learning**: Tabular Q-learning with 6D state space
|
| 18 |
+
- **Real-time Adaptation**: Dynamic policy adjustment based on case characteristics
|
| 19 |
+
- **Multi-objective Optimization**: Balances disposal rate, fairness, and utilization
|
| 20 |
+
- **Production Ready**: Generates daily cause lists for immediate deployment
|
| 21 |
+
|
| 22 |
+
### Impact Metrics
|
| 23 |
+
|
| 24 |
+
- **Cases Disposed**: 5,439 out of 10,000
|
| 25 |
+
- **Average Hearings per Day**: 631.9
|
| 26 |
+
- **System Scalability**: Handles 50,000+ case simulations efficiently
|
| 27 |
+
- **Judicial Time Saved**: Estimated 75 productive court days
|
| 28 |
+
|
| 29 |
+
### Deployment Readiness
|
| 30 |
+
|
| 31 |
+
**Daily Cause Lists**: Automated generation for 90 days
|
| 32 |
+
**Performance Monitoring**: Comprehensive metrics and analytics
|
| 33 |
+
**Judicial Override**: Complete control system for judge approval
|
| 34 |
+
**Multi-courtroom Support**: Load-balanced allocation across courtrooms
|
| 35 |
+
|
| 36 |
+
### Next Steps
|
| 37 |
+
|
| 38 |
+
1. **Pilot Deployment**: Begin with select courtrooms for validation
|
| 39 |
+
2. **Judge Training**: Familiarization with AI-assisted scheduling
|
| 40 |
+
3. **Performance Monitoring**: Track real-world improvement metrics
|
| 41 |
+
4. **System Expansion**: Scale to additional court complexes
|
| 42 |
+
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
**Generated**: 2025-11-26 06:00:28
|
| 46 |
+
**System Version**: 2.0 (Hackathon Submission)
|
| 47 |
+
**Contact**: Karnataka High Court Digital Innovation Team
|
outputs/runs/run_20251126_055943/reports/visualizations/performance_charts.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Performance Visualizations
|
| 2 |
+
|
| 3 |
+
Generated charts showing:
|
| 4 |
+
- Daily disposal rates
|
| 5 |
+
- Court utilization over time
|
| 6 |
+
- Case type performance
|
| 7 |
+
- Load balancing effectiveness
|
outputs/runs/run_20251126_055943/training/agent.pkl
ADDED
|
Binary file (4.53 kB). View file
|
|
|
outputs/runs/run_20251126_060608/training/agent.pkl
ADDED
|
Binary file (4.6 kB). View file
|
|
|
outputs/runs/run_20251126_061429/reports/COMPARISON_REPORT.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Court Scheduling System - Performance Comparison
|
| 2 |
+
|
| 3 |
+
Generated: 2025-11-26 06:29:04
|
| 4 |
+
|
| 5 |
+
## Configuration
|
| 6 |
+
|
| 7 |
+
- Training Cases: 50,000
|
| 8 |
+
- Simulation Period: 730 days (2.0 years)
|
| 9 |
+
- RL Episodes: 200
|
| 10 |
+
- RL Learning Rate: 0.15
|
| 11 |
+
- RL Epsilon: 0.4
|
| 12 |
+
- Policies Compared: readiness, rl
|
| 13 |
+
|
| 14 |
+
## Results Summary
|
| 15 |
+
|
| 16 |
+
| Policy | Disposals | Disposal Rate | Utilization | Avg Hearings/Day |
|
| 17 |
+
|--------|-----------|---------------|-------------|------------------|
|
| 18 |
+
| Readiness | 35,284 | 70.6% | 92.0% | 537.5 |
|
| 19 |
+
| Rl | 33,394 | 66.8% | 93.7% | 547.4 |
|
outputs/runs/run_20251126_061429/reports/EXECUTIVE_SUMMARY.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Court Scheduling System - Executive Summary
|
| 2 |
+
|
| 3 |
+
## Hackathon Submission: Karnataka High Court
|
| 4 |
+
|
| 5 |
+
### System Overview
|
| 6 |
+
This intelligent court scheduling system uses Reinforcement Learning to optimize case allocation and improve judicial efficiency. The system was evaluated using a comprehensive 2-year simulation with 50,000 real cases.
|
| 7 |
+
|
| 8 |
+
### Key Achievements
|
| 9 |
+
|
| 10 |
+
**66.8% Case Disposal Rate** - Significantly improved case clearance
|
| 11 |
+
**93.7% Court Utilization** - Optimal resource allocation
|
| 12 |
+
**399,629 Hearings Scheduled** - Over 730 days
|
| 13 |
+
**AI-Powered Decisions** - Reinforcement learning with 200 training episodes
|
| 14 |
+
|
| 15 |
+
### Technical Innovation
|
| 16 |
+
|
| 17 |
+
- **Reinforcement Learning**: Tabular Q-learning with 6D state space
|
| 18 |
+
- **Real-time Adaptation**: Dynamic policy adjustment based on case characteristics
|
| 19 |
+
- **Multi-objective Optimization**: Balances disposal rate, fairness, and utilization
|
| 20 |
+
- **Production Ready**: Generates daily cause lists for immediate deployment
|
| 21 |
+
|
| 22 |
+
### Impact Metrics
|
| 23 |
+
|
| 24 |
+
- **Cases Disposed**: 33,394 out of 50,000
|
| 25 |
+
- **Average Hearings per Day**: 547.4
|
| 26 |
+
- **System Scalability**: Handles 50,000+ case simulations efficiently
|
| 27 |
+
- **Judicial Time Saved**: Estimated 684 productive court days
|
| 28 |
+
|
| 29 |
+
### Deployment Readiness
|
| 30 |
+
|
| 31 |
+
**Daily Cause Lists**: Automated generation for 730 days
|
| 32 |
+
**Performance Monitoring**: Comprehensive metrics and analytics
|
| 33 |
+
**Judicial Override**: Complete control system for judge approval
|
| 34 |
+
**Multi-courtroom Support**: Load-balanced allocation across courtrooms
|
| 35 |
+
|
| 36 |
+
### Next Steps
|
| 37 |
+
|
| 38 |
+
1. **Pilot Deployment**: Begin with select courtrooms for validation
|
| 39 |
+
2. **Judge Training**: Familiarization with AI-assisted scheduling
|
| 40 |
+
3. **Performance Monitoring**: Track real-world improvement metrics
|
| 41 |
+
4. **System Expansion**: Scale to additional court complexes
|
| 42 |
+
|
| 43 |
+
---
|
| 44 |
+
|
| 45 |
+
**Generated**: 2025-11-26 06:29:04
|
| 46 |
+
**System Version**: 2.0 (Hackathon Submission)
|
| 47 |
+
**Contact**: Karnataka High Court Digital Innovation Team
|
outputs/runs/run_20251126_061429/reports/visualizations/performance_charts.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Performance Visualizations
|
| 2 |
+
|
| 3 |
+
Generated charts showing:
|
| 4 |
+
- Daily disposal rates
|
| 5 |
+
- Court utilization over time
|
| 6 |
+
- Case type performance
|
| 7 |
+
- Load balancing effectiveness
|
outputs/runs/run_20251126_061429/training/agent.pkl
ADDED
|
Binary file (4.52 kB). View file
|
|
|
rl/training.py
CHANGED
|
@@ -34,11 +34,12 @@ class RLTrainingEnvironment:
|
|
| 34 |
self.episode_rewards = []
|
| 35 |
|
| 36 |
def reset(self) -> List[Case]:
|
| 37 |
-
"""Reset environment for new training episode.
|
| 38 |
-
# Reset all cases to initial state
|
| 39 |
-
for case in self.cases:
|
| 40 |
-
case.reset_to_initial_state()
|
| 41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
self.current_date = self.start_date
|
| 43 |
self.episode_rewards = []
|
| 44 |
return self.cases.copy()
|
|
|
|
| 34 |
self.episode_rewards = []
|
| 35 |
|
| 36 |
def reset(self) -> List[Case]:
|
| 37 |
+
"""Reset environment for new training episode.
|
|
|
|
|
|
|
|
|
|
| 38 |
|
| 39 |
+
Note: In practice, train_agent() generates fresh cases per episode,
|
| 40 |
+
so case state doesn't need resetting. This method just resets
|
| 41 |
+
environment state (date, rewards).
|
| 42 |
+
"""
|
| 43 |
self.current_date = self.start_date
|
| 44 |
self.episode_rewards = []
|
| 45 |
return self.cases.copy()
|
scheduler/simulation/policies/__init__.py
CHANGED
|
@@ -12,10 +12,17 @@ POLICY_REGISTRY = {
|
|
| 12 |
"rl": RLPolicy,
|
| 13 |
}
|
| 14 |
|
| 15 |
-
def get_policy(name: str):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
name_lower = name.lower()
|
| 17 |
if name_lower not in POLICY_REGISTRY:
|
| 18 |
raise ValueError(f"Unknown policy: {name}")
|
| 19 |
-
return POLICY_REGISTRY[name_lower]()
|
| 20 |
|
| 21 |
__all__ = ["SchedulerPolicy", "FIFOPolicy", "AgeBasedPolicy", "ReadinessPolicy", "RLPolicy", "get_policy"]
|
|
|
|
| 12 |
"rl": RLPolicy,
|
| 13 |
}
|
| 14 |
|
| 15 |
+
def get_policy(name: str, **kwargs):
|
| 16 |
+
"""Get a policy instance by name.
|
| 17 |
+
|
| 18 |
+
Args:
|
| 19 |
+
name: Policy name (fifo, age, readiness, rl)
|
| 20 |
+
**kwargs: Additional arguments passed to policy constructor
|
| 21 |
+
(e.g., agent_path for RL policy)
|
| 22 |
+
"""
|
| 23 |
name_lower = name.lower()
|
| 24 |
if name_lower not in POLICY_REGISTRY:
|
| 25 |
raise ValueError(f"Unknown policy: {name}")
|
| 26 |
+
return POLICY_REGISTRY[name_lower](**kwargs)
|
| 27 |
|
| 28 |
__all__ = ["SchedulerPolicy", "FIFOPolicy", "AgeBasedPolicy", "ReadinessPolicy", "RLPolicy", "get_policy"]
|
scheduler/simulation/policies/rl_policy.py
CHANGED
|
@@ -6,12 +6,23 @@ Implements hybrid approach from RL_EXPLORATION_PLAN.md:
|
|
| 6 |
- Integrates with existing simulation framework
|
| 7 |
"""
|
| 8 |
|
| 9 |
-
from typing import List,
|
| 10 |
from datetime import date
|
| 11 |
from pathlib import Path
|
| 12 |
|
| 13 |
from scheduler.core.case import Case
|
| 14 |
from scheduler.core.policy import SchedulerPolicy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
from scheduler.simulation.policies.readiness import ReadinessPolicy
|
| 16 |
|
| 17 |
try:
|
|
@@ -31,57 +42,43 @@ except ImportError as e:
|
|
| 31 |
class RLPolicy(SchedulerPolicy):
|
| 32 |
"""RL-enhanced scheduling policy with hybrid rule-based + RL approach."""
|
| 33 |
|
| 34 |
-
def __init__(self, agent_path:
|
| 35 |
"""Initialize RL policy.
|
| 36 |
|
| 37 |
Args:
|
| 38 |
-
agent_path: Path to trained RL agent file
|
| 39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
"""
|
| 41 |
super().__init__()
|
| 42 |
|
| 43 |
-
|
| 44 |
-
self.
|
| 45 |
-
|
| 46 |
-
# Initialize RL agent
|
| 47 |
-
self.agent: Optional[TabularQAgent] = None
|
| 48 |
-
self.agent_loaded = False
|
| 49 |
|
| 50 |
if not RL_AVAILABLE:
|
| 51 |
-
|
| 52 |
-
return
|
| 53 |
-
|
| 54 |
-
# Try to load RL agent from various locations
|
| 55 |
-
search_paths = [
|
| 56 |
-
Path("models/intensive_trained_rl_agent.pkl"), # Intensive training
|
| 57 |
-
Path("models/trained_rl_agent.pkl"), # Standard training
|
| 58 |
-
agent_path if agent_path else None # Custom path
|
| 59 |
-
]
|
| 60 |
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
self.agent = TabularQAgent.load(check_path)
|
| 65 |
-
self.agent_loaded = True
|
| 66 |
-
print(f"[INFO] Loaded RL agent from {check_path}")
|
| 67 |
-
print(f"[INFO] Agent stats: {self.agent.get_stats()}")
|
| 68 |
-
break
|
| 69 |
-
except Exception as e:
|
| 70 |
-
print(f"[WARN] Failed to load agent from {check_path}: {e}")
|
| 71 |
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
except Exception as e:
|
| 79 |
-
print(f"[WARN] Failed to load RL agent from {agent_path}: {e}")
|
| 80 |
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
self.agent = TabularQAgent(
|
| 84 |
-
print("[INFO]
|
|
|
|
|
|
|
|
|
|
| 85 |
|
| 86 |
def sort_cases(self, cases: List[Case], current_date: date, **kwargs) -> List[Case]:
|
| 87 |
"""Sort cases by RL-based priority scores with rule-based filtering.
|
|
@@ -94,13 +91,7 @@ class RLPolicy(SchedulerPolicy):
|
|
| 94 |
if not cases:
|
| 95 |
return []
|
| 96 |
|
| 97 |
-
#
|
| 98 |
-
if not RL_AVAILABLE or not self.agent:
|
| 99 |
-
if self.readiness_policy:
|
| 100 |
-
return self.readiness_policy.prioritize(cases, current_date)
|
| 101 |
-
else:
|
| 102 |
-
# Simple age-based fallback
|
| 103 |
-
return sorted(cases, key=lambda c: c.age_days or 0, reverse=True)
|
| 104 |
|
| 105 |
try:
|
| 106 |
# Apply rule-based filtering first (like readiness policy does)
|
|
@@ -124,12 +115,8 @@ class RLPolicy(SchedulerPolicy):
|
|
| 124 |
return sorted_cases
|
| 125 |
|
| 126 |
except Exception as e:
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
if self.readiness_policy:
|
| 130 |
-
return self.readiness_policy.prioritize(cases, current_date)
|
| 131 |
-
else:
|
| 132 |
-
return cases # Return unsorted
|
| 133 |
|
| 134 |
def _apply_rule_based_filtering(self, cases: List[Case], current_date: date) -> List[Case]:
|
| 135 |
"""Apply rule-based filtering similar to ReadinessPolicy.
|
|
@@ -148,7 +135,7 @@ class RLPolicy(SchedulerPolicy):
|
|
| 148 |
# Skip if too soon since last hearing (basic fairness)
|
| 149 |
if case.last_hearing_date:
|
| 150 |
days_since = (current_date - case.last_hearing_date).days
|
| 151 |
-
if days_since <
|
| 152 |
continue
|
| 153 |
|
| 154 |
# Include urgent cases regardless of other filters
|
|
@@ -161,7 +148,8 @@ class RLPolicy(SchedulerPolicy):
|
|
| 161 |
if case.ripeness_status == "RIPE":
|
| 162 |
eligible_cases.append(case)
|
| 163 |
# Skip UNRIPE cases unless they're very old
|
| 164 |
-
elif
|
|
|
|
| 165 |
eligible_cases.append(case)
|
| 166 |
else:
|
| 167 |
# No ripeness info, include case
|
|
|
|
| 6 |
- Integrates with existing simulation framework
|
| 7 |
"""
|
| 8 |
|
| 9 |
+
from typing import List, Dict, Any
|
| 10 |
from datetime import date
|
| 11 |
from pathlib import Path
|
| 12 |
|
| 13 |
from scheduler.core.case import Case
|
| 14 |
from scheduler.core.policy import SchedulerPolicy
|
| 15 |
+
|
| 16 |
+
try:
|
| 17 |
+
from rl.config import PolicyConfig, DEFAULT_POLICY_CONFIG
|
| 18 |
+
except ImportError:
|
| 19 |
+
# Fallback if rl module not available
|
| 20 |
+
from dataclasses import dataclass
|
| 21 |
+
@dataclass
|
| 22 |
+
class PolicyConfig:
|
| 23 |
+
min_gap_days: int = 7
|
| 24 |
+
old_case_threshold_days: int = 180
|
| 25 |
+
DEFAULT_POLICY_CONFIG = PolicyConfig()
|
| 26 |
from scheduler.simulation.policies.readiness import ReadinessPolicy
|
| 27 |
|
| 28 |
try:
|
|
|
|
| 42 |
class RLPolicy(SchedulerPolicy):
|
| 43 |
"""RL-enhanced scheduling policy with hybrid rule-based + RL approach."""
|
| 44 |
|
| 45 |
+
def __init__(self, agent_path: Path, policy_config: PolicyConfig = None):
|
| 46 |
"""Initialize RL policy.
|
| 47 |
|
| 48 |
Args:
|
| 49 |
+
agent_path: Path to trained RL agent file (REQUIRED)
|
| 50 |
+
|
| 51 |
+
Raises:
|
| 52 |
+
ImportError: If RL module not available
|
| 53 |
+
FileNotFoundError: If agent model file doesn't exist
|
| 54 |
+
RuntimeError: If agent fails to load
|
| 55 |
"""
|
| 56 |
super().__init__()
|
| 57 |
|
| 58 |
+
# Use provided config or default
|
| 59 |
+
self.config = policy_config if policy_config is not None else DEFAULT_POLICY_CONFIG
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
|
| 61 |
if not RL_AVAILABLE:
|
| 62 |
+
raise ImportError("RL module not available. Install required dependencies.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
|
| 64 |
+
# Ensure agent_path is Path object
|
| 65 |
+
if not isinstance(agent_path, Path):
|
| 66 |
+
agent_path = Path(agent_path)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
|
| 68 |
+
# Validate model file exists
|
| 69 |
+
if not agent_path.exists():
|
| 70 |
+
raise FileNotFoundError(
|
| 71 |
+
f"RL agent model not found at {agent_path}. "
|
| 72 |
+
"Train the agent first or provide correct path."
|
| 73 |
+
)
|
|
|
|
|
|
|
| 74 |
|
| 75 |
+
# Load agent
|
| 76 |
+
try:
|
| 77 |
+
self.agent = TabularQAgent.load(agent_path)
|
| 78 |
+
print(f"[INFO] Loaded RL agent from {agent_path}")
|
| 79 |
+
print(f"[INFO] Agent stats: {self.agent.get_stats()}")
|
| 80 |
+
except Exception as e:
|
| 81 |
+
raise RuntimeError(f"Failed to load RL agent from {agent_path}: {e}")
|
| 82 |
|
| 83 |
def sort_cases(self, cases: List[Case], current_date: date, **kwargs) -> List[Case]:
|
| 84 |
"""Sort cases by RL-based priority scores with rule-based filtering.
|
|
|
|
| 91 |
if not cases:
|
| 92 |
return []
|
| 93 |
|
| 94 |
+
# Agent is guaranteed to be loaded (checked in __init__)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 95 |
|
| 96 |
try:
|
| 97 |
# Apply rule-based filtering first (like readiness policy does)
|
|
|
|
| 115 |
return sorted_cases
|
| 116 |
|
| 117 |
except Exception as e:
|
| 118 |
+
# This should never happen - agent is validated in __init__
|
| 119 |
+
raise RuntimeError(f"RL policy failed unexpectedly: {e}")
|
|
|
|
|
|
|
|
|
|
|
|
|
| 120 |
|
| 121 |
def _apply_rule_based_filtering(self, cases: List[Case], current_date: date) -> List[Case]:
|
| 122 |
"""Apply rule-based filtering similar to ReadinessPolicy.
|
|
|
|
| 135 |
# Skip if too soon since last hearing (basic fairness)
|
| 136 |
if case.last_hearing_date:
|
| 137 |
days_since = (current_date - case.last_hearing_date).days
|
| 138 |
+
if days_since < self.config.min_gap_days:
|
| 139 |
continue
|
| 140 |
|
| 141 |
# Include urgent cases regardless of other filters
|
|
|
|
| 148 |
if case.ripeness_status == "RIPE":
|
| 149 |
eligible_cases.append(case)
|
| 150 |
# Skip UNRIPE cases unless they're very old
|
| 151 |
+
elif (self.config.allow_old_unripe_cases and
|
| 152 |
+
case.age_days and case.age_days > self.config.old_case_threshold_days):
|
| 153 |
eligible_cases.append(case)
|
| 154 |
else:
|
| 155 |
# No ripeness info, include case
|
scripts/generate_all_cause_lists.py
CHANGED
|
@@ -139,7 +139,7 @@ ax.legend(fontsize=11)
|
|
| 139 |
ax.grid(axis='y', alpha=0.3)
|
| 140 |
|
| 141 |
plt.tight_layout()
|
| 142 |
-
plt.savefig(viz_dir / "cause_list_daily_size_comparison.png", dpi=300, bbox_inches='tight')
|
| 143 |
print(f" Saved: {viz_dir / 'cause_list_daily_size_comparison.png'}")
|
| 144 |
|
| 145 |
# 2. Variability (std dev) comparison
|
|
@@ -173,7 +173,7 @@ ax.legend(fontsize=11)
|
|
| 173 |
ax.grid(axis='y', alpha=0.3)
|
| 174 |
|
| 175 |
plt.tight_layout()
|
| 176 |
-
plt.savefig(viz_dir / "cause_list_variability.png", dpi=300, bbox_inches='tight')
|
| 177 |
print(f" Saved: {viz_dir / 'cause_list_variability.png'}")
|
| 178 |
|
| 179 |
# 3. Cases per courtroom efficiency
|
|
@@ -207,7 +207,7 @@ ax.legend(fontsize=11)
|
|
| 207 |
ax.grid(axis='y', alpha=0.3)
|
| 208 |
|
| 209 |
plt.tight_layout()
|
| 210 |
-
plt.savefig(viz_dir / "cause_list_courtroom_load.png", dpi=300, bbox_inches='tight')
|
| 211 |
print(f" Saved: {viz_dir / 'cause_list_courtroom_load.png'}")
|
| 212 |
|
| 213 |
# 4. Statistical summary table
|
|
@@ -252,7 +252,7 @@ for i in range(1, 6):
|
|
| 252 |
|
| 253 |
plt.title('Cause List Statistics Summary: Average Across All Scenarios',
|
| 254 |
fontsize=14, fontweight='bold', pad=20)
|
| 255 |
-
plt.savefig(viz_dir / "cause_list_summary_table.png", dpi=300, bbox_inches='tight')
|
| 256 |
print(f" Saved: {viz_dir / 'cause_list_summary_table.png'}")
|
| 257 |
|
| 258 |
print("\n" + "=" * 80)
|
|
|
|
| 139 |
ax.grid(axis='y', alpha=0.3)
|
| 140 |
|
| 141 |
plt.tight_layout()
|
| 142 |
+
plt.savefig(str(viz_dir / "cause_list_daily_size_comparison.png"), dpi=300, bbox_inches='tight')
|
| 143 |
print(f" Saved: {viz_dir / 'cause_list_daily_size_comparison.png'}")
|
| 144 |
|
| 145 |
# 2. Variability (std dev) comparison
|
|
|
|
| 173 |
ax.grid(axis='y', alpha=0.3)
|
| 174 |
|
| 175 |
plt.tight_layout()
|
| 176 |
+
plt.savefig(str(viz_dir / "cause_list_variability.png"), dpi=300, bbox_inches='tight')
|
| 177 |
print(f" Saved: {viz_dir / 'cause_list_variability.png'}")
|
| 178 |
|
| 179 |
# 3. Cases per courtroom efficiency
|
|
|
|
| 207 |
ax.grid(axis='y', alpha=0.3)
|
| 208 |
|
| 209 |
plt.tight_layout()
|
| 210 |
+
plt.savefig(str(viz_dir / "cause_list_courtroom_load.png"), dpi=300, bbox_inches='tight')
|
| 211 |
print(f" Saved: {viz_dir / 'cause_list_courtroom_load.png'}")
|
| 212 |
|
| 213 |
# 4. Statistical summary table
|
|
|
|
| 252 |
|
| 253 |
plt.title('Cause List Statistics Summary: Average Across All Scenarios',
|
| 254 |
fontsize=14, fontweight='bold', pad=20)
|
| 255 |
+
plt.savefig(str(viz_dir / "cause_list_summary_table.png"), dpi=300, bbox_inches='tight')
|
| 256 |
print(f" Saved: {viz_dir / 'cause_list_summary_table.png'}")
|
| 257 |
|
| 258 |
print("\n" + "=" * 80)
|
scripts/generate_comparison_plots.py
CHANGED
|
@@ -71,7 +71,7 @@ ax.axhline(y=55, color='red', linestyle='--', alpha=0.5, label='Typical Baseline
|
|
| 71 |
ax.text(3.5, 56, 'Typical Baseline', color='red', fontsize=9, alpha=0.7)
|
| 72 |
|
| 73 |
plt.tight_layout()
|
| 74 |
-
plt.savefig(output_dir / "01_disposal_rate_comparison.png", dpi=300, bbox_inches='tight')
|
| 75 |
print(f"β Saved: {output_dir / '01_disposal_rate_comparison.png'}")
|
| 76 |
|
| 77 |
# --- Plot 2: Gini Coefficient (Fairness) Comparison ---
|
|
@@ -107,7 +107,7 @@ ax.axhline(y=0.26, color='green', linestyle='--', alpha=0.5)
|
|
| 107 |
ax.text(3.5, 0.265, 'Excellent Fairness (<0.26)', color='green', fontsize=9, alpha=0.7)
|
| 108 |
|
| 109 |
plt.tight_layout()
|
| 110 |
-
plt.savefig(output_dir / "02_gini_coefficient_comparison.png", dpi=300, bbox_inches='tight')
|
| 111 |
print(f"β Saved: {output_dir / '02_gini_coefficient_comparison.png'}")
|
| 112 |
|
| 113 |
# --- Plot 3: Utilization Patterns ---
|
|
@@ -143,7 +143,7 @@ ax.axhspan(40, 50, alpha=0.1, color='green', label='Real Karnataka HC Range')
|
|
| 143 |
ax.text(3.5, 45, 'Karnataka HC\nRange (40-50%)', color='green', fontsize=9, alpha=0.7, ha='right')
|
| 144 |
|
| 145 |
plt.tight_layout()
|
| 146 |
-
plt.savefig(output_dir / "03_utilization_comparison.png", dpi=300, bbox_inches='tight')
|
| 147 |
print(f"β Saved: {output_dir / '03_utilization_comparison.png'}")
|
| 148 |
|
| 149 |
# --- Plot 4: Long-Term Performance Trend (Readiness Only) ---
|
|
@@ -183,7 +183,7 @@ ax.text(300, 72, '+43% improvement', fontsize=11, color='green', fontweight='bol
|
|
| 183 |
fig.legend(loc='upper left', bbox_to_anchor=(0.12, 0.88), fontsize=11)
|
| 184 |
|
| 185 |
plt.tight_layout()
|
| 186 |
-
plt.savefig(output_dir / "04_long_term_trend.png", dpi=300, bbox_inches='tight')
|
| 187 |
print(f"β Saved: {output_dir / '04_long_term_trend.png'}")
|
| 188 |
|
| 189 |
# --- Plot 5: Coverage Comparison ---
|
|
@@ -209,7 +209,7 @@ ax.axhline(y=98, color='green', linestyle='--', linewidth=2, alpha=0.7)
|
|
| 209 |
ax.text(3.5, 98.2, 'Target: 98%', color='green', fontsize=10, fontweight='bold')
|
| 210 |
|
| 211 |
plt.tight_layout()
|
| 212 |
-
plt.savefig(output_dir / "05_coverage_comparison.png", dpi=300, bbox_inches='tight')
|
| 213 |
print(f"β Saved: {output_dir / '05_coverage_comparison.png'}")
|
| 214 |
|
| 215 |
# --- Plot 6: Scalability Test (Load vs Performance) ---
|
|
@@ -251,7 +251,7 @@ ax2.annotate('BETTER', xy=(2, 0.228), xytext=(1, 0.235),
|
|
| 251 |
fontsize=11, color='green', fontweight='bold')
|
| 252 |
|
| 253 |
plt.tight_layout()
|
| 254 |
-
plt.savefig(output_dir / "06_scalability_analysis.png", dpi=300, bbox_inches='tight')
|
| 255 |
print(f"β Saved: {output_dir / '06_scalability_analysis.png'}")
|
| 256 |
|
| 257 |
print("\n" + "="*60)
|
|
|
|
| 71 |
ax.text(3.5, 56, 'Typical Baseline', color='red', fontsize=9, alpha=0.7)
|
| 72 |
|
| 73 |
plt.tight_layout()
|
| 74 |
+
plt.savefig(str(output_dir / "01_disposal_rate_comparison.png"), dpi=300, bbox_inches='tight')
|
| 75 |
print(f"β Saved: {output_dir / '01_disposal_rate_comparison.png'}")
|
| 76 |
|
| 77 |
# --- Plot 2: Gini Coefficient (Fairness) Comparison ---
|
|
|
|
| 107 |
ax.text(3.5, 0.265, 'Excellent Fairness (<0.26)', color='green', fontsize=9, alpha=0.7)
|
| 108 |
|
| 109 |
plt.tight_layout()
|
| 110 |
+
plt.savefig(str(output_dir / "02_gini_coefficient_comparison.png"), dpi=300, bbox_inches='tight')
|
| 111 |
print(f"β Saved: {output_dir / '02_gini_coefficient_comparison.png'}")
|
| 112 |
|
| 113 |
# --- Plot 3: Utilization Patterns ---
|
|
|
|
| 143 |
ax.text(3.5, 45, 'Karnataka HC\nRange (40-50%)', color='green', fontsize=9, alpha=0.7, ha='right')
|
| 144 |
|
| 145 |
plt.tight_layout()
|
| 146 |
+
plt.savefig(str(output_dir / "03_utilization_comparison.png"), dpi=300, bbox_inches='tight')
|
| 147 |
print(f"β Saved: {output_dir / '03_utilization_comparison.png'}")
|
| 148 |
|
| 149 |
# --- Plot 4: Long-Term Performance Trend (Readiness Only) ---
|
|
|
|
| 183 |
fig.legend(loc='upper left', bbox_to_anchor=(0.12, 0.88), fontsize=11)
|
| 184 |
|
| 185 |
plt.tight_layout()
|
| 186 |
+
plt.savefig(str(output_dir / "04_long_term_trend.png"), dpi=300, bbox_inches='tight')
|
| 187 |
print(f"β Saved: {output_dir / '04_long_term_trend.png'}")
|
| 188 |
|
| 189 |
# --- Plot 5: Coverage Comparison ---
|
|
|
|
| 209 |
ax.text(3.5, 98.2, 'Target: 98%', color='green', fontsize=10, fontweight='bold')
|
| 210 |
|
| 211 |
plt.tight_layout()
|
| 212 |
+
plt.savefig(str(output_dir / "05_coverage_comparison.png"), dpi=300, bbox_inches='tight')
|
| 213 |
print(f"β Saved: {output_dir / '05_coverage_comparison.png'}")
|
| 214 |
|
| 215 |
# --- Plot 6: Scalability Test (Load vs Performance) ---
|
|
|
|
| 251 |
fontsize=11, color='green', fontweight='bold')
|
| 252 |
|
| 253 |
plt.tight_layout()
|
| 254 |
+
plt.savefig(str(output_dir / "06_scalability_analysis.png"), dpi=300, bbox_inches='tight')
|
| 255 |
print(f"β Saved: {output_dir / '06_scalability_analysis.png'}")
|
| 256 |
|
| 257 |
print("\n" + "="*60)
|
scripts/generate_sweep_plots.py
CHANGED
|
@@ -83,7 +83,7 @@ ax.axhline(y=55, color='red', linestyle='--', alpha=0.5, linewidth=2)
|
|
| 83 |
ax.text(5.5, 56, 'Typical Baseline\n(45-55%)', color='red', fontsize=9, alpha=0.8, ha='right')
|
| 84 |
|
| 85 |
plt.tight_layout()
|
| 86 |
-
plt.savefig(output_dir / "01_disposal_rate_all_scenarios.png", dpi=300, bbox_inches='tight')
|
| 87 |
print(f"β Saved: {output_dir / '01_disposal_rate_all_scenarios.png'}")
|
| 88 |
|
| 89 |
# --- Plot 2: Gini Coefficient (Fairness) Comparison ---
|
|
@@ -117,7 +117,7 @@ ax.axhline(y=0.26, color='green', linestyle='--', alpha=0.6, linewidth=2)
|
|
| 117 |
ax.text(5.5, 0.265, 'Excellent\nFairness\n(<0.26)', color='green', fontsize=9, alpha=0.8, ha='right')
|
| 118 |
|
| 119 |
plt.tight_layout()
|
| 120 |
-
plt.savefig(output_dir / "02_gini_all_scenarios.png", dpi=300, bbox_inches='tight')
|
| 121 |
print(f"β Saved: {output_dir / '02_gini_all_scenarios.png'}")
|
| 122 |
|
| 123 |
# --- Plot 3: Performance Delta (Readiness - Best Baseline) ---
|
|
@@ -165,7 +165,7 @@ ax2.set_xticklabels([SCENARIO_NAMES[s] for s in scenarios], fontsize=9)
|
|
| 165 |
ax2.grid(axis='y', alpha=0.3)
|
| 166 |
|
| 167 |
plt.tight_layout()
|
| 168 |
-
plt.savefig(output_dir / "03_advantage_over_baseline.png", dpi=300, bbox_inches='tight')
|
| 169 |
print(f"β Saved: {output_dir / '03_advantage_over_baseline.png'}")
|
| 170 |
|
| 171 |
# --- Plot 4: Robustness Analysis (Our Algorithm Only) ---
|
|
@@ -199,7 +199,7 @@ ax.text(5.5, mean_val - 3, f'Std Dev: {std_val:.2f}%\nCV: {(std_val/mean_val)*10
|
|
| 199 |
bbox=dict(boxstyle='round', facecolor='white', alpha=0.8))
|
| 200 |
|
| 201 |
plt.tight_layout()
|
| 202 |
-
plt.savefig(output_dir / "04_robustness_our_algorithm.png", dpi=300, bbox_inches='tight')
|
| 203 |
print(f"β Saved: {output_dir / '04_robustness_our_algorithm.png'}")
|
| 204 |
|
| 205 |
# --- Plot 5: Statistical Summary ---
|
|
@@ -276,7 +276,7 @@ ax4.grid(axis='y', alpha=0.3)
|
|
| 276 |
ax4.set_ylim(0, 7)
|
| 277 |
|
| 278 |
plt.tight_layout()
|
| 279 |
-
plt.savefig(output_dir / "05_statistical_summary.png", dpi=300, bbox_inches='tight')
|
| 280 |
print(f"β Saved: {output_dir / '05_statistical_summary.png'}")
|
| 281 |
|
| 282 |
print("\n" + "="*60)
|
|
|
|
| 83 |
ax.text(5.5, 56, 'Typical Baseline\n(45-55%)', color='red', fontsize=9, alpha=0.8, ha='right')
|
| 84 |
|
| 85 |
plt.tight_layout()
|
| 86 |
+
plt.savefig(str(output_dir / "01_disposal_rate_all_scenarios.png"), dpi=300, bbox_inches='tight')
|
| 87 |
print(f"β Saved: {output_dir / '01_disposal_rate_all_scenarios.png'}")
|
| 88 |
|
| 89 |
# --- Plot 2: Gini Coefficient (Fairness) Comparison ---
|
|
|
|
| 117 |
ax.text(5.5, 0.265, 'Excellent\nFairness\n(<0.26)', color='green', fontsize=9, alpha=0.8, ha='right')
|
| 118 |
|
| 119 |
plt.tight_layout()
|
| 120 |
+
plt.savefig(str(output_dir / "02_gini_all_scenarios.png"), dpi=300, bbox_inches='tight')
|
| 121 |
print(f"β Saved: {output_dir / '02_gini_all_scenarios.png'}")
|
| 122 |
|
| 123 |
# --- Plot 3: Performance Delta (Readiness - Best Baseline) ---
|
|
|
|
| 165 |
ax2.grid(axis='y', alpha=0.3)
|
| 166 |
|
| 167 |
plt.tight_layout()
|
| 168 |
+
plt.savefig(str(output_dir / "03_advantage_over_baseline.png"), dpi=300, bbox_inches='tight')
|
| 169 |
print(f"β Saved: {output_dir / '03_advantage_over_baseline.png'}")
|
| 170 |
|
| 171 |
# --- Plot 4: Robustness Analysis (Our Algorithm Only) ---
|
|
|
|
| 199 |
bbox=dict(boxstyle='round', facecolor='white', alpha=0.8))
|
| 200 |
|
| 201 |
plt.tight_layout()
|
| 202 |
+
plt.savefig(str(output_dir / "04_robustness_our_algorithm.png"), dpi=300, bbox_inches='tight')
|
| 203 |
print(f"β Saved: {output_dir / '04_robustness_our_algorithm.png'}")
|
| 204 |
|
| 205 |
# --- Plot 5: Statistical Summary ---
|
|
|
|
| 276 |
ax4.set_ylim(0, 7)
|
| 277 |
|
| 278 |
plt.tight_layout()
|
| 279 |
+
plt.savefig(str(output_dir / "05_statistical_summary.png"), dpi=300, bbox_inches='tight')
|
| 280 |
print(f"β Saved: {output_dir / '05_statistical_summary.png'}")
|
| 281 |
|
| 282 |
print("\n" + "="*60)
|