Spaces:
Runtime error
Runtime error
Anirudh Balaraman commited on
Revise documentation for preprocessing and pipeline
Browse filesUpdated the documentation to clarify preprocessing steps and the end-to-end pipeline.
- 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 |
-
- **
|
| 17 |
-
- **End-to-end
|
| 18 |
|
| 19 |
## Pipeline Overview
|
| 20 |
|
| 21 |
```mermaid
|
| 22 |
flowchart LR
|
| 23 |
A[Raw MRI\nT2 + DWI + ADC] --> B[Preprocessing]
|
| 24 |
-
B --> C[Stage 1:
|
| 25 |
-
C --> D[Stage 2:
|
| 26 |
-
D --> E[Risk Score
|
| 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
|