ksanchez84 commited on
Commit
ac6201e
·
verified ·
1 Parent(s): ce62036

Clarify checkpoint selection and Table 1 scope

Browse files
Files changed (1) hide show
  1. README.md +10 -6
README.md CHANGED
@@ -14,8 +14,8 @@ tags:
14
 
15
  # TiSage Segmentation Checkpoints
16
 
17
- Paper checkpoints for **TiSage: Tissue Segmentation with Multi-Scale Semantic
18
- Guidance**, released with the code and reproducibility material at
19
  [carlosh93/TiSage](https://github.com/carlosh93/TiSage). The paper was selected
20
  as a **Spotlight** at the Eleventh ISIC Skin Image Analysis Workshop @ MICCAI
21
  2026.
@@ -30,9 +30,11 @@ as a **Spotlight** at the Eleventh ISIC Skin Image Analysis Workshop @ MICCAI
30
  | `dfutissue_unimatch_v2_fixed_seed1_best.pth` | DFUTissue | UniMatch-V2 | fixed/full supervision split, seed 1 |
31
 
32
  Each file contains `model`, `model_ema`, optimizer state, epoch, and validation
33
- selection metadata. TiSage evaluation defaults to `model_ema`; pass an explicit
34
- state to the evaluator when comparing student and teacher weights. The LUTSeg
35
- pair is also used by the repository's Figure 4 reproduction script.
 
 
36
 
37
  ## Download
38
 
@@ -75,7 +77,9 @@ python method/eval/evaluate_checkpoint.py \
75
  The public LUTSeg release has a patient-disjoint validation set and no separate
76
  public test split. The evaluator reports per-class IoU and Dice plus their
77
  means on the 30-image validation set and requires one CUDA GPU. Append
78
- `--check-only` to validate checkpoint compatibility without inference.
 
 
79
 
80
  ## Architecture and Training
81
 
 
14
 
15
  # TiSage Segmentation Checkpoints
16
 
17
+ Trained checkpoints associated with the paper settings for **TiSage: Tissue
18
+ Segmentation with Multi-Scale Semantic Guidance**, released with the code and reproducibility material at
19
  [carlosh93/TiSage](https://github.com/carlosh93/TiSage). The paper was selected
20
  as a **Spotlight** at the Eleventh ISIC Skin Image Analysis Workshop @ MICCAI
21
  2026.
 
30
  | `dfutissue_unimatch_v2_fixed_seed1_best.pth` | DFUTissue | UniMatch-V2 | fixed/full supervision split, seed 1 |
31
 
32
  Each file contains `model`, `model_ema`, optimizer state, epoch, and validation
33
+ selection metadata. The files are best-student snapshots and contain the EMA
34
+ state from the same epoch. The paper's Table 1 numbers are selected best-EMA
35
+ values across training and remain traceable to the code repository's committed
36
+ logs, so an individual released snapshot can differ from the Table 1 value.
37
+ The LUTSeg pair is also used by the Figure 4 reproduction script.
38
 
39
  ## Download
40
 
 
77
  The public LUTSeg release has a patient-disjoint validation set and no separate
78
  public test split. The evaluator reports per-class IoU and Dice plus their
79
  means on the 30-image validation set and requires one CUDA GPU. Append
80
+ `--check-only` to validate checkpoint compatibility without inference. The
81
+ evaluator defaults to the selected student state; pass `--state model_ema` for
82
+ the contemporaneous EMA state.
83
 
84
  ## Architecture and Training
85