Views
No views yet
1[surgical frame]
2
3Which anatomical structures are visible in this laparoscopic frame?
4Select every matching label.
5
6- abdominal wall
7- colon
8- inferior mesenteric artery
9- intestinal veins
10- liver
11- pancreas
12- small intestine
13- spleen
14- stomach
15- ureter
16- uterus
17- vesicular glandstorchvision.models.resnet50 initialized from IMAGENET1K_V2 weightsfc replaced with a 12-way linear layer, trained with BCEWithLogitsLoss (multi-label)s67_dsad_supervised.py| Metric | Value |
|---|---|
| Exact match (predicted set == ground-truth set) | 30.6% (28.5–32.6) |
| Micro-averaged F1 | 71.6% (70.5–72.8) |
class_metrics.csv. This small supervised baseline beats all zero-shot vision-language models tested on this task; see the leaderboard.1import torch
2from torchvision import models
3
4model = models.resnet50()
5model.fc = torch.nn.Linear(model.fc.in_features, 12)
6model.load_state_dict(torch.load("best_model.pt", map_location="cpu"))
7model.eval()
8# sigmoid(logits) > 0.5 per class; class order in class_metrics.csv