Spaces:
Sleeping
Sleeping
File size: 19,489 Bytes
6b98981 ec40ef6 6b98981 ec40ef6 ab21ced ec40ef6 ab21ced ec40ef6 ab21ced ec40ef6 ab21ced e2c804f ab21ced e2c804f ab21ced ec40ef6 ab21ced ec40ef6 ab21ced ec40ef6 ab21ced ec40ef6 6b98981 ec40ef6 6b98981 ec40ef6 6b98981 ec40ef6 6b98981 a43ebba 6b98981 a43ebba 6b98981 a43ebba 6b98981 a43ebba ec40ef6 6b98981 ab21ced 6b98981 ab21ced 6b98981 5f63ae0 6b98981 5f63ae0 6b98981 5f63ae0 6b98981 a43ebba 6b98981 a43ebba 6b98981 a43ebba 6b98981 a43ebba 6b98981 a43ebba 6b98981 4e47e07 6b98981 4e47e07 6b98981 4e47e07 6b98981 4e47e07 6b98981 4e47e07 6b98981 a43ebba 6b98981 a43ebba 6b98981 5f63ae0 6b98981 b73b70d a43ebba b73b70d 6b98981 b73b70d 6b98981 5f63ae0 6b98981 b73b70d 6b98981 b73b70d 6b98981 b73b70d 6b98981 5f63ae0 6b98981 b73b70d 6b98981 b73b70d 6b98981 b73b70d 6b98981 5f63ae0 6b98981 dfe09a2 6b98981 8403c48 6b98981 | 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 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 | import pandas as pd
import numpy as np
import joblib
import shap
from fastapi import FastAPI, HTTPException, Request
from fastapi.middleware.cors import CORSMiddleware
from fastapi.staticfiles import StaticFiles
from fastapi.responses import FileResponse
from pydantic import BaseModel, Field
from typing import Optional, List
import os
import logging
import sys
from datetime import datetime
from pytz import timezone
from starlette.middleware.base import BaseHTTPMiddleware
# Ensure IST timezone
os.environ['TZ'] = 'Asia/Kolkata'
# Setup IST timezone logging
IST = timezone('Asia/Kolkata')
# Configure logging with IST timezone
class ISTFormatter(logging.Formatter):
"""Custom formatter for IST timestamps"""
def formatTime(self, record, datefmt=None):
dt = datetime.fromtimestamp(record.created, tz=IST)
if datefmt:
return dt.strftime(datefmt)
else:
return dt.strftime("%Y-%m-%d %H:%M:%S IST")
def setup_logging():
"""Setup logging for all loggers to use IST timestamps"""
formatter = ISTFormatter('[%(asctime)s] %(levelname)s - %(name)s - %(message)s')
# Configure root logger
root_logger = logging.getLogger()
root_logger.setLevel(logging.INFO)
# Remove existing handlers
for handler in root_logger.handlers[:]:
root_logger.removeHandler(handler)
# Add new handlers with custom formatter
console_handler = logging.StreamHandler(sys.stdout)
console_handler.setFormatter(formatter)
root_logger.addHandler(console_handler)
# Configure uvicorn loggers
for logger_name in ['uvicorn', 'uvicorn.error', 'fastapi']:
lg = logging.getLogger(logger_name)
lg.setLevel(logging.INFO)
# Clear existing handlers
for handler in lg.handlers[:]:
lg.removeHandler(handler)
# Use root logger's handlers
lg.handlers = root_logger.handlers
lg.propagate = True
# Disable uvicorn access logging (we use our own middleware)
access_logger = logging.getLogger('uvicorn.access')
access_logger.setLevel(logging.CRITICAL) # Suppress access logs
access_logger.disabled = True
return logging.getLogger(__name__)
logger = setup_logging()
def get_client_ip(request: Request) -> str:
"""Extract client IP from request headers or socket"""
if 'x-forwarded-for' in request.headers:
return request.headers['x-forwarded-for'].split(',')[0].strip()
elif 'x-real-ip' in request.headers:
return request.headers['x-real-ip']
else:
return request.client.host if request.client else "0.0.0.0"
class LoggingMiddleware(BaseHTTPMiddleware):
async def dispatch(self, request: Request, call_next):
client_ip = get_client_ip(request)
method = request.method
path = request.url.path
logger.info(f"π¨ [IP: {client_ip}] {method} {path}")
response = await call_next(request)
logger.info(f"β
[IP: {client_ip}] {method} {path} β {response.status_code}")
return response
try:
from llm import start_chat_session, get_chat_response
CHAT_AVAILABLE = True
logger.info("[OK] LLM Chat module loaded")
except Exception as _llm_err:
CHAT_AVAILABLE = False
logger.warning(f"[!] LLM Chat unavailable: {_llm_err}")
app = FastAPI(
title="PlacementPredictor+",
description="AI-powered placement prediction with explainable insights and career routing",
version="1.0.0"
)
# Add logging middleware first
app.add_middleware(LoggingMiddleware)
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
ARTIFACTS_PATH = "placement_artifacts.pkl"
from routing_engine import RoutingEngine
model = None
le_gender = None
le_stream = None
explainer = None
routing_engine = None
shap_model = None
preprocessor = None
def load_artifacts():
global model, le_gender, le_stream, explainer, routing_engine, shap_model, preprocessor
if not os.path.exists(ARTIFACTS_PATH):
raise FileNotFoundError(f"Artifacts file '{ARTIFACTS_PATH}' not found.")
artifacts = joblib.load(ARTIFACTS_PATH)
model = artifacts['model']
shap_model = artifacts['shap_model']
preprocessor = artifacts['preprocessor']
le_gender = artifacts['le_gender']
le_stream = artifacts['le_stream']
routing_engine = artifacts.get('routing_engine')
explainer = shap.TreeExplainer(shap_model)
logger.info("[OK] All artifacts loaded successfully!")
@app.on_event("startup")
async def startup_event():
logger.info("=" * 60)
logger.info("Application Startup")
logger.info("=" * 60)
try:
load_artifacts()
except Exception as e:
logger.error(f"[!] Startup Error: {e}")
class StudentData(BaseModel):
Age: int = Field(..., ge=15, le=40)
Gender: str = Field(..., description="Male or Female")
Stream: str = Field(..., description="Stream of study")
Internships: int = Field(..., ge=0)
CGPA: float = Field(..., ge=0, le=10)
Hostel: int = Field(..., ge=0, le=1, description="0 = day scholar (not in hostel), 1 = lives in hostel")
HistoryOfBacklogs: int = Field(..., ge=0, le=1, description="0 = no history of backlogs, 1 = history of backlogs")
skills: List[str] = Field(default=[], description="List of user skills for routing")
desired_role: Optional[str] = Field(default=None, description="User's desired job role")
class PredictionResponse(BaseModel):
prediction: int
probability_percentage: float
risk_level: str
confidence: str
recommended_job: Optional[str] = None
missing_skills: Optional[List[str]] = None
graph_data: Optional[str] = None
class FactorImpact(BaseModel):
feature: str
impact: float
direction: str
interpretation: str
class ExplainResponse(BaseModel):
top_contributing_factors: List[FactorImpact]
base_value: float
prediction_value: float
class HealthResponse(BaseModel):
status: str
model_loaded: bool
class OptionsResponse(BaseModel):
streams: List[str]
skills: List[str]
jobs: List[str]
def normalize_backlogs_value(value: int) -> int:
"""Normalize backlog input to strict dataset encoding: 0 = No, 1 = Yes."""
return 1 if int(value) == 1 else 0
def normalize_hostel_value(value: int) -> int:
"""Normalize hostel input to strict dataset encoding: 0 = No, 1 = Yes."""
return 1 if int(value) == 1 else 0
def prepare_input(data: StudentData) -> pd.DataFrame:
try:
g = le_gender.transform([data.Gender])[0]
s = le_stream.transform([data.Stream])[0]
except Exception as e:
# Fallback for unknown
g = 0
s = 0
df = pd.DataFrame([{
'Age': data.Age,
'Gender': g,
'Stream': s,
'Internships': data.Internships,
'CGPA': data.CGPA,
'Hostel': normalize_hostel_value(data.Hostel),
'HistoryOfBacklogs': normalize_backlogs_value(data.HistoryOfBacklogs)
}])
# Extract columns naturally based on dict order which matches train features order
return df
@app.get("/health", response_model=HealthResponse)
async def health_check():
return HealthResponse(status="healthy", model_loaded=model is not None)
@app.get("/options", response_model=OptionsResponse)
async def get_options():
if le_stream is None or routing_engine is None:
raise HTTPException(status_code=503, detail="Artifacts not loaded.")
return OptionsResponse(
streams=list(le_stream.classes_),
skills=routing_engine.get_skill_list(),
jobs=routing_engine.get_job_list()
)
def get_placement_level(probability: float):
# Map probability of placement to levels
# Since we want to reuse the JS/CSS, we map:
# High chance -> good (represented as "LOW" risk so it shows green in UI)
# Medium chance -> medium
# Low chance -> bad (represented as "HIGH" risk so it shows red in UI)
if probability >= 0.7:
return "LOW", "Very High Confidence" # LOW risk of being unplaced -> High chance
elif probability >= 0.5:
return "LOW", "High Confidence"
elif probability >= 0.3:
return "MEDIUM", "Moderate Confidence"
else:
return "HIGH", "High Confidence" # HIGH risk of being unplaced -> Low chance
@app.post("/predict", response_model=PredictionResponse)
async def predict_placement(data: StudentData):
if model is None or preprocessor is None:
raise HTTPException(status_code=503, detail="Model not loaded.")
df = prepare_input(data)
df_processed = preprocessor.transform(df)
prediction = int(model.predict(df_processed)[0])
probability = float(model.predict_proba(df_processed)[0][1])
risk_level, confidence = get_placement_level(probability)
rec_job = None
miss_skills = []
graph_base64 = None
if routing_engine and data.skills:
# Get machine recommendation
job, ms = routing_engine.recommend(data.skills)
if job:
rec_job = job
miss_skills = ms
# Graph logic: prioritize desired role if it exists, but show both in gap analysis if possible.
# Since the UI only has one img slot, we can generate a combined view or stick to desired.
# The user specifically mentioned suggested vs desired job graph.
target_graph = data.desired_role if data.desired_role else rec_job
if target_graph:
graph_base64 = routing_engine.get_subgraph_figure_base64(target_graph, data.skills)
return PredictionResponse(
prediction=prediction,
probability_percentage=round(probability * 100, 2),
risk_level=risk_level,
confidence=confidence,
recommended_job=rec_job,
missing_skills=miss_skills,
graph_data=graph_base64
)
def interpret_feature(feature_name: str, impact: float) -> str:
clean_name = feature_name.replace('_', ' ').title()
abs_impact = abs(impact)
intensity = "significantly" if abs_impact > 0.3 else ("moderately" if abs_impact > 0.1 else "slightly")
if impact > 0:
return f"{clean_name} {intensity} improves placement chances"
else:
return f"{clean_name} {intensity} reduces placement chances"
@app.post("/explain", response_model=ExplainResponse)
async def explain_pred(data: StudentData):
if model is None or explainer is None or preprocessor is None:
raise HTTPException(status_code=503, detail="Model not loaded.")
df = prepare_input(data)
df_processed = preprocessor.transform(df)
shap_values = explainer.shap_values(df_processed)
if isinstance(shap_values, list):
# Multi-class: take the second class (Placed) if available
vals = shap_values[1][0] if len(shap_values) > 1 else shap_values[0][0]
else:
# Single array: check if it's (N, F) or (F,)
if len(shap_values.shape) == 2:
vals = shap_values[0] # Take the first row
else:
vals = shap_values
if hasattr(explainer.expected_value, '__iter__'):
base_value = float(explainer.expected_value[1]) if len(explainer.expected_value) > 1 else float(explainer.expected_value[0])
else:
base_value = float(explainer.expected_value)
# Sign Fix: Ensure positive impact means IMPROVED placement chances.
# Sometimes SHAP for binary classifiers explains the 0-class or is inverted.
vals = [-v for v in vals.tolist()]
feature_impact = list(zip(df.columns, vals))
feature_impact.sort(key=lambda x: abs(x[1]), reverse=True)
top_factors = []
for feature, impact in feature_impact[:5]:
# Refine clean name based on feature value for binary features
val = df[feature].iloc[0]
display_name = feature.replace('_', ' ').title()
if feature == 'HistoryOfBacklogs':
display_name = "No Backlogs" if val == 0 else "History of Backlogs"
elif feature == 'Internships':
display_name = f"{int(val)} Internships"
elif feature == 'CGPA':
display_name = f"CGPA ({val})"
top_factors.append(FactorImpact(
feature=display_name,
impact=round(float(impact), 4),
direction="Improves Chances" if impact > 0 else "Reduces Chances",
interpretation=interpret_feature(feature, impact)
))
prediction_value = base_value + sum(vals)
return ExplainResponse(
top_contributing_factors=top_factors,
base_value=round(base_value, 4),
prediction_value=round(float(prediction_value), 4)
)
# Basic what-if replacing Medical conditions with CGPA/Internships
@app.post("/whatif")
async def whatif_analysis(data: StudentData):
if model is None or preprocessor is None:
raise HTTPException(status_code=503, detail="Model not loaded.")
def _predict(d: dict) -> float:
df = prepare_input(StudentData(**d))
df_processed = preprocessor.transform(df)
return float(model.predict_proba(df_processed)[0][1]) * 100
orig_dict = data.model_dump()
orig_dict['Hostel'] = normalize_hostel_value(orig_dict.get('Hostel', 0))
orig_dict['HistoryOfBacklogs'] = normalize_backlogs_value(orig_dict.get('HistoryOfBacklogs', 0))
current_hostel = orig_dict['Hostel']
current_backlogs = orig_dict['HistoryOfBacklogs']
orig_risk = _predict(orig_dict)
orig_level, _ = get_placement_level(orig_risk / 100)
scenarios = []
sid = 1
def add_scenario(mod_dict, title, description, change_summary, icon, factor_changed, original_value, suggested_value, mod_risk=None):
nonlocal sid
if mod_risk is None:
mod_risk = _predict(mod_dict)
scenarios.append({
"scenario_id": sid,
"title": title,
"description": description,
"change_summary": change_summary,
"original_risk": orig_risk,
"modified_risk": mod_risk,
"risk_delta": mod_risk - orig_risk,
"risk_reduction_percent": ((mod_risk - orig_risk) / (orig_risk if orig_risk > 0 else 1) * 100),
"icon": icon,
"factor_changed": factor_changed,
"original_value": str(original_value),
"suggested_value": str(suggested_value)
})
sid += 1
# PR Specific: Career Path Suggestion (from Routing Engine)
if routing_engine and data.skills and data.desired_role:
rec_job, _ = routing_engine.recommend(data.skills)
if rec_job:
transition = routing_engine.get_career_transition_path(rec_job, data.desired_role)
if transition and transition.get("skills_to_learn"):
# Show full list of skills to learn (do not truncate to 3)
skills_list = ", ".join(transition["skills_to_learn"])
add_scenario(
orig_dict, "Career Path Suggestion",
"Learning these skills can help you transition towards your desired role.",
f"Learn: {skills_list}", "π§ ", "Skills",
"Current Skills", skills_list, mod_risk=orig_risk
)
# Increase CGPA
if data.CGPA < 9.0:
mod = orig_dict.copy()
mod['CGPA'] = min(data.CGPA + 1.0, 10.0)
add_scenario(
mod, "+1.0 CGPA", "What if you improved your CGPA?",
f"CGPA: {data.CGPA} β {mod['CGPA']}", "π", "CGPA",
str(data.CGPA), str(mod['CGPA'])
)
# Add Internships
if data.Internships < 3:
mod = orig_dict.copy()
mod['Internships'] += 1
add_scenario(
mod, "Extra Internship", "What if you did one more internship?",
f"Internships: {data.Internships} β {mod['Internships']}", "πΌ", "Internships",
str(data.Internships), str(mod['Internships'])
)
# Clear Backlogs
if current_backlogs == 1:
mod = orig_dict.copy()
mod['HistoryOfBacklogs'] = 0
add_scenario(
mod, "Clear Backlogs", "What if you had no history of backlogs?",
"Backlogs: Yes β No", "β
", "HistoryOfBacklogs",
"Yes", "No"
)
# Change Stream
if data.Stream != "Computer Science" and "Computer Science" in le_stream.classes_:
mod = orig_dict.copy()
mod['Stream'] = "Computer Science"
mod_risk = _predict(mod)
if mod_risk > orig_risk:
add_scenario(
mod, "Switch to CS", "What if you switched your stream to Computer Science?",
f"Stream: {data.Stream} β Computer Science", "π»", "Stream",
data.Stream, "Computer Science", mod_risk=mod_risk
)
# Stay in Hostel
if current_hostel == 0:
mod = orig_dict.copy()
mod['Hostel'] = 1
mod_risk = _predict(mod)
if mod_risk > orig_risk:
add_scenario(
mod, "Stay in Hostel", "What if you stayed in a hostel?",
"Hostel: No β Yes", "π’", "Hostel",
"No", "Yes", mod_risk=mod_risk
)
scenarios.sort(key=lambda x: x['risk_delta'], reverse=True)
# Combined Best Case
best_case = orig_dict.copy()
if data.CGPA < 9.0: best_case['CGPA'] = min(data.CGPA + 1.0, 10.0)
if data.Internships < 3: best_case['Internships'] += 1
if current_backlogs == 1: best_case['HistoryOfBacklogs'] = 0
combined_risk = _predict(best_case)
combined_level, _ = get_placement_level(combined_risk / 100)
return {
"original_risk": orig_risk,
"original_risk_level": orig_level,
"scenarios": scenarios,
"best_scenario": scenarios[0] if scenarios else None,
"combined_risk": combined_risk,
"combined_risk_level": combined_level
}
@app.post("/chat/start")
async def chat_s(req: dict):
if not CHAT_AVAILABLE:
raise HTTPException(status_code=503)
sid, greet = start_chat_session(req.get('patient_data'), req.get('prediction'), req.get('explanation'), req.get('whatif'))
return {"session_id": sid, "message": greet}
@app.post("/chat/message")
async def chat_m(req: dict):
if not CHAT_AVAILABLE:
raise HTTPException(status_code=503)
resp = get_chat_response(req.get('session_id'), req.get('message'))
return {"response": resp}
# --- Static File Serving for Frontend ---
# 1. Provide styles.css and script.js directly at root level
@app.get("/styles.css")
async def read_styles():
return FileResponse("styles.css")
@app.get("/script.js")
async def read_js():
return FileResponse("script.js")
# 2. Serve index.html at root
@app.get("/")
async def read_index():
return FileResponse("index.html")
# 3. Handle favicon if needed
@app.get("/favicon.ico", include_in_schema=False)
async def favicon():
# Return 204 No Content if favicon doesn't exist to avoid 500 errors
if os.path.exists("favicon.ico"):
return FileResponse("favicon.ico")
from fastapi.responses import Response
return Response(status_code=204)
if __name__ == "__main__":
import uvicorn
# Important for HF: Host 0.0.0.0 and Port 7860
port = int(os.environ.get("PORT", 7860))
uvicorn.run(app, host="0.0.0.0", port=port)
|