Spaces:
Sleeping
Sleeping
File size: 6,663 Bytes
c893f14 a6438ff c893f14 | 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 | from pathlib import Path
from typing import Dict, List, Optional
import json
import joblib
import numpy as np
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel, Field
from sentence_transformers import SentenceTransformer
# Paths
BASE_DIR = Path(__file__).resolve().parent
MODEL_PATH = BASE_DIR / "models" / "best_logistic_embedding_model.joblib"
METADATA_PATH = BASE_DIR / "models" / "best_model_metadata.json"
# FastAPI app
app = FastAPI(
title="Grievance Department Classifier API",
description="Classifies citizen complaints into government departments using MiniLM embeddings + Logistic Regression.",
version="1.0.0",
)
app.add_middleware(
CORSMiddleware,
allow_origins=["*"], # later replace with your frontend URL
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Request / Response Schemas
class DepartmentPredictionRequest(BaseModel):
complaint_text: str = Field(
...,
min_length=3,
description="Citizen complaint text",
example="Garbage is dumped in an empty plot and bad smell is coming."
)
location: Optional[str] = Field(
default="unknown",
description="Optional location, ward, zone, city, or area",
example="Ward 12"
)
class ClassProbability(BaseModel):
department: str
probability: float
class DepartmentPredictionResponse(BaseModel):
complaint_text: str
predicted_department: str
confidence: float
probabilities: List[ClassProbability]
model: str
method: str
class BatchDepartmentPredictionRequest(BaseModel):
complaints: List[DepartmentPredictionRequest]
class BatchDepartmentPredictionResponse(BaseModel):
predictions: List[DepartmentPredictionResponse]
# Model service
class DepartmentClassifierService:
def __init__(self, model_path: Path, metadata_path: Path):
if not model_path.exists():
raise FileNotFoundError(f"Model file not found: {model_path}")
if not metadata_path.exists():
raise FileNotFoundError(f"Metadata file not found: {metadata_path}")
with open(metadata_path, "r", encoding="utf-8") as file:
self.metadata = json.load(file)
self.embedding_model_name = self.metadata.get(
"embedding_model_name",
"sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2"
)
model_package = joblib.load(model_path)
if isinstance(model_package, dict):
self.classifier = model_package["classifier"]
self.model_classes = model_package.get("classes", list(self.classifier.classes_))
self.embedding_model_name = model_package.get(
"embedding_model_name",
self.embedding_model_name
)
else:
self.classifier = model_package
self.model_classes = list(self.classifier.classes_)
self.embedding_model = SentenceTransformer(self.embedding_model_name)
def predict(self, complaint_text: str) -> Dict:
text = str(complaint_text).strip()
embedding = self.embedding_model.encode(
[text],
convert_to_numpy=True,
normalize_embeddings=True
)
predicted_department = self.classifier.predict(embedding)[0]
if hasattr(self.classifier, "predict_proba"):
probabilities = self.classifier.predict_proba(embedding)[0]
classes = self.classifier.classes_
probability_items = [
{
"department": str(cls),
"probability": float(prob)
}
for cls, prob in zip(classes, probabilities)
]
probability_items = sorted(
probability_items,
key=lambda item: item["probability"],
reverse=True
)
confidence = float(max(probabilities))
else:
probability_items = [
{
"department": str(predicted_department),
"probability": 1.0
}
]
confidence = 1.0
return {
"predicted_department": str(predicted_department),
"confidence": confidence,
"probabilities": probability_items,
}
classifier_service = DepartmentClassifierService(
model_path=MODEL_PATH,
metadata_path=METADATA_PATH
)
# Routes
@app.get("/")
def home():
return {
"message": "Grievance Department Classifier API is running",
"embedding_model": classifier_service.embedding_model_name,
"classifier": classifier_service.metadata.get("classifier", "unknown"),
}
@app.get("/health")
def health():
return {
"status": "ok",
"model_loaded": True,
"embedding_model": classifier_service.embedding_model_name,
"classifier": classifier_service.metadata.get("classifier", "unknown"),
}
@app.get("/model-info")
def model_info():
return classifier_service.metadata
@app.post("/predict-department", response_model=DepartmentPredictionResponse)
def predict_department(request: DepartmentPredictionRequest):
result = classifier_service.predict(request.complaint_text)
return {
"complaint_text": request.complaint_text,
"predicted_department": result["predicted_department"],
"confidence": result["confidence"],
"probabilities": result["probabilities"],
"model": classifier_service.embedding_model_name,
"method": "MiniLM embeddings + Logistic Regression",
}
@app.post("/batch-predict-department", response_model=BatchDepartmentPredictionResponse)
def batch_predict_department(request: BatchDepartmentPredictionRequest):
predictions = []
for item in request.complaints:
result = classifier_service.predict(item.complaint_text)
predictions.append({
"complaint_text": item.complaint_text,
"predicted_department": result["predicted_department"],
"confidence": result["confidence"],
"probabilities": result["probabilities"],
"model": classifier_service.embedding_model_name,
"method": "MiniLM embeddings + Logistic Regression",
})
return {
"predictions": predictions
} |