File size: 10,266 Bytes
6b6e83f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | """
engine.py
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Inference engine for the Complaint Auto-Routing System.
Loads all trained artifacts once and exposes:
predict(text) β officer, priority, ETA, similar complaints
transcribe(path) β text (requires openai-whisper installed)
Whisper note:
pip install openai-whisper # local model, NOT the API
The model weights (~140MB for 'base') download once and run offline.
Audio: .wav / .mp3 / .m4a / .ogg
Video: .mp4 / .mkv / .avi (audio track extracted automatically)
"""
import os
import sys
import math
import joblib
import numpy as np
from typing import Optional
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
SAVE_DIR = os.path.join(BASE_DIR, "models", "saved")
sys.path.insert(0, BASE_DIR)
from inference.vector_store import NumpyVectorStore
# βββ Officer registry (mirrors generate_data.py) ββββββββββββββ
OFFICERS = [
{"id": "OFF001", "name": "Rahul Sharma", "department": "Infrastructure & Roads"},
{"id": "OFF002", "name": "Priya Mehta", "department": "Water & Sanitation"},
{"id": "OFF003", "name": "Amit Verma", "department": "Electricity & Utilities"},
{"id": "OFF004", "name": "Sunita Patel", "department": "Public Safety & Security"},
{"id": "OFF005", "name": "Vijay Kumar", "department": "Health & Environment"},
{"id": "OFF006", "name": "Anjali Singh", "department": "Land & Property"},
{"id": "OFF007", "name": "Ravi Nair", "department": "Transport & Traffic"},
{"id": "OFF008", "name": "Meena Reddy", "department": "Administrative Services"},
]
OFFICER_MAP = {o["id"]: o for o in OFFICERS}
class ComplaintRoutingEngine:
"""Singleton-style inference engine; call load() before predict()."""
def __init__(self):
self.embedding_engine = None
self.officer_model = None
self.priority_model = None
self.eta_model = None
self.vector_store = None
self.label_encoders = None
self._loaded = False
# βββ Loading ββββββββββββββββββββββββββββββββββββββββββββββ
def load(self, save_dir: str = SAVE_DIR) -> "ComplaintRoutingEngine":
print("[Engine] Loading models...")
self.embedding_engine = joblib.load(
os.path.join(save_dir, "embedding_engine.pkl"))
self.officer_model = joblib.load(
os.path.join(save_dir, "officer_classifier.pkl"))
self.priority_model = joblib.load(
os.path.join(save_dir, "priority_classifier.pkl"))
self.eta_model = joblib.load(
os.path.join(save_dir, "eta_regressor.pkl"))
self.label_encoders = joblib.load(
os.path.join(save_dir, "label_encoders.pkl"))
self.vector_store = NumpyVectorStore().load(
os.path.join(save_dir, "vector_store.pkl"))
self._loaded = True
print("[Engine] All models loaded.")
return self
# βββ Core prediction ββββββββββββββββββββββββββββββββββββββ
def predict(self, text: str, top_k_similar: int = 5) -> dict:
"""
Parameters
----------
text : complaint text (any language)
top_k_similar : number of similar past complaints to retrieve
Returns
-------
dict with keys:
officer, priority, eta_days, confidence, similar_complaints
"""
if not self._loaded:
raise RuntimeError("Call .load() first.")
# 1. Embed
vec = self.embedding_engine.encode_single(text)
# 2. Officer routing
le_off = self.label_encoders["officer"]
off_proba = self.officer_model.predict_proba([vec])[0]
off_idx = int(np.argmax(off_proba))
officer_id = le_off.inverse_transform([off_idx])[0]
officer_info = OFFICER_MAP[officer_id]
confidence = float(off_proba[off_idx])
# 3. Priority prediction
le_pri = self.label_encoders["priority"]
pri_proba = self.priority_model.predict_proba([vec])[0]
pri_idx = int(np.argmax(pri_proba))
priority = le_pri.inverse_transform([pri_idx])[0]
pri_conf = float(pri_proba[pri_idx])
# 4. ETA prediction (round to nearest half-day, min 1)
eta_raw = float(self.eta_model.predict([vec])[0])
eta_days = max(1, round(eta_raw * 2) / 2) # round to 0.5-day granularity
# 5. Similarity search
similar = self.vector_store.search(vec, top_k=top_k_similar + 1)
# strip identical-text match if present
similar = [s for s in similar
if s["text"].strip() != text.strip()][:top_k_similar]
return {
"officer": {
"id": officer_id,
"name": officer_info["name"],
"department": officer_info["department"],
"confidence": round(confidence * 100, 1),
},
"priority": {
"level": priority,
"confidence": round(pri_conf * 100, 1),
},
"eta_days": eta_days,
"similar_complaints": [
{
"complaint_id": s["complaint_id"],
"text_snippet": s["text"][:120] + "β¦",
"officer_name": s["officer_name"],
"priority": s["priority"],
"eta_days": s["eta_days"],
"similarity_score": round(s["similarity_score"], 4),
}
for s in similar
],
}
# βββ Audio / Video transcription ββββββββββββββββββββββββββ
def transcribe(self, file_path: str, whisper_model: str = "base") -> str:
"""
Transcribe audio or video file to text using openai-whisper (local).
Install: pip install openai-whisper
Models: tiny | base | small | medium | large
'base' ~140 MB, supports 99 languages, runs on CPU.
For video, Whisper extracts the audio track automatically via ffmpeg.
"""
try:
import whisper
except ImportError:
raise ImportError(
"openai-whisper not installed.\n"
"Run: pip install openai-whisper\n"
"Note: This is a LOCAL model β no API key required."
)
if not os.path.exists(file_path):
raise FileNotFoundError(f"File not found: {file_path}")
model = whisper.load_model(whisper_model)
result = model.transcribe(file_path, task="transcribe")
return result["text"].strip()
# βββ End-to-end multimodal ββββββββββββββββββββββββββββββββ
def process(self, text: Optional[str] = None,
audio_path: Optional[str] = None,
video_path: Optional[str] = None,
top_k: int = 5) -> dict:
"""
One-shot entry point for text / audio / video input.
Exactly one of text / audio_path / video_path should be non-None.
"""
source_text = None
modality = "text"
if text:
source_text = text
modality = "text"
elif audio_path:
print(f"[Engine] Transcribing audio: {audio_path}")
source_text = self.transcribe(audio_path)
modality = "audio"
elif video_path:
print(f"[Engine] Transcribing video: {video_path}")
source_text = self.transcribe(video_path)
modality = "video"
else:
raise ValueError("Provide text, audio_path, or video_path.")
result = self.predict(source_text, top_k_similar=top_k)
result["modality"] = modality
result["source_text"] = source_text
return result
# βββ Module-level singleton ββββββββββββββββββββββββββββββββββββ
_engine: Optional[ComplaintRoutingEngine] = None
def get_engine() -> ComplaintRoutingEngine:
global _engine
if _engine is None:
_engine = ComplaintRoutingEngine().load()
return _engine
# βββ Quick smoke test ββββββββββββββββββββββββββββββββββββββββββ
if __name__ == "__main__":
engine = get_engine()
samples = [
"There is a massive pothole on MG Road near the hospital. "
"Three accidents have already happened. Emergency! Urgent action needed.",
"My ration card application has been pending for 45 days. "
"Not urgent, but the matter requires attention when convenient.",
"Sewage water is overflowing onto the street near Central Park. "
"This is a serious problem affecting daily life.",
"Bahut bada problem hai. A live electric wire has fallen near the school. "
"People are in immediate danger. Urgent action needed!",
]
for i, text in enumerate(samples, 1):
print(f"\n{'='*60}")
print(f"COMPLAINT #{i}")
print(f"Text: {text[:80]}β¦")
res = engine.predict(text)
print(f" -> Officer : {res['officer']['name']} ({res['officer']['department']}) "
f"[{res['officer']['confidence']}%]")
print(f" -> Priority : {res['priority']['level']} [{res['priority']['confidence']}%]")
print(f" -> ETA : {res['eta_days']} days")
print(f" -> Similar : {len(res['similar_complaints'])} retrieved")
if res['similar_complaints']:
top = res['similar_complaints'][0]
print(f" Best match [{top['similarity_score']:.4f}]: {top['text_snippet'][:60]}β¦")
|