File size: 28,506 Bytes
1c25c67 08c55d8 1c25c67 08c55d8 1c25c67 08c55d8 1c25c67 |
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 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 |
from fastapi import FastAPI, HTTPException
from pydantic import BaseModel
import torch
import torch.nn as nn
import numpy as np
from typing import Optional, List
import time
from datetime import datetime, timezone
import os
import warnings
from huggingface_hub import hf_hub_download
from contextlib import asynccontextmanager
import uvicorn
from dotenv import load_dotenv
import shutil
import joblib
from pathlib import Path
from transformers import BertTokenizer, BertModel
from utils.model_classes import MHSA_GRU, MultiHeadSelfAttention
load_dotenv()
warnings.filterwarnings('ignore')
# ========================= CONFIGURATION =========================
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
API_VERSION = "1.0.0"
MODEL_VERSION = "MHSA-GRU-Transformer-v1.0"
# Model repository configuration
MODEL_REPO = {
"repo_id": "camlas/toxicity",
"files": {
"classifier": "mhsa_gru_classifier.pth",
"scaler": "scaler.pkl",
"config": "config.json",
"model_weights": "model.safetensors",
"vocab": "vocab.txt",
"tokenizer_config": "tokenizer_config.json",
"special_tokens_map": "special_tokens_map.json"
}
}
# Global model variables
classifier = None
scaler = None
transformer_model = None
transformer_tokenizer = None
EMBEDDING_TYPE = "Bert"
MODEL_NAME = "ProtBERT"
# ========================= PYDANTIC MODELS =========================
class SequenceRequest(BaseModel):
sequence: str
class BatchSequenceRequest(BaseModel):
sequences: List[str]
class PredictionResponse(BaseModel):
status_code: int
status: str
success: bool
data: Optional[dict] = None
error: Optional[str] = None
error_code: Optional[str] = None
timestamp: str
api_version: str
processing_time_ms: float
class HealthResponse(BaseModel):
status_code: int
status: str
service: str
api_version: str
model_version: str
models_loaded: bool
models_loaded_count: int
total_models_required: int
model_sources: dict
repository_info: dict
device: str
timestamp: str
# ========================= HELPER FUNCTIONS =========================
def create_kmers(sequence, k=6):
"""Convert DNA sequence to k-mer tokens (for DNABERT)"""
kmers = []
for i in range(len(sequence) - k + 1):
kmer = sequence[i:i+k]
kmers.append(kmer)
return ' '.join(kmers)
def ensure_models_directory():
models_dir = "models"
if not os.path.exists(models_dir):
os.makedirs(models_dir)
print(f"β
Created {models_dir} directory")
return models_dir
def download_model_from_hub(model_name: str) -> Optional[str]:
"""Download individual model files from HuggingFace Hub"""
try:
if model_name not in MODEL_REPO["files"]:
raise ValueError(f"Unknown model: {model_name}")
filename = MODEL_REPO["files"][model_name]
repo_id = MODEL_REPO["repo_id"]
models_dir = ensure_models_directory()
local_path = os.path.join(models_dir, filename)
if os.path.exists(local_path):
print(f"β
Found {model_name} in local models directory: {local_path}")
return local_path
print(f"π₯ Downloading {model_name} ({filename}) from {repo_id}...")
token = os.getenv("HF_TOKEN") or os.getenv("HUGGINGFACE_HUB_TOKEN")
if not token:
print("β οΈ Warning: No HF token found. This may fail for private repositories.")
temp_model_path = hf_hub_download(
repo_id=repo_id,
filename=filename,
repo_type="model",
token=token
)
shutil.copy2(temp_model_path, local_path)
print(f"β
{model_name} downloaded and stored!")
return local_path
except Exception as e:
print(f"β Error downloading {model_name}: {e}")
return None
def extract_features_from_sequence(sequence: str):
"""Extract features from sequence using ProtBERT"""
global transformer_model, transformer_tokenizer
if transformer_model is None or transformer_tokenizer is None:
raise ValueError("ProtBERT model not loaded")
# ProtBERT expects sequences with spaces between amino acids
# Convert "MKTAYIAKQR" to "M K T A Y I A K Q R"
processed_seq = ' '.join(list(sequence.upper()))
# Tokenize
inputs = transformer_tokenizer(
processed_seq,
return_tensors="pt",
padding=True,
truncation=True,
max_length=512
)
inputs = {k: v.to(device) for k, v in inputs.items()}
# Extract features
with torch.no_grad():
outputs = transformer_model(**inputs)
# Use [CLS] token embedding
cls_embeddings = outputs.last_hidden_state[:, 0, :]
return cls_embeddings.cpu().numpy()
def load_all_models():
"""Load all models from HuggingFace Hub"""
global classifier, scaler, transformer_model, transformer_tokenizer
models_dir = ensure_models_directory()
models_loaded = {
"classifier": False,
"scaler": False,
"transformer_model": False,
"transformer_tokenizer": False
}
print(f"π Loading models from {MODEL_REPO['repo_id']}...")
print("=" * 60)
try:
# Download all necessary files
print("π₯ Downloading ProtBERT model files...")
files_to_download = ["config", "model_weights", "vocab",
"tokenizer_config", "special_tokens_map"]
for file_key in files_to_download:
download_model_from_hub(file_key)
# Load ProtBERT Tokenizer
print("π Loading ProtBERT tokenizer...")
try:
transformer_tokenizer = BertTokenizer.from_pretrained(
models_dir,
do_lower_case=False,
local_files_only=True
)
models_loaded["transformer_tokenizer"] = True
print("β
ProtBERT tokenizer loaded!")
except Exception as e:
print(f"β Error loading tokenizer: {e}")
# Try loading from HuggingFace directly
print("π Trying to load tokenizer directly from HuggingFace...")
token = os.getenv("HF_TOKEN") or os.getenv("HUGGINGFACE_HUB_TOKEN")
transformer_tokenizer = BertTokenizer.from_pretrained(
MODEL_REPO["repo_id"],
do_lower_case=False,
token=token
)
models_loaded["transformer_tokenizer"] = True
print("β
ProtBERT tokenizer loaded from HuggingFace!")
# Load ProtBERT Model
print("π Loading ProtBERT model...")
try:
transformer_model = BertModel.from_pretrained(
models_dir,
local_files_only=True
)
models_loaded["transformer_model"] = True
print("β
ProtBERT model loaded!")
except Exception as e:
print(f"β Error loading model: {e}")
# Try loading from HuggingFace directly
print("π Trying to load model directly from HuggingFace...")
token = os.getenv("HF_TOKEN") or os.getenv("HUGGINGFACE_HUB_TOKEN")
transformer_model = BertModel.from_pretrained(
MODEL_REPO["repo_id"],
token=token
)
models_loaded["transformer_model"] = True
print("β
ProtBERT model loaded from HuggingFace!")
transformer_model.to(device)
transformer_model.eval()
# Load Classifier
print("π Loading classifier (MHSA-GRU)...")
clf_path = os.path.join(models_dir, MODEL_REPO["files"]["classifier"])
if not os.path.exists(clf_path):
print("π₯ Classifier not found locally, downloading...")
clf_path = download_model_from_hub("classifier")
if clf_path and os.path.exists(clf_path):
checkpoint = torch.load(clf_path, map_location=device, weights_only=False)
# Handle different checkpoint formats
if 'input_dim' in checkpoint:
input_dim = checkpoint['input_dim']
else:
# ProtBERT embedding size is 1024
input_dim = 1024
classifier = MHSA_GRU(input_dim, hidden_dim=256)
# Load state dict
if 'model_state_dict' in checkpoint:
classifier.load_state_dict(checkpoint['model_state_dict'])
else:
classifier.load_state_dict(checkpoint)
classifier.to(device)
classifier.eval()
models_loaded["classifier"] = True
print(f"β
Classifier loaded! (input_dim: {input_dim})")
# Load Scaler
print("π Loading feature scaler...")
scaler_path = os.path.join(models_dir, MODEL_REPO["files"]["scaler"])
if not os.path.exists(scaler_path):
print("π₯ Scaler not found locally, downloading...")
scaler_path = download_model_from_hub("scaler")
if scaler_path and os.path.exists(scaler_path):
scaler = joblib.load(scaler_path)
models_loaded["scaler"] = True
print("β
Scaler loaded!")
loaded_count = sum(models_loaded.values())
total_count = len(models_loaded)
print(f"\nπ Model Loading Summary:")
print(f" β’ Successfully loaded: {loaded_count}/{total_count}")
print(f" β’ Repository: {MODEL_REPO['repo_id']}")
print(f" β’ Embedding Model: {MODEL_NAME}")
print(f" β’ Device: {device}")
critical_models = ["classifier", "scaler", "transformer_model", "transformer_tokenizer"]
critical_loaded = all(models_loaded[m] for m in critical_models)
if critical_loaded:
print("π All critical models loaded successfully!")
return True
else:
print("β οΈ Some critical models failed to load")
print(f" Models status: {models_loaded}")
return False
except Exception as e:
print(f"β Error loading models: {e}")
import traceback
traceback.print_exc()
return False
# ========================= FASTAPI APPLICATION =========================
@asynccontextmanager
async def lifespan(app: FastAPI):
# Startup
print("π Starting Toxicity Prediction API...")
success = load_all_models()
if not success:
print("β οΈ Warning: Not all models loaded successfully")
yield
# Shutdown
print("π Shutting down API...")
app = FastAPI(
title="Toxicity Prediction API",
description="API for toxicity prediction using MHSA-GRU with Transformer embeddings",
version="1.0.0",
lifespan=lifespan
)
@app.get("/")
async def root():
return {
"message": "Toxicity Prediction API",
"version": API_VERSION,
"endpoints": {
"/predict": "POST - Predict toxicity for a single sequence",
"/predict/batch": "POST - Predict toxicity for multiple sequences",
"/example": "GET - Try the API with a hardcoded example sequence",
"/health": "GET - Check API health and model status"
},
"example_usage": {
"single": {
"method": "POST",
"url": "/predict",
"body": {"sequence": "MKTAYIAKQRQISFVKSHFSRQLE"}
},
"batch": {
"method": "POST",
"url": "/predict/batch",
"body": {
"sequences": [
"MLLPATMSDKPDMAEIEKFDKSKLKKTETQEKNPLPSKETIEQEKQAGES",
"MFGLPQQEVSEEEKRAHQEQTEKTLKQAAYVAAFLWVSPMIWHLVKKQWK"
]
}
},
"example": {
"method": "GET",
"url": "/example",
"description": "No input needed - just call this endpoint"
}
}
}
@app.post("/predict", response_model=PredictionResponse)
async def predict(request: SequenceRequest):
start_time = time.time()
timestamp = datetime.now(timezone.utc).isoformat()
try:
if not request.sequence or len(request.sequence) == 0:
raise HTTPException(
status_code=400,
detail={
"status_code": 400,
"status": "error",
"success": False,
"error": "No sequence provided",
"error_code": "MISSING_SEQUENCE",
"timestamp": timestamp,
"api_version": API_VERSION,
"processing_time_ms": round((time.time() - start_time) * 1000, 2)
}
)
# Check if models are loaded
if classifier is None or scaler is None or transformer_model is None:
raise HTTPException(
status_code=503,
detail={
"status_code": 503,
"status": "error",
"success": False,
"error": "Models not loaded properly",
"error_code": "MODEL_NOT_LOADED",
"timestamp": timestamp,
"api_version": API_VERSION,
"processing_time_ms": round((time.time() - start_time) * 1000, 2)
}
)
# Validate sequence
sequence = request.sequence.upper().strip()
if len(sequence) < 10:
raise HTTPException(
status_code=400,
detail={
"status_code": 400,
"status": "error",
"success": False,
"error": "Sequence too short (minimum 10 characters)",
"error_code": "SEQUENCE_TOO_SHORT",
"timestamp": timestamp,
"api_version": API_VERSION,
"processing_time_ms": round((time.time() - start_time) * 1000, 2)
}
)
# Step 1: Extract features using ProtBERT
features = extract_features_from_sequence(sequence)
# Step 2: Scale features
scaled_features = scaler.transform(features)
# Step 3: Predict using MHSA-GRU
features_tensor = torch.FloatTensor(scaled_features).to(device)
with torch.no_grad():
probability = classifier(features_tensor).cpu().numpy()[0, 0]
# Determine prediction
prediction_class = 1 if probability > 0.5 else 0
predicted_label = "Toxic" if prediction_class == 1 else "Non-Toxic"
confidence = float(abs(probability - 0.5) * 2)
# Determine confidence level
if confidence > 0.8:
confidence_level = "high"
elif confidence > 0.6:
confidence_level = "medium"
else:
confidence_level = "low"
processing_time = round((time.time() - start_time) * 1000, 2)
return PredictionResponse(
status_code=200,
status="success",
success=True,
data={
"sequence": sequence[:100] + "..." if len(sequence) > 100 else sequence,
"sequence_length": len(sequence),
"prediction": {
"predicted_class": predicted_label,
"confidence": confidence,
"confidence_level": confidence_level,
"toxicity_score": float(probability),
"non_toxicity_score": float(1 - probability)
},
"metadata": {
"embedding_model": MODEL_NAME,
"embedding_type": EMBEDDING_TYPE,
"model_version": MODEL_VERSION,
"device": str(device)
}
},
timestamp=timestamp,
api_version=API_VERSION,
processing_time_ms=processing_time
)
except HTTPException:
raise
except Exception as e:
processing_time = round((time.time() - start_time) * 1000, 2)
raise HTTPException(
status_code=500,
detail={
"status_code": 500,
"status": "error",
"success": False,
"error": f"Internal server error: {str(e)}",
"error_code": "INTERNAL_ERROR",
"timestamp": timestamp,
"api_version": API_VERSION,
"processing_time_ms": processing_time
}
)
@app.post("/predict/batch", response_model=PredictionResponse)
async def predict_batch(request: BatchSequenceRequest):
"""
Predict toxicity for multiple sequences at once.
Example request body:
{
"sequences": [
"MLLPATMSDKPDMAEIEKFDKSKLKKTETQEKNPLPSKETIEQEKQAGES",
"MFGLPQQEVSEEEKRAHQEQTEKTLKQAAYVAAFLWVSPMIWHLVKKQWK"
]
}
"""
start_time = time.time()
timestamp = datetime.now(timezone.utc).isoformat()
try:
if not request.sequences or len(request.sequences) == 0:
raise HTTPException(
status_code=400,
detail={
"status_code": 400,
"status": "error",
"success": False,
"error": "No sequences provided",
"error_code": "MISSING_SEQUENCES",
"timestamp": timestamp,
"api_version": API_VERSION,
"processing_time_ms": round((time.time() - start_time) * 1000, 2)
}
)
# Check if models are loaded
if classifier is None or scaler is None or transformer_model is None:
raise HTTPException(
status_code=503,
detail={
"status_code": 503,
"status": "error",
"success": False,
"error": "Models not loaded properly",
"error_code": "MODEL_NOT_LOADED",
"timestamp": timestamp,
"api_version": API_VERSION,
"processing_time_ms": round((time.time() - start_time) * 1000, 2)
}
)
results = []
for idx, seq in enumerate(request.sequences, 1):
try:
sequence = seq.upper().strip()
# Validate sequence length
if len(sequence) < 10:
results.append({
"sequence_index": idx,
"sequence": sequence[:100] + "..." if len(sequence) > 100 else sequence,
"sequence_length": len(sequence),
"error": "Sequence too short (minimum 10 characters)",
"predicted_class": None,
"toxicity_score": None,
"confidence": None
})
continue
# Extract features using ProtBERT
features = extract_features_from_sequence(sequence)
scaled_features = scaler.transform(features)
features_tensor = torch.FloatTensor(scaled_features).to(device)
with torch.no_grad():
probability = classifier(features_tensor).cpu().numpy()[0, 0]
prediction_class = 1 if probability > 0.5 else 0
predicted_label = "Toxic" if prediction_class == 1 else "Non-Toxic"
confidence = float(abs(probability - 0.5) * 2)
# Determine confidence level
if confidence > 0.8:
confidence_level = "high"
elif confidence > 0.6:
confidence_level = "medium"
else:
confidence_level = "low"
results.append({
"sequence_index": idx,
"sequence": sequence[:100] + "..." if len(sequence) > 100 else sequence,
"sequence_length": len(sequence),
"predicted_class": predicted_label,
"toxicity_score": float(probability),
"non_toxicity_score": float(1 - probability),
"confidence": confidence,
"confidence_level": confidence_level,
"error": None
})
except Exception as e:
# Handle individual sequence errors without stopping the batch
results.append({
"sequence_index": idx,
"sequence": seq[:100] + "..." if len(seq) > 100 else seq,
"sequence_length": len(seq),
"error": f"Error processing sequence: {str(e)}",
"predicted_class": None,
"toxicity_score": None,
"confidence": None
})
processing_time = round((time.time() - start_time) * 1000, 2)
# Count successful predictions
successful_predictions = sum(1 for r in results if r.get("predicted_class") is not None)
return PredictionResponse(
status_code=200,
status="success",
success=True,
data={
"total_sequences": len(request.sequences),
"successful_predictions": successful_predictions,
"failed_predictions": len(request.sequences) - successful_predictions,
"results": results,
"metadata": {
"embedding_model": MODEL_NAME,
"embedding_type": EMBEDDING_TYPE,
"model_version": MODEL_VERSION,
"device": str(device)
}
},
timestamp=timestamp,
api_version=API_VERSION,
processing_time_ms=processing_time
)
except HTTPException:
raise
except Exception as e:
processing_time = round((time.time() - start_time) * 1000, 2)
raise HTTPException(
status_code=500,
detail={
"status_code": 500,
"status": "error",
"success": False,
"error": f"Internal server error: {str(e)}",
"error_code": "INTERNAL_ERROR",
"timestamp": timestamp,
"api_version": API_VERSION,
"processing_time_ms": processing_time
}
)
@app.get("/example", response_model=PredictionResponse)
async def predict_example():
"""
Predict using a hardcoded example protein sequence.
No input required - just call this endpoint to see how the API works.
Example sequence: MLLPATMSDKPDMAEIEKFDKSKLKKTETQEKNPLPSKETIEQEKQAGES
"""
start_time = time.time()
timestamp = datetime.now(timezone.utc).isoformat()
# Hardcoded example sequence
EXAMPLE_SEQUENCE = "MLLPATMSDKPDMAEIEKFDKSKLKKTETQEKNPLPSKETIEQEKQAGES"
try:
# Check if models are loaded
if classifier is None or scaler is None or transformer_model is None:
raise HTTPException(
status_code=503,
detail={
"status_code": 503,
"status": "error",
"success": False,
"error": "Models not loaded properly",
"error_code": "MODEL_NOT_LOADED",
"timestamp": timestamp,
"api_version": API_VERSION,
"processing_time_ms": round((time.time() - start_time) * 1000, 2)
}
)
sequence = EXAMPLE_SEQUENCE.upper().strip()
# Step 1: Extract features using ProtBERT
features = extract_features_from_sequence(sequence)
# Step 2: Scale features
scaled_features = scaler.transform(features)
# Step 3: Predict using MHSA-GRU
features_tensor = torch.FloatTensor(scaled_features).to(device)
with torch.no_grad():
probability = classifier(features_tensor).cpu().numpy()[0, 0]
# Determine prediction
prediction_class = 1 if probability > 0.5 else 0
predicted_label = "Toxic" if prediction_class == 1 else "Non-Toxic"
confidence = float(abs(probability - 0.5) * 2)
# Determine confidence level
if confidence > 0.8:
confidence_level = "high"
elif confidence > 0.6:
confidence_level = "medium"
else:
confidence_level = "low"
processing_time = round((time.time() - start_time) * 1000, 2)
return PredictionResponse(
status_code=200,
status="success",
success=True,
data={
"note": "This is an example prediction using a hardcoded sequence",
"sequence": sequence,
"sequence_length": len(sequence),
"prediction": {
"predicted_class": predicted_label,
"confidence": confidence,
"confidence_level": confidence_level,
"toxicity_score": float(probability),
"non_toxicity_score": float(1 - probability)
},
"metadata": {
"embedding_model": MODEL_NAME,
"embedding_type": EMBEDDING_TYPE,
"model_version": MODEL_VERSION,
"device": str(device),
"source": "hardcoded_example"
}
},
timestamp=timestamp,
api_version=API_VERSION,
processing_time_ms=processing_time
)
except HTTPException:
raise
except Exception as e:
processing_time = round((time.time() - start_time) * 1000, 2)
raise HTTPException(
status_code=500,
detail={
"status_code": 500,
"status": "error",
"success": False,
"error": f"Internal server error: {str(e)}",
"error_code": "INTERNAL_ERROR",
"timestamp": timestamp,
"api_version": API_VERSION,
"processing_time_ms": processing_time
}
)
@app.get("/health", response_model=HealthResponse)
async def health_check():
models_loaded = all([
classifier is not None,
scaler is not None,
transformer_model is not None,
transformer_tokenizer is not None
])
model_sources = {
"classifier": {
"loaded": classifier is not None,
"source": "huggingface_hub",
"repository": MODEL_REPO["repo_id"]
},
"scaler": {
"loaded": scaler is not None,
"source": "huggingface_hub",
"repository": MODEL_REPO["repo_id"]
},
"transformer_model": {
"loaded": transformer_model is not None,
"model_name": MODEL_NAME,
"source": "huggingface_hub",
"repository": MODEL_REPO["repo_id"]
}
}
repository_info = {
"repository_id": MODEL_REPO["repo_id"],
"embedding_type": EMBEDDING_TYPE,
"model_name": MODEL_NAME,
"total_models": len(MODEL_REPO["files"])
}
return HealthResponse(
status_code=200 if models_loaded else 503,
status="healthy" if models_loaded else "unhealthy",
service="Toxicity Prediction API",
api_version=API_VERSION,
model_version=MODEL_VERSION,
models_loaded=models_loaded,
models_loaded_count=sum(1 for source in model_sources.values() if source["loaded"]),
total_models_required=3,
model_sources=model_sources,
repository_info=repository_info,
device=str(device),
timestamp=datetime.now(timezone.utc).isoformat()
)
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000) |