Spaces:
Sleeping
Sleeping
File size: 17,297 Bytes
e07a3d9 | 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 | import streamlit as st
import torch
import torch.nn as nn
import numpy as np
import pickle
from PIL import Image
import gc
import os
from torchvision.transforms import v2 as T
import pandas as pd
# ββ Page Configuration ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.set_page_config(
page_title="Cancer Histopathology Classifier",
page_icon="π¬",
layout="wide"
)
# ββ Device (forced CPU) ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
device = torch.device("cpu")
# ββ Class names (26 cancer types) βββββββββββββββββββββββββββββββββββββββββββ
CLASS_NAMES = [
"all_benign", "all_early", "all_pre", "all_pro",
"brain_glioma", "brain_menin", "brain_tumor",
"breast_benign", "breast_malignant",
"cervix_dyk", "cervix_koc", "cervix_mep", "cervix_pab", "cervix_sfi",
"colon_aca", "colon_bnt",
"kidney_normal", "kidney_tumor",
"lung_aca", "lung_bnt", "lung_scc",
"lymph_cll", "lymph_fl", "lymph_mcl",
"oral_normal", "oral_scc",
]
# ββ Local path to fine-tuned Qwen adapter βββββββββββββββββββββββββββββββββββ
QWEN_LOCAL_PATH = "qwen-cancer-finetuned"
# ββ CancerCNN ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
class CancerCNN(nn.Module):
def __init__(self, num_classes=26):
super().__init__()
self.layers = nn.Sequential(
nn.Conv2d(3, 16, 3, padding=1), nn.BatchNorm2d(16), nn.ReLU(),
nn.Conv2d(16, 16, 3, padding=1), nn.BatchNorm2d(16), nn.ReLU(),
nn.MaxPool2d(2),
nn.Conv2d(16, 32, 3, padding=1), nn.BatchNorm2d(32), nn.ReLU(),
nn.MaxPool2d(2),
nn.Conv2d(32, 32, 3, padding=1), nn.BatchNorm2d(32), nn.ReLU(),
nn.Flatten(),
nn.Dropout(0.3),
nn.Linear(32 * 28 * 28, num_classes),
)
def forward(self, x):
return self.layers(x)
# ββ Phikon classifier head βββββββββββββββββββββββββββββββββββββββββββββββββββ
class PhikonHead(nn.Module):
def __init__(self, num_classes=26):
super().__init__()
self.head = nn.Linear(768, num_classes)
def forward(self, x):
return self.head(x)
# ββ Lazy model cache βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if "model_cache" not in st.session_state:
st.session_state.model_cache = {"name": None, "model": None, "extra": None}
def _evict():
st.session_state.model_cache["name"] = None
st.session_state.model_cache["model"] = None
st.session_state.model_cache["extra"] = None
gc.collect()
# ββ Transforms βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
cnn_transform = T.Compose([
T.Resize((112, 112)),
T.ToImage(),
T.ToDtype(torch.float32, scale=True),
T.Normalize([0.5, 0.5, 0.5], [0.5, 0.5, 0.5]),
])
phikon_transform = T.Compose([
T.Resize((224, 224)),
T.ToImage(),
T.ToDtype(torch.float32, scale=True),
T.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225]),
])
# ββ Model loaders βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def load_cnn():
if st.session_state.model_cache["name"] == "cnn":
return st.session_state.model_cache["model"]
_evict()
m = CancerCNN(num_classes=26)
m.load_state_dict(torch.load("cancer_cnn.pt", map_location=device), strict=False)
m.eval().to(device)
st.session_state.model_cache["name"] = "cnn"
st.session_state.model_cache["model"] = m
return m
def load_svm():
if st.session_state.model_cache["name"] == "svm":
return st.session_state.model_cache["model"], st.session_state.model_cache["extra"]
_evict()
with open("svm_model.pkl", "rb") as f:
svm = pickle.load(f)
from img2vec_pytorch import Img2Vec
img2vec = Img2Vec(cuda=False)
st.session_state.model_cache["name"] = "svm"
st.session_state.model_cache["model"] = svm
st.session_state.model_cache["extra"] = img2vec
return svm, img2vec
def load_qwen():
if st.session_state.model_cache["name"] == "qwen":
return st.session_state.model_cache["model"], st.session_state.model_cache["extra"]
_evict()
if not os.path.isdir(QWEN_LOCAL_PATH):
raise FileNotFoundError(
f"Expected local Qwen adapter folder at '{QWEN_LOCAL_PATH}' but it "
f"was not found."
)
from transformers import Qwen2VLForConditionalGeneration, AutoProcessor
from peft import PeftModel
# Load base model
base_model_id = "Qwen/Qwen2-VL-2B-Instruct"
base_model = Qwen2VLForConditionalGeneration.from_pretrained(
base_model_id,
torch_dtype=torch.float32,
device_map=None,
)
# Layer the adapter on top
model = PeftModel.from_pretrained(base_model, QWEN_LOCAL_PATH)
model.to(device)
model.eval()
processor = AutoProcessor.from_pretrained(QWEN_LOCAL_PATH)
st.session_state.model_cache["name"] = "qwen"
st.session_state.model_cache["model"] = model
st.session_state.model_cache["extra"] = processor
return model, processor
def load_phikon():
if st.session_state.model_cache["name"] == "phikon":
return st.session_state.model_cache["model"], st.session_state.model_cache["extra"]
_evict()
from transformers import AutoModel
backbone = AutoModel.from_pretrained("owkin/phikon").to(device)
backbone.eval()
head = PhikonHead(num_classes=26).to(device)
ckpt = torch.load("phikon_head.pt", map_location=device)
state_dict = ckpt.get("head_state_dict", ckpt)
mapped_state_dict = {}
for k, v in state_dict.items():
if k == "weight":
mapped_state_dict["head.weight"] = v
elif k == "bias":
mapped_state_dict["head.bias"] = v
else:
mapped_state_dict[k] = v
head.load_state_dict(mapped_state_dict, strict=False)
head.eval()
st.session_state.model_cache["name"] = "phikon"
st.session_state.model_cache["model"] = backbone
st.session_state.model_cache["extra"] = head
return backbone, head
# ββ Inference functions βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def predict_cnn(image: Image.Image):
model = load_cnn()
x = cnn_transform(image).unsqueeze(0).to(device)
with torch.no_grad():
logits = model(x)
probs = torch.softmax(logits, dim=1)[0]
top3 = probs.topk(3)
result = {CLASS_NAMES[i]: float(p) for i, p in zip(top3.indices, top3.values)}
pred = CLASS_NAMES[probs.argmax().item()]
return pred, result
def predict_svm(image: Image.Image):
svm, img2vec = load_svm()
vec = img2vec.get_vec(image, tensor=False).reshape(1, -1)
raw_pred = svm.predict(vec)[0]
try:
pred = CLASS_NAMES[int(raw_pred)]
except (ValueError, TypeError):
pred = str(raw_pred)
proba = svm.predict_proba(vec)[0] if hasattr(svm, "predict_proba") else None
if proba is not None:
top3_idx = np.argsort(proba)[-3:][::-1]
result = {CLASS_NAMES[i]: float(proba[i]) for i in top3_idx}
else:
result = {pred: 1.0}
return pred, result
def predict_phikon(image: Image.Image):
backbone, head = load_phikon()
x = phikon_transform(image).unsqueeze(0).to(device)
with torch.no_grad():
features = backbone(x).last_hidden_state[:, 0, :]
logits = head(features)
probs = torch.softmax(logits, dim=1)[0]
top3 = probs.topk(3)
result = {CLASS_NAMES[i]: float(p) for i, p in zip(top3.indices, top3.values)}
pred = CLASS_NAMES[probs.argmax().item()]
return pred, result
def predict_qwen_chat(chat_history):
"""Processes the full conversation history for Qwen2-VL"""
model, processor = load_qwen()
qwen_msgs = []
images = []
# 1. Figure out if the user is asking a follow-up or classifying a new image
is_follow_up_chat = True
if len(chat_history) > 0:
latest_msg = chat_history[-1]
if "image" in latest_msg:
is_follow_up_chat = False # It has an image, so it's a classification task
# 2. Rebuild the history
for msg in chat_history:
content = []
if msg.get("image"):
content.append({"type": "image", "image": msg["image"]})
images.append(msg["image"])
if msg.get("text"):
content.append({"type": "text", "text": msg["text"]})
qwen_msgs.append({"role": msg["role"], "content": content})
input_text = processor.apply_chat_template(qwen_msgs, add_generation_prompt=True)
if len(images) > 0:
inputs = processor(images=images, text=input_text, return_tensors="pt").to(device)
else:
inputs = processor(text=input_text, return_tensors="pt").to(device)
with torch.no_grad():
# 3. THE MAGIC TRICK: Turn off the adapter for regular text chat!
if is_follow_up_chat and hasattr(model, "disable_adapter"):
with model.disable_adapter():
output = model.generate(**inputs, max_new_tokens=300)
else:
# Leave adapter on for image classification
output = model.generate(**inputs, max_new_tokens=200)
response = processor.decode(output[0], skip_special_tokens=True)
if "assistant" in response.lower():
response = response.split("assistant")[-1].strip()
return response
# ββ Main standard inference dispatcher ββββββββββββββββββββββββββββββββββββββββ
def classify(pil_image, model_choice):
if model_choice == "CancerCNN":
pred, probs = predict_cnn(pil_image)
explanation = f"**CancerCNN predicted:** {pred}\n\nThis is a custom CNN trained from scratch on 26 cancer types with BatchNorm, Dropout, and data augmentation. It achieved 84.79% test accuracy."
return pred, probs, explanation
elif model_choice == "SVM (img2vec)":
pred, probs = predict_svm(pil_image)
explanation = f"**SVM predicted:** {pred}\n\nThis Support Vector Machine uses ResNet18 embeddings (via img2vec) as features. Classical ML approach β no deep learning training required."
return pred, probs, explanation
elif model_choice == "Phikon (ViT-B Histopathology)":
pred, probs = predict_phikon(pil_image)
explanation = f"**Phikon predicted:** {pred}\n\nPhikon is a ViT-Base model pretrained on 40M pan-cancer histopathology tiles from TCGA using self-supervised learning. It extracts domain-specific features far beyond what ImageNet-pretrained models can capture."
return pred, probs, explanation
return "Unknown model", {}, ""
# ββ Streamlit UI ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
st.title("π¬ Cancer Histopathology Classifier")
st.markdown("""
Upload a histopathology image and select a model to classify the cancer type across 26 categories.
β οΈ *Running on CPU β Deep learning inference may take a moment.*
""")
# High-level model selection controls the entire UI layout
model_choice = st.selectbox(
"Select Model",
["CancerCNN", "SVM (img2vec)", "Phikon (ViT-B Histopathology)", "Qwen2-VL-2B (Fine-tuned)"]
)
st.markdown("---")
if model_choice == "Qwen2-VL-2B (Fine-tuned)":
# ββ QWEN CHAT UI (GEMINI STYLE) βββββββββββββββββββββββββββββββββββββββββββ
st.subheader("π¬ Qwen2-VL Analysis Chat")
# Initialize chat history
if "qwen_messages" not in st.session_state:
st.session_state.qwen_messages = []
# Display existing chat history
chat_container = st.container()
with chat_container:
for msg in st.session_state.qwen_messages:
with st.chat_message(msg["role"]):
if msg.get("image"):
st.image(msg["image"], width=300)
if msg.get("text"):
st.markdown(msg["text"])
# The Attachment & Chat Input Area
st.caption("π Attach an image for your next message:")
chat_image_upload = st.file_uploader("Upload Image", type=["jpg", "jpeg", "png"], label_visibility="collapsed")
# Input box (with the auto-prompt injection logic we discussed)
if prompt := st.chat_input("Message Qwen... (e.g., 'What type of cancer is this?')"):
# If they just uploaded an image and hit enter without typing, auto-fill the training prompt
if not prompt.strip() and chat_image_upload is not None:
prompt = "What type of cancer is shown in this histopathology image?"
user_msg = {"role": "user", "text": prompt}
# Attach image only if it's new (prevents re-uploading the same image on follow-up questions)
if chat_image_upload is not None:
file_sig = f"{chat_image_upload.name}_{chat_image_upload.size}"
if st.session_state.get("last_uploaded_qwen_file") != file_sig:
user_msg["image"] = Image.open(chat_image_upload).convert("RGB")
st.session_state.last_uploaded_qwen_file = file_sig
# Append and display user message
st.session_state.qwen_messages.append(user_msg)
with chat_container:
with st.chat_message("user"):
if user_msg.get("image"):
st.image(user_msg["image"], width=300)
st.markdown(prompt)
# Generate and display assistant response
with st.chat_message("assistant"):
with st.spinner("Qwen is analyzing..."):
try:
response = predict_qwen_chat(st.session_state.qwen_messages)
st.markdown(response)
st.session_state.qwen_messages.append({"role": "assistant", "text": response})
except Exception as e:
st.error(f"An error occurred: {e}")
else:
# ββ STANDARD UI (CNN, SVM, PHIKON) ββββββββββββββββββββββββββββββββββββββββ
col1, col2 = st.columns(2)
with col1:
st.subheader("Input")
uploaded_file = st.file_uploader("Upload Histopathology Image", type=["jpg", "jpeg", "png"])
classify_btn = st.button("Classify Image", type="primary", use_container_width=True)
if uploaded_file is not None:
image = Image.open(uploaded_file).convert("RGB")
st.image(image, caption="Uploaded Image", use_column_width=True)
with col2:
st.subheader("Results")
if classify_btn:
if uploaded_file is None:
st.warning("Please upload an image first.")
else:
with st.spinner(f"Running inference with {model_choice}..."):
try:
pred, probs, explanation = classify(image, model_choice)
st.success(f"**Predicted Cancer Type:** {pred}")
if probs:
st.markdown("**Top Predictions:**")
df_probs = pd.DataFrame(
list(probs.values()),
index=list(probs.keys()),
columns=["Confidence"]
)
st.bar_chart(df_probs)
st.markdown("### Model Explanation")
st.info(explanation)
except Exception as e:
st.error(f"An error occurred during inference: {e}")
st.markdown("---")
st.markdown("**Dataset:** [Multi-Cancer Dataset](https://www.kaggle.com/datasets/obulisainaren/multi-cancer) β 130K images, 26 cancer types") |