SDLC Corp

🧠 Brain Tumor Detection

Two models run entirely in your browser — no server, no upload: a ViT predicts the tumor class (Glioma / Meningioma / No-tumor / Pituitary), and a ResNet50 produces an instant class-activation heatmap.

⚠️ For educational and research use only. Not a medical device. Do not use for diagnosis. Always consult a qualified radiologist.

1 · Choose an MRI scan

Or try an example:

2 · Result

Loading model…
ℹ️ About & how it works

An SDLC Corp application. Two models are exported to ONNX (float16) and run client-side with onnxruntime-web — your image never leaves your device:

The CAM, test-time augmentation, uncertainty, OOD and retrieval pipeline are SDLC Corp's own work.

Class Activation Map (CAM): because the network ends in a global-average-pool followed by a single linear layer, the heatmap can be computed without gradients as a weighted sum of the last convolutional feature maps (CAMc = Σk Wc,k·Ak). It's instant — and you can click any class to see where the model looks for that class. Bright regions contribute most to the score.

Advanced ML, all in-browser:

© 2026 SDLC Corp. Model weights used under the Apache-2.0 licence: ViT (prediction) and ResNet50 (explainability), on the microsoft/resnet-50 & google/vit backbones.