File size: 27,447 Bytes
bda3c09 361b4d2 bda3c09 58b68f2 361b4d2 58b68f2 f0f2c4a bda3c09 361b4d2 bda3c09 361b4d2 58b68f2 361b4d2 58b68f2 361b4d2 f0f2c4a 58b68f2 361b4d2 f0f2c4a 361b4d2 5cf79d4 361b4d2 f0f2c4a 361b4d2 f0f2c4a bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 f0f2c4a 361b4d2 f0f2c4a 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 b9b96ce 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 f3e4ffb 361b4d2 bda3c09 f3e4ffb 361b4d2 f3e4ffb 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 f3e4ffb bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 b9b96ce 5cf79d4 b9b96ce bda3c09 361b4d2 bda3c09 361b4d2 bda3c09 b9b96ce 361b4d2 b9b96ce 5cf79d4 b9b96ce 361b4d2 bda3c09 361b4d2 bda3c09 361b4d2 f3e4ffb b9b96ce 5cf79d4 b9b96ce f3e4ffb 361b4d2 bda3c09 67460a4 361b4d2 67460a4 361b4d2 67460a4 361b4d2 67460a4 bda3c09 | 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 | import io
import torch
import torch.nn as nn
import timm
import pickle
import traceback
import os
from PIL import Image
from fastapi import FastAPI, File, UploadFile
from fastapi.middleware.cors import CORSMiddleware
from torchvision import transforms
from transformers import T5ForConditionalGeneration, T5Tokenizer
from huggingface_hub import hf_hub_download
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# CONFIGURATION
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
CONFIG = {
'coatnet_model': 'coatnet_1_rw_224',
't5_model': 't5-small',
'img_emb_dim': 768,
'train_last_stages': 2,
'image_size': 224,
}
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# DEVICE
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
print(f"π₯οΈ Using device: {device}")
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# SECTION 7: Load Tokenizer and Image Transform
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
print("\n" + "="*80)
print("LOADING TOKENIZER AND IMAGE TRANSFORM")
print("="*80)
# Load tokenizer
tokenizer = T5Tokenizer.from_pretrained(CONFIG['t5_model'])
print(f"β Loaded tokenizer: {CONFIG['t5_model']}")
# Define image transform
transform = transforms.Compose([
transforms.Resize((CONFIG['image_size'], CONFIG['image_size'])),
transforms.ToTensor(),
transforms.Normalize(
mean=[0.485, 0.456, 0.406],
std=[0.229, 0.224, 0.225]
)
])
print(f"β Image transform defined (size: {CONFIG['image_size']}x{CONFIG['image_size']})")
def preprocess_image(image_path: str) -> torch.Tensor:
"""Load and preprocess image."""
image = Image.open(image_path).convert('RGB')
return transform(image)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ARCHITECTURE 1 β CoAtNet Encoder (shared by all three models)
# Matches BOTH notebooks exactly.
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class CoAtNetEncoder(nn.Module):
def __init__(self, model_name=None, pretrained=False, train_last_stages=None):
super().__init__()
# Use CONFIG defaults if not specified
model_name = model_name or CONFIG['coatnet_model']
train_last_stages = train_last_stages or CONFIG['train_last_stages']
# pretrained=False at inference time β weights come from .pt file
self.backbone = timm.create_model(model_name, pretrained=pretrained)
for name, param in self.backbone.named_parameters():
param.requires_grad = False
for i in range(5 - train_last_stages, 5):
if f"stages.{i}" in name:
param.requires_grad = True
break
# Detect feature_dim dynamically (same as RM/PPO notebook Cell 4)
with torch.no_grad():
dummy = torch.randn(1, 3, 224, 224)
features = self.backbone.forward_features(dummy)
if len(features.shape) == 4:
features = features.mean(dim=[2, 3])
self.feature_dim = features.shape[-1]
print(f" CoAtNetEncoder feature_dim = {self.feature_dim}")
def forward(self, x):
features = self.backbone.forward_features(x)
if len(features.shape) == 4:
features = features.mean(dim=[2, 3])
return features
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ARCHITECTURE 2 β SFT VisionT5Model
# BUG FIX: Uses self.t5 and self.proj β exactly matching best_model.pt keys
# from SFT notebook Cell 33. Do NOT rename these to txt_model/img_proj.
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class SFTVisionT5Model(nn.Module):
def __init__(self, img_encoder, txt_model_name="t5-small", img_emb_dim=768):
super().__init__()
self.img_encoder = img_encoder
# β self.t5 (NOT self.txt_model β must match saved keys)
self.t5 = T5ForConditionalGeneration.from_pretrained(txt_model_name)
# β self.proj (NOT self.img_proj β must match saved keys)
self.proj = nn.Linear(img_emb_dim, self.t5.config.d_model)
for p in self.t5.shared.parameters():
p.requires_grad = False
def generate_reports(self, pixel_values, max_length=100):
# Removed self.eval() to match Colab behavior
with torch.no_grad():
# Extract + project image features
img_feats = self.img_encoder(pixel_values) # [B, feature_dim]
img_feats = self.proj(img_feats) # [B, d_model]
encoder_hidden_states = img_feats.unsqueeze(1) # [B, 1, d_model]
# Encode
encoder_outputs = self.t5.encoder(
inputs_embeds=encoder_hidden_states
)
attn = torch.ones(
encoder_hidden_states.size()[:2], device=pixel_values.device
)
generated_ids = self.t5.generate(
encoder_outputs=encoder_outputs,
attention_mask=attn,
max_length=max_length,
num_beams=4,
early_stopping=True,
)
reports = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)
# Strip any leading "Projection: X." prefix that leaked from training data
cleaned = []
for r in reports:
if r.lower().startswith("projection:"):
# Remove the first "Projection: X." segment
parts = r.split(".", 1)
r = parts[1].strip() if len(parts) > 1 else r
cleaned.append(r)
return cleaned
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ARCHITECTURE 3 β PPO VisionT5Model
# Uses self.txt_model and self.img_proj β matching RM/PPO notebook Cell 4.
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class PPOVisionT5Model(nn.Module):
def __init__(self, img_encoder, txt_model_name="t5-small", img_emb_dim=768):
super().__init__()
self.img_encoder = img_encoder
# β self.txt_model (matches PPO notebook Cell 4)
self.txt_model = T5ForConditionalGeneration.from_pretrained(txt_model_name)
# β self.img_proj (matches PPO notebook Cell 4)
self.img_proj = nn.Linear(img_emb_dim, self.txt_model.config.d_model)
def generate_reports(self, images, max_length=128):
with torch.no_grad():
img_features = self.img_encoder(images) # [B, feature_dim]
img_emb = self.img_proj(img_features).unsqueeze(1) # [B, 1, d_model]
batch_size = images.size(0)
img_attn = torch.ones(batch_size, 1, device=images.device)
encoder_outputs = self.txt_model.encoder(
inputs_embeds=img_emb,
attention_mask=img_attn
)
# BUG FIX 3: same repetition guards as SFT
generated = self.txt_model.generate(
encoder_outputs=encoder_outputs,
attention_mask=img_attn,
max_length=max_length,
num_beams=4,
early_stopping=True,
)
reports = tokenizer.batch_decode(generated, skip_special_tokens=True)
# Strip any leading "Projection: X." prefix that leaked from training data
cleaned = []
for r in reports:
if r.lower().startswith("projection:"):
# Remove the first "Projection: X." segment
parts = r.split(".", 1)
r = parts[1].strip() if len(parts) > 1 else r
cleaned.append(r)
return cleaned
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ARCHITECTURE 4 β Reward Model
# Matches RM/PPO notebook Cell 5 exactly.
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class RewardModel(nn.Module):
def __init__(self, img_encoder, txt_model_name="t5-small"):
super().__init__()
self.img_encoder = img_encoder
self.txt_encoder = T5ForConditionalGeneration.from_pretrained(txt_model_name).encoder
img_dim = img_encoder.feature_dim
txt_dim = self.txt_encoder.config.d_model
self.img_proj = nn.Linear(img_dim, 512)
self.txt_proj = nn.Linear(txt_dim, 512)
self.reward_head = nn.Sequential(
nn.Linear(1024, 512), nn.ReLU(), nn.Dropout(0.1),
nn.Linear(512, 256), nn.ReLU(), nn.Dropout(0.1),
nn.Linear(256, 1)
)
def forward(self, images, input_ids, attention_mask):
img_features = self.img_encoder(images)
img_emb = self.img_proj(img_features)
txt_outputs = self.txt_encoder(input_ids=input_ids, attention_mask=attention_mask)
txt_emb = txt_outputs.last_hidden_state.mean(dim=1)
txt_emb = self.txt_proj(txt_emb)
combined = torch.cat([img_emb, txt_emb], dim=1)
return self.reward_head(combined).squeeze(-1)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# MODEL LOADER β handles both .pt (state_dict) and .pkl (full model)
# Prints a key-match diagnostic so you can see exactly what loaded.
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def remap_keys(raw_sd: dict, label: str) -> dict:
"""
Remap state_dict keys to match current model attribute names.
Known mismatches discovered from diagnostic output:
SFT notebook used:
img_encoder.encoder.* β we use img_encoder.backbone.*
t5.* β we use t5.* (already correct for SFTVisionT5Model)
proj.* β we use proj.* (already correct for SFTVisionT5Model)
PPO/RM notebooks used:
img_encoder.backbone.* β already correct β
txt_model.* β already correct β
img_proj.* β already correct β
"""
remapped = {}
changed = 0
for k, v in raw_sd.items():
new_k = k
# SFT encoder used self.encoder, our CoAtNetEncoder uses self.backbone
if "img_encoder.encoder." in new_k:
new_k = new_k.replace("img_encoder.encoder.", "img_encoder.backbone.")
changed += 1
remapped[new_k] = v
if changed:
print(f" π§ Remapped {changed} keys: img_encoder.encoder.* β img_encoder.backbone.*")
return remapped
def load_model(path: str, model_obj: nn.Module, label: str) -> nn.Module:
print(f"\nπ Loading {label} from: {path}")
if path.endswith(".pkl"):
with open(path, "rb") as f:
loaded = pickle.load(f)
print(f" β
Loaded full pickle object: {type(loaded)}")
return loaded.to(device)
# .pt state_dict
raw_sd = torch.load(path, map_location=device)
# Print first 5 saved keys for diagnosis
saved_keys = list(raw_sd.keys())
print(f" Saved keys (first 5): {saved_keys[:5]}")
model_keys = list(model_obj.state_dict().keys())
print(f" Model keys (first 5): {model_keys[:5]}")
# Remap any mismatched key prefixes
raw_sd = remap_keys(raw_sd, label)
result = model_obj.load_state_dict(raw_sd, strict=False)
# Ignore known-safe missing keys:
# head.fc.* - classification head, intentionally removed (num_classes=0)
# num_batches_tracked - BatchNorm counter, not a learned weight
SAFE_MISSING = ("num_batches_tracked", "head.fc.")
missing = [k for k in result.missing_keys if not any(s in k for s in SAFE_MISSING)]
unexpected = [k for k in result.unexpected_keys if "num_batches_tracked" not in k]
if missing:
print(f" Missing keys: {missing[:5]}{'...' if len(missing)>5 else ''}")
print(f" WARNING: {len(missing)} missing keys - weights NOT loaded for those layers!")
if unexpected:
print(f" Unexpected keys: {unexpected[:5]}{'...' if len(unexpected)>5 else ''}")
if not missing and not unexpected:
print(f" OK: All keys matched perfectly!")
return model_obj.to(device)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# LOAD ALL THREE MODELS FROM HUGGING FACE HUB
# Models are downloaded from Shree2604/BioStack repository
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def download_model_from_hf(model_filename: str, local_path: str = "models/") -> str:
"""Download model from Hugging Face Hub if not exists locally"""
os.makedirs(local_path, exist_ok=True)
full_path = os.path.join(local_path, model_filename)
if not os.path.exists(full_path):
print(f" Downloading {model_filename} from Hugging Face Hub...")
try:
downloaded_path = hf_hub_download(
repo_id="Shree2604/BioStack",
filename=model_filename,
local_dir=local_path,
local_dir_use_symlinks=False
)
print(f" Downloaded {model_filename}")
return downloaded_path
except Exception as e:
print(f" Failed to download {model_filename}: {e}")
raise
else:
print(f" Using local {model_filename}")
return full_path
print("\n" + "="*60)
print(" LOADING MODELS FROM HUGGING FACE HUB")
print("="*60)
# Download models from Hugging Face
SFT_MODEL_PATH = download_model_from_hf("best_model.pt")
REWARD_MODEL_PATH = download_model_from_hf("reward_model.pt")
PPO_MODEL_PATH = download_model_from_hf("rlhf_model.pt")
# SFT
_sft_enc = CoAtNetEncoder(pretrained=False)
sft_model = load_model(SFT_MODEL_PATH, SFTVisionT5Model(_sft_enc), "SFT Model")
sft_model.eval()
# Reward
_rm_enc = CoAtNetEncoder(pretrained=False)
reward_model = load_model(REWARD_MODEL_PATH, RewardModel(_rm_enc), "Reward Model")
reward_model.eval()
# PPO
_ppo_enc = CoAtNetEncoder(pretrained=False)
ppo_model = load_model(PPO_MODEL_PATH, PPOVisionT5Model(_ppo_enc), "PPO Model")
ppo_model.eval()
print("\n All models loaded and ready!\n" + "="*60 + "\n")
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# IMAGE PREPROCESSING
# Matches BOTH notebooks: RGB, 224Γ224, ImageNet normalisation
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
transform = transforms.Compose([
transforms.Resize((224, 224)),
transforms.ToTensor(),
transforms.Normalize(mean=[0.485, 0.456, 0.406],
std=[0.229, 0.224, 0.225])
])
def preprocess(file_bytes: bytes) -> torch.Tensor:
img = Image.open(io.BytesIO(file_bytes)).convert("RGB")
return transform(img).unsqueeze(0).to(device) # [1, 3, 224, 224]
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# REWARD FEEDBACK GENERATOR
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
KEY_MEDICAL_TERMS = [
'lung', 'heart', 'normal', 'clear', 'opacity', 'infiltrate',
'cardiomegaly', 'pleural', 'pulmonary', 'chest', 'thorax',
'pneumonia', 'edema', 'effusion', 'consolidation'
]
def reward_feedback(report: str, score: float) -> str:
rl = report.lower()
present = [t for t in KEY_MEDICAL_TERMS if t in rl]
missing = [t for t in KEY_MEDICAL_TERMS if t not in rl]
words = len(report.split())
length_q = "good" if 50 <= words <= 150 else ("too short" if words < 50 else "too long")
# Quality factor assessments based on the score and analysis
terminology_score = len(present) / len(KEY_MEDICAL_TERMS)
completeness_score = min(1.0, words / 100.0) # Rough estimate based on length
structure_score = 1.0 if 50 <= words <= 150 else 0.5 # Good structure if proper length
radiological_score = score # The overall score represents alignment
return (
f"Reward Score: {score:.2f} | "
f"Quality Factors - "
f"Medical Terminology: {terminology_score:.1%} | "
f"Clinical Completeness: {completeness_score:.1%} | "
f"Report Structure: {structure_score:.1%}"
)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# FASTAPI APP
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
app = FastAPI(title="RLHF Medical Demo")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"], # Allow all origins for Hugging Face Spaces
allow_methods=["*"],
allow_headers=["*"],
)
@app.get("/health")
def health():
return {"status": "ok", "device": str(device)}
@app.post("/sft")
async def sft_inference(file: UploadFile = File(...)):
try:
# Save uploaded file to temp path (matching Colab approach)
import tempfile
with tempfile.NamedTemporaryFile(delete=False, suffix='.png') as temp_file:
temp_file.write(await file.read())
temp_path = temp_file.name
try:
# Use file path preprocessing (exact Colab match)
tensor = preprocess_image(temp_path).unsqueeze(0).to(device)
report = sft_model.generate_reports(tensor)[0]
print(f"[SFT] Generated: {report}")
return {"report": report[:81]}
finally:
# Clean up temp file
os.unlink(temp_path)
except Exception as e:
traceback.print_exc()
return {"report": f"ERROR: {str(e)}"}
@app.post("/reward")
async def reward_inference(file: UploadFile = File(...)):
try:
# Save uploaded file to temp path (matching Colab approach)
import tempfile
with tempfile.NamedTemporaryFile(delete=False, suffix='.png') as temp_file:
temp_file.write(await file.read())
temp_path = temp_file.name
try:
# Use file path preprocessing (exact Colab match)
tensor = preprocess_image(temp_path).unsqueeze(0).to(device)
# First get the SFT report to score
sft_report = sft_model.generate_reports(tensor)[0]
print(f"[REWARD] Scoring SFT report: {sft_report}")
if not sft_report.strip():
return {"score": 0.0, "feedback": "", "sft_report": ""}
enc = tokenizer(
[sft_report],
max_length=128,
padding="max_length",
truncation=True,
return_tensors="pt"
)
input_ids = enc.input_ids.to(device)
attention_mask = enc.attention_mask.to(device)
with torch.no_grad():
raw_score = reward_model(tensor, input_ids, attention_mask).item()
# Detailed debug logging
print(f"[REWARD] Raw neural network output: {raw_score:.6f}")
print(f"[REWARD] Clamping to [0,1] range: max(0.0, min(1.0, {raw_score:.6f})) = {max(0.0, min(1.0, raw_score)):.6f}")
# Quality assessment details
rl = sft_report.lower()
present = [t for t in KEY_MEDICAL_TERMS if t in rl]
missing = [t for t in KEY_MEDICAL_TERMS if t not in rl]
words = len(sft_report.split())
length_q = "good" if 50 <= words <= 150 else ("too short" if words < 50 else "too long")
print(f"[REWARD] Report analysis:")
print(f" - Total words: {words} ({length_q})")
print(f" - Medical terms present ({len(present)}/{len(KEY_MEDICAL_TERMS)}): {present}")
print(f" - Medical terms missing: {missing}")
print(f" - Key terms list: {KEY_MEDICAL_TERMS}")
# Reward model architecture details
print(f"[REWARD] Model architecture:")
print(f" - CoAtNet feature dim: {reward_model.img_encoder.feature_dim}")
print(f" - T5 d_model: {reward_model.txt_encoder.config.d_model}")
print(f" - Combined feature dim: 1024 (512 img + 512 text)")
print(f" - Reward head: 1024β512β256β1")
# Clamped score for display
score = float(max(0.0, min(1.0, raw_score)))
feedback = reward_feedback(sft_report, score)
print(f"[REWARD] Final Score={score:.3f}")
return {"score": score, "feedback": feedback, "sft_report": sft_report}
finally:
# Clean up temp file
os.unlink(temp_path)
except Exception as e:
traceback.print_exc()
return {"score": 0.0, "feedback": f"ERROR: {str(e)}", "sft_report": ""}
@app.post("/ppo")
async def ppo_inference(file: UploadFile = File(...)):
try:
# Save uploaded file to temp path (matching Colab approach)
import tempfile
with tempfile.NamedTemporaryFile(delete=False, suffix='.png') as temp_file:
temp_file.write(await file.read())
temp_path = temp_file.name
try:
# Use file path preprocessing (exact Colab match)
tensor = preprocess_image(temp_path).unsqueeze(0).to(device)
report = ppo_model.generate_reports(tensor)[0]
print(f"[PPO] Generated: {report}")
return {"report": report}
finally:
# Clean up temp file
os.unlink(temp_path)
except Exception as e:
traceback.print_exc()
return {"report": f"ERROR: {str(e)}"}
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# DIAGNOSTIC ENDPOINT β call GET /debug_keys to verify key names in your files
# e.g. curl http://localhost:8000/debug_keys
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/debug_keys")
def debug_keys():
import os
result = {}
for label, path in [("SFT", SFT_MODEL_PATH), ("Reward", REWARD_MODEL_PATH), ("PPO", PPO_MODEL_PATH)]:
if not os.path.exists(path):
result[label] = f"FILE NOT FOUND: {path}"
continue
try:
sd = torch.load(path, map_location="cpu")
keys = list(sd.keys())
result[label] = {"first_10_keys": keys[:10], "total_keys": len(keys)}
except Exception as e:
result[label] = f"ERROR: {e}"
return result
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# STATIC FILE SERVING - Mount React build directory AFTER all API routes
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
from fastapi.staticfiles import StaticFiles
import os
# Check if build directory exists, create fallback if needed
if os.path.exists("build"):
app.mount("/", StaticFiles(directory="build", html=True), name="static")
print("β
React app mounted at /")
else:
print("β οΈ Build directory not found, serving API only")
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860, reload=False) |