hackathon_code4change / rl /__init__.py
RoyAalekh's picture
Add comprehensive interactive RL pipeline for hackathon submission
fe88229
raw
history blame
462 Bytes
"""RL-based court scheduling components.
This module contains the reinforcement learning components for court scheduling:
- Tabular Q-learning agent for case priority scoring
- Training environment and loops
- Explainability tools for judicial decisions
"""
from .simple_agent import TabularQAgent
from .training import train_agent, evaluate_agent, RLTrainingEnvironment
__all__ = ['TabularQAgent', 'train_agent', 'evaluate_agent', 'RLTrainingEnvironment']