tangezerman/ain3007
Viewer • Updated • 540 • 4
Model Name: VGG16-U-NET
Model Type: Image Segmentation
Architecture: U-Net with VGG16 weights trained on Imagenet
| Metric | Value |
|---|---|
| Accuracy | 0.9815 |
| Intersection Over Union (IoU) | 0.9509 |
| Dice Score | 0.9794 |
Dataset: tangez/ain3007
Training Parameters:
Primary Use Cases:
import torch
# Load the trained model from the Models directory
model = torch.load("path/to/model.pth")
model.eval()
# For inference on WSI patches
with torch.no_grad():
output = model(input_patches)
# Output will be binary tissue masks