File size: 19,583 Bytes
bda3c09 58b68f2 f3e4ffb 58b68f2 f3e4ffb 58b68f2 bda3c09 f3e4ffb bda3c09 58b68f2 f3e4ffb 58b68f2 f3e4ffb 58b68f2 bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb 28046a7 f3e4ffb 58b68f2 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb 28046a7 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 f3e4ffb bda3c09 67460a4 f3e4ffb 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 | import io
import torch
import torch.nn as nn
import timm
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 - Matching Colab Notebook Exactly
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
CONFIG = {
'coatnet_model': 'coatnet_1_rw_224',
't5_model': 't5-small',
'img_emb_dim': 768,
'train_last_stages': 2,
'image_size': 224,
'max_length': 100,
'num_beams': 4,
}
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# DEVICE
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
print(f"π₯οΈ Using device: {device}")
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# LOAD TOKENIZER - Matching Colab
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
print("\n" + "="*80)
print("LOADING TOKENIZER")
print("="*80)
tokenizer = T5Tokenizer.from_pretrained(CONFIG['t5_model'])
print(f"β Loaded tokenizer: {CONFIG['t5_model']}")
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# IMAGE TRANSFORM - Matching Colab Exactly
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
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']})")
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ARCHITECTURE 1: CoAtNetEncoder - Exactly from Colab SECTION 6
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class CoAtNetEncoder(nn.Module):
def __init__(self, model_name="coatnet_1_rw_224", pretrained=True, train_last_stages=2):
super().__init__()
self.encoder = timm.create_model(
model_name,
pretrained=pretrained,
num_classes=0,
global_pool="avg"
)
# Freeze all parameters
for p in self.encoder.parameters():
p.requires_grad = False
# Unfreeze last stages
if hasattr(self.encoder, "stages") and train_last_stages is not None:
stages = self.encoder.stages
for stage in stages[-train_last_stages:]:
for p in stage.parameters():
p.requires_grad = True
def forward(self, x):
return self.encoder(x)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# ARCHITECTURE 2: VisionT5Model - Exactly from Colab SECTION 6
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class VisionT5Model(nn.Module):
def __init__(self, img_encoder, txt_model_name="t5-small", img_emb_dim=768):
super().__init__()
# Vision encoder (CoAtNet)
self.img_encoder = img_encoder
# Text decoder (T5)
self.t5 = T5ForConditionalGeneration.from_pretrained(txt_model_name)
# Projection layer to match image features with T5 d_model
self.proj = nn.Linear(img_emb_dim, self.t5.config.d_model)
# Freeze shared T5 embeddings for faster and stable training
for p in self.t5.shared.parameters():
p.requires_grad = False
def forward(self, pixel_values, input_ids, attention_mask, labels=None):
# Extract image features
img_feats = self.img_encoder(pixel_values)
# Project image features to T5 embedding space
img_feats = self.proj(img_feats)
# Add sequence dimension
encoder_hidden_states = img_feats.unsqueeze(1)
# Run T5 encoder using image embeddings
encoder_outputs = self.t5.encoder(
inputs_embeds=encoder_hidden_states
)
# Run T5 decoder and compute loss
outputs = self.t5(
encoder_outputs=encoder_outputs,
attention_mask=torch.ones(
encoder_hidden_states.size()[:2], device=device
),
input_ids=input_ids,
labels=labels,
)
return outputs
def generate_reports(self, pixel_values, max_length=100, num_beams=4):
"""
Generate reports - EXACTLY matching Colab SECTION 6
"""
# Extract and project image features
img_feats = self.img_encoder(pixel_values)
img_feats = self.proj(img_feats)
encoder_hidden_states = img_feats.unsqueeze(1)
# Encode image features
encoder_outputs = self.t5.encoder(
inputs_embeds=encoder_hidden_states
)
# Generate report using beam search - EXACT parameters from Colab
generated_ids = self.t5.generate(
encoder_outputs=encoder_outputs,
attention_mask=torch.ones(
encoder_hidden_states.size()[:2], device=device
),
max_length=max_length,
num_beams=num_beams,
early_stopping=True
)
return generated_ids
print("β Model architecture classes defined")
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# MODEL LOADING FUNCTION - Exactly from Colab SECTION 8
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def load_model_from_checkpoint(checkpoint_path: str, model_name: str, config: dict):
"""
Load VisionT5Model from checkpoint - EXACT implementation from Colab
"""
print(f"\nLoading {model_name} model...")
print(f" Checkpoint: {checkpoint_path}")
try:
# Create image encoder
print(f" Creating CoAtNet encoder: {config['coatnet_model']}")
img_encoder = CoAtNetEncoder(
model_name=config['coatnet_model'],
pretrained=False, # Weights will come from checkpoint
train_last_stages=config['train_last_stages']
)
# Create full model
print(f" Creating VisionT5 model with T5: {config['t5_model']}")
model = VisionT5Model(
img_encoder=img_encoder,
txt_model_name=config['t5_model'],
img_emb_dim=config['img_emb_dim']
)
# Load checkpoint
print(f" Loading checkpoint weights...")
checkpoint = torch.load(checkpoint_path, map_location=device)
# Handle different checkpoint formats
if isinstance(checkpoint, dict):
if 'model_state_dict' in checkpoint:
state_dict = checkpoint['model_state_dict']
print(f" Found 'model_state_dict' in checkpoint")
elif 'state_dict' in checkpoint:
state_dict = checkpoint['state_dict']
print(f" Found 'state_dict' in checkpoint")
elif 'model' in checkpoint:
state_dict = checkpoint['model']
print(f" Found 'model' in checkpoint")
else:
# Assume checkpoint is the state dict
state_dict = checkpoint
print(f" Using checkpoint as state_dict directly")
# Print additional checkpoint info if available
if 'epoch' in checkpoint:
print(f" Checkpoint epoch: {checkpoint['epoch']}")
if 'loss' in checkpoint:
print(f" Checkpoint loss: {checkpoint['loss']:.4f}")
else:
state_dict = checkpoint
print(f" Checkpoint is a state_dict")
# Load state dict
missing_keys, unexpected_keys = model.load_state_dict(state_dict, strict=False)
if missing_keys:
print(f" β οΈ Missing keys: {len(missing_keys)}")
if len(missing_keys) <= 5:
for key in missing_keys:
print(f" - {key}")
if unexpected_keys:
print(f" β οΈ Unexpected keys: {len(unexpected_keys)}")
if len(unexpected_keys) <= 5:
for key in unexpected_keys:
print(f" - {key}")
# Move to device and set to eval mode
model = model.to(device)
model.eval()
print(f"β {model_name} model loaded successfully!")
return model
except Exception as e:
print(f"β Error loading {model_name} model: {str(e)}")
import traceback
traceback.print_exc()
raise
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# INFERENCE FUNCTION - Exactly from Colab SECTION 9
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def generate_report(
image_path: str,
model: VisionT5Model,
config: dict
) -> str:
"""
Generate medical report from X-ray image - EXACT implementation from Colab
"""
try:
# Preprocess image
image = Image.open(image_path).convert('RGB')
pixel_values = transform(image).unsqueeze(0).to(device)
# Generate report - using EXACT parameters from Colab
with torch.no_grad():
generated_ids = model.generate_reports(
pixel_values,
max_length=config['max_length'],
num_beams=config['num_beams']
)
# Decode
report = tokenizer.decode(generated_ids[0], skip_special_tokens=True)
return report.strip()
except Exception as e:
print(f"Error generating report for {image_path}: {str(e)}")
return ""
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# LOAD MODELS FROM HUGGINGFACE
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
print("\n" + "="*80)
print("LOADING MODELS FROM HUGGINGFACE")
print("="*80)
# Download model files from Hugging Face
try:
SFT_MODEL_PATH = hf_hub_download(
repo_id="vinaykumarhs2020/RLHF_radiology_model",
filename="best_model.pt"
)
PPO_MODEL_PATH = hf_hub_download(
repo_id="vinaykumarhs2020/RLHF_radiology_model",
filename="rlhf_model.pt"
)
print(f"β Downloaded SFT model: {SFT_MODEL_PATH}")
print(f"β Downloaded PPO model: {PPO_MODEL_PATH}")
except Exception as e:
print(f"β Error downloading models: {e}")
# Fallback to local paths if downloads fail
SFT_MODEL_PATH = "/content/best_model.pt"
PPO_MODEL_PATH = "/content/rlhf_model.pt"
print(f"β οΈ Using local paths instead")
# Load both models
print("\n" + "="*80)
print("LOADING MODELS")
print("="*80)
sft_model = load_model_from_checkpoint(
SFT_MODEL_PATH,
"SFT",
CONFIG
)
ppo_model = load_model_from_checkpoint(
PPO_MODEL_PATH,
"PPO",
CONFIG
)
print("\nβ Both models loaded successfully!")
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# FASTAPI APP
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
app = FastAPI(title="Medical Report Generation - Matching Colab")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_methods=["*"],
allow_headers=["*"],
)
def preprocess_bytes(file_bytes: bytes) -> torch.Tensor:
"""Preprocess image bytes for inference"""
img = Image.open(io.BytesIO(file_bytes)).convert("RGB")
return transform(img).unsqueeze(0).to(device)
@app.get("/health")
def health():
return {
"status": "ok",
"device": str(device),
"models_loaded": True,
"config": CONFIG
}
@app.post("/sft")
async def sft_inference(file: UploadFile = File(...)):
"""
SFT model inference - EXACTLY matching Colab behavior
"""
try:
# Preprocess image
tensor = preprocess_bytes(await file.read())
# Generate report using EXACT Colab parameters
with torch.no_grad():
generated_ids = sft_model.generate_reports(
tensor,
max_length=CONFIG['max_length'],
num_beams=CONFIG['num_beams']
)
# Decode - EXACTLY as Colab does
report = tokenizer.decode(generated_ids[0], skip_special_tokens=True).strip()
print(f"[SFT] Generated: {report}")
# Return FULL report without truncation
return {"report": report, "model": "SFT", "config_used": CONFIG}
except Exception as e:
traceback.print_exc()
return {"report": f"ERROR: {str(e)}", "model": "SFT"}
@app.post("/ppo")
async def ppo_inference(file: UploadFile = File(...)):
"""
PPO model inference - EXACTLY matching Colab behavior
"""
try:
# Preprocess image
tensor = preprocess_bytes(await file.read())
# Generate report using EXACT Colab parameters
with torch.no_grad():
generated_ids = ppo_model.generate_reports(
tensor,
max_length=CONFIG['max_length'],
num_beams=CONFIG['num_beams']
)
# Decode - EXACTLY as Colab does
report = tokenizer.decode(generated_ids[0], skip_special_tokens=True).strip()
print(f"[PPO] Generated: {report}")
# Return FULL report without truncation
return {"report": report, "model": "PPO", "config_used": CONFIG}
except Exception as e:
traceback.print_exc()
return {"report": f"ERROR: {str(e)}", "model": "PPO"}
@app.post("/compare")
async def compare_models(file: UploadFile = File(...)):
"""
Generate reports from both models for comparison
"""
try:
file_bytes = await file.read()
tensor = preprocess_bytes(file_bytes)
# SFT Generation
with torch.no_grad():
sft_ids = sft_model.generate_reports(
tensor,
max_length=CONFIG['max_length'],
num_beams=CONFIG['num_beams']
)
sft_report = tokenizer.decode(sft_ids[0], skip_special_tokens=True).strip()
# PPO Generation
with torch.no_grad():
ppo_ids = ppo_model.generate_reports(
tensor,
max_length=CONFIG['max_length'],
num_beams=CONFIG['num_beams']
)
ppo_report = tokenizer.decode(ppo_ids[0], skip_special_tokens=True).strip()
print(f"[COMPARE] SFT: {sft_report}")
print(f"[COMPARE] PPO: {ppo_report}")
return {
"sft_report": sft_report,
"ppo_report": ppo_report,
"config_used": CONFIG
}
except Exception as e:
traceback.print_exc()
return {
"sft_report": f"ERROR: {str(e)}",
"ppo_report": f"ERROR: {str(e)}"
}
@app.get("/debug_config")
def debug_config():
"""Debug endpoint to check configuration"""
return {
"config": CONFIG,
"device": str(device),
"tokenizer": CONFIG['t5_model'],
"image_size": CONFIG['image_size'],
"max_length": CONFIG['max_length'],
"num_beams": CONFIG['num_beams'],
"models_loaded": {
"sft": sft_model is not None,
"ppo": ppo_model is not None
}
}
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# STATIC FILE SERVING
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
from fastapi.staticfiles import StaticFiles
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) |