Views
No views yet
a9920408189230b886773a64d113eb35bcba1971no_tumor (0), tumor (1)resnet34224 x 2240.5| Accuracy | AUC | F1 | Recall / Sensitivity | Precision | Cohen's Kappa |
|---|---|---|---|---|---|
| 0.794344 | 0.953888 | 0.746879 | 0.596375 | 0.998988 | 0.591497 |
| Experiment | Accuracy | AUC | F1 | Recall | Precision | Kappa |
|---|---|---|---|---|---|---|
| custom_msaf_effb0_My_model_0.3_augmentation | 0.908 | 0.988 | 0.901 | 0.822 | 0.998 | 0.817 |
| hybrid_dn121_effb0_0.3_augmentation | 0.861 | 0.967 | 0.841 | 0.726 | 1.000 | 0.723 |
| hybrid_dn121_effb0_not_augmentation | 0.839 | 0.939 | 0.812 | 0.684 | 1.000 | 0.680 |
| custom_msaf_effb0_My_model_not_augmentation | 0.805 | 0.936 | 0.764 | 0.618 | 0.999 | 0.613 |
| hybrid_swinT_effb0_0.3_augmentation | 0.795 | 0.975 | 0.748 | 0.599 | 0.997 | 0.593 |
| resnet34_not_augmentatiton (this checkpoint) | 0.794 | 0.954 | 0.747 | 0.596 | 0.999 | 0.591 |
| densenet121 | 0.785 | 0.984 | 0.732 | 0.578 | 1.000 | 0.573 |
| convnext_tiny | 0.775 | 0.960 | 0.716 | 0.557 | 1.000 | 0.553 |
| hybrid_swinT_effb0_not_augmentation | 0.745 | 0.956 | 0.665 | 0.498 | 1.000 | 0.494 |
| resnet50_not_augmentatiton | 0.719 | 0.962 | 0.619 | 0.448 | 1.000 | 0.444 |
| inception_v3_not_augmentation | 0.710 | 0.901 | 0.602 | 0.430 | 1.000 | 0.426 |
| efficientnet_b0 | 0.693 | 0.903 | 0.568 | 0.397 | 0.997 | 0.392 |
| mobilenetv2_100_not_augmentation | 0.639 | 0.889 | 0.450 | 0.290 | 1.000 | 0.286 |
model.safetensors: tensor-only checkpoint converted from the original PyTorch state dict.config.json: architecture, preprocessing, label mapping, threshold, and provenance metadata.original_checkpoint.sha256: SHA-256 of the original trained .pt file.results/: available metrics, reports, thresholds, and result figures for this experiment.1from pathlib import Path
2import json
3from safetensors.torch import load_file
4from modeling import build_model
5
6repo_dir = Path("downloaded-model-directory")
7config = json.loads((repo_dir / "config.json").read_text())
8model = build_model(config["architecture"], num_classes=2)
9model.load_state_dict(load_file(repo_dir / "model.safetensors"), strict=True)
10model.eval()| Artifact | SHA-256 |
|---|---|
Original trained .pt | bc684053a0d107dcce207d35e591ee3cbadeb99983f406cbefa3f67ddea90e49 |
Published model.safetensors | 05efe94bbeeba55f5f8309237aa1a130929ebe20fb54a3d55686bacb534b0fdc |
CITATION.cff.