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.
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.