You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

AbdomenNet

Public release assets for:

Acute abdomen on non-contrast CT: a foundation model for diagnosis, risk stratification and emergency triage

Files

  • teacher_checkpoint.pth
    • released pretraining teacher checkpoint for AbdomenNet / AbCT

Checkpoint format

teacher_checkpoint.pth is a backbone-style release checkpoint.

  • top-level key: teacher
  • no optimizer state
  • no scheduler state
  • no epoch / scaler / results payload

Minimal loading example

import torch

ckpt = torch.load("teacher_checkpoint.pth", map_location="cpu")
teacher_state = ckpt["teacher"]
backbone_state = {
    k.replace("backbone.", "", 1): v
    for k, v in teacher_state.items()
    if k.startswith("backbone.")
}
print(len(backbone_state))

Code

Source code and training / fine-tuning details:

Notes

  • This repository only hosts the released checkpoint.
  • Large qualitative test-case bundles are not included in the default public release.
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support