DoB24 commited on
Commit
4f6d0bb
·
verified ·
1 Parent(s): abe56dc

Document analysis/, gradcam/, and kfold/ artefacts in README

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md CHANGED
@@ -338,3 +338,28 @@ Apache-2.0 for code and weights. Original Mendeley dataset retains its
338
  own licence (CC BY 4.0).
339
 
340
  Questions / collaboration: open an issue on the Hub repo.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
338
  own licence (CC BY 4.0).
339
 
340
  Questions / collaboration: open an issue on the Hub repo.
341
+
342
+
343
+ ## Visual Analysis & Supporting Material
344
+
345
+ In addition to the headline numbers above, the repo ships:
346
+
347
+ ### `analysis/`
348
+ - **`confusion_matrices/cm_<model>.png`** — per-class confusion matrix for each of the 9 models + soft-vote ensemble (10 PNGs)
349
+ - **`roc_curves/roc_<model>.png`** — one-vs-rest ROC for every class with macro-average AUC (10 PNGs)
350
+ - **`reliability_diagrams/reliability_<model>.png`** — 10-bin reliability diagram + Expected Calibration Error (ECE)
351
+ - **`per_class/per_class_f1.png`** + `.json` — grouped bar chart of per-class F1 across all 9 backbones
352
+ - **`accuracy_ranking.png`** — horizontal bar chart of test accuracy (best on top)
353
+ - **`ece_summary.json`** — ECE values for every model
354
+
355
+ ### `gradcam/`
356
+ Per-class Grad-CAM saliency maps (one PNG per CNN-class model, 10 classes per figure) for VGG19, ResNet50, ResNet101, DenseNet121, InceptionV3, and CLIP. Generated with `pytorch-grad-cam` against the last convolutional block of each backbone (input-gradient saliency for CLIP).
357
+
358
+ ### `kfold/`
359
+ 5-fold cross-validation results from the v1 sanity-check run (30 epochs/fold, Original Dataset, no augmentation, no group-aware splitting). Kept as a baseline for comparison with the headline v2 results.
360
+
361
+ | Model | CV Acc (mean ± std) |
362
+ |---|---|
363
+ | VGG19 | 79.31 ± 1.89% |
364
+ | ResNet101 | 79.27 ± 1.07% |
365
+ | CLIP Transformer | 63.92 ± 1.79% |