Anirudh Balaraman commited on
Commit
5a40b5a
Β·
unverified Β·
1 Parent(s): 4f116d9

Revise documentation for preprocessing and pipeline

Browse files

Updated the documentation to clarify preprocessing steps and the end-to-end pipeline.

Files changed (1) hide show
  1. docs/index.md +5 -5
docs/index.md CHANGED
@@ -13,17 +13,17 @@ WSAttention-Prostate is a two-stage deep learning pipeline that predicts clinica
13
  - **Weakly-supervised attention** β€” Heatmap-guided patch sampling and cosine-similarity attention loss replace the need for voxel-level labels
14
  - **3D Multiple Instance Learning** β€” Extracts volumetric patches from MRI scans and aggregates them via transformer + attention pooling
15
  - **Two-stage pipeline** β€” Stage 1 trains a 4-class PI-RADS classifier; Stage 2 freezes its backbone and trains a binary csPCa head
16
- - **Multi-seed confidence intervals** β€” Runs 20 random seeds and reports 95% CI on AUC, sensitivity, and specificity
17
- - **End-to-end preprocessing** β€” Registration, segmentation, histogram matching, and heatmap generation in a single configurable pipeline
18
 
19
  ## Pipeline Overview
20
 
21
  ```mermaid
22
  flowchart LR
23
  A[Raw MRI\nT2 + DWI + ADC] --> B[Preprocessing]
24
- B --> C[Stage 1:\nPI-RADS Classification]
25
- C --> D[Stage 2:\ncsPCa Prediction]
26
- D --> E[Risk Score\n+ Top-5 Patches]
27
  ```
28
 
29
  ## Quick Links
 
13
  - **Weakly-supervised attention** β€” Heatmap-guided patch sampling and cosine-similarity attention loss replace the need for voxel-level labels
14
  - **3D Multiple Instance Learning** β€” Extracts volumetric patches from MRI scans and aggregates them via transformer + attention pooling
15
  - **Two-stage pipeline** β€” Stage 1 trains a 4-class PI-RADS classifier; Stage 2 freezes its backbone and trains a binary csPCa head
16
+ - **Preprocessing** β€” Preprocessing to minimize inter-center MRI acquisiton variability.
17
+ - **End-to-end pipeline** β€” Registration, segmentation, histogram matching, and heatmap generation, and inferencing in a single configurable pipeline
18
 
19
  ## Pipeline Overview
20
 
21
  ```mermaid
22
  flowchart LR
23
  A[Raw MRI\nT2 + DWI + ADC] --> B[Preprocessing]
24
+ B --> C[Stage 1:PI-RADS Classification]
25
+ C --> D[Stage 2:csPCa Prediction]
26
+ D --> E[Risk Score+ Top-5 Patches]
27
  ```
28
 
29
  ## Quick Links