|
44 | 44 | "mainEntityOfPage": "https://atlasanalyticslab.github.io/PathoSynVLM/", |
45 | 45 | "sameAs": [ |
46 | 46 | "https://arxiv.org/abs/2605.30716", |
47 | | - "https://github.com/AtlasAnalyticsLab/PathoSynVLM" |
| 47 | + "https://github.com/AtlasAnalyticsLab/PathoSynVLM", |
| 48 | + "https://huggingface.co/AtlasAnalyticsLab/PathoSynVLM" |
48 | 49 | ], |
49 | 50 | "license": "https://creativecommons.org/licenses/by-nc-sa/4.0/" |
50 | 51 | } |
@@ -111,6 +112,7 @@ <h1 class="hero-title">PathoSynVLM</h1> |
111 | 112 | <nav class="link-row" aria-label="Project links"> |
112 | 113 | <a href="https://arxiv.org/abs/2605.30716">📄 Paper</a> |
113 | 114 | <a href="https://github.com/AtlasAnalyticsLab/PathoSynVLM">💻 Code</a> |
| 115 | + <a href="https://huggingface.co/AtlasAnalyticsLab/PathoSynVLM">Model weights</a> |
114 | 116 | </nav> |
115 | 117 | </div> |
116 | 118 |
|
@@ -144,13 +146,23 @@ <h2 class="section-heading">Quick Start</h2> |
144 | 146 | cd PathoSynVLM |
145 | 147 | conda create -n pathosynvlm python=3.11 -y |
146 | 148 | conda activate pathosynvlm |
| 149 | +export PYTHONNOUSERSITE=1 |
147 | 150 | pip install -e . |
148 | 151 |
|
149 | | -<span class="comment"># inspect the multi-WSI report-generation entry point</span> |
150 | | -python scripts/generate_case_report.py --help</code></pre> |
| 152 | +<span class="comment"># download the model package</span> |
| 153 | +source configs/paths.example.env |
| 154 | +hf download AtlasAnalyticsLab/PathoSynVLM \ |
| 155 | + --local-dir "$PATHOSYNVLM_WEIGHTS_ROOT/pathosynvlm-stage2-main" |
| 156 | + |
| 157 | +<span class="comment"># generate one report from all WSIs in a case</span> |
| 158 | +python scripts/generate_case_report.py \ |
| 159 | + --embeddings HISTAI-skin-b2/conch_v15/5x_512/patches/example_1.h5 \ |
| 160 | + HISTAI-skin-b2/conch_v15/5x_512/patches/example_2.h5 \ |
| 161 | + --output_json report.json</code></pre> |
151 | 162 | <p class="center-note"> |
152 | | - Inference requires prepared CONCHv1.5 H5 embeddings and a local weight package. |
153 | | - Follow the <a href="https://github.com/AtlasAnalyticsLab/PathoSynVLM/blob/main/docs/paper_pipeline.md">paper pipeline</a> for data, training, and evaluation. |
| 163 | + Replace the example paths with the CONCHv1.5 H5 embedding files for one case. |
| 164 | + See the <a href="https://github.com/AtlasAnalyticsLab/PathoSynVLM/blob/main/docs/embeddings.md">embedding guide</a> |
| 165 | + and <a href="https://github.com/AtlasAnalyticsLab/PathoSynVLM/blob/main/docs/paper_pipeline.md">paper pipeline</a> for preparation, training, and evaluation. |
154 | 166 | </p> |
155 | 167 | </div> |
156 | 168 | </section> |
@@ -602,6 +614,7 @@ <h2 class="section-heading">Citation</h2> |
602 | 614 | PathoSynVLM · |
603 | 615 | <a href="https://atlasanalyticslab.github.io/">Atlas Analytics Lab</a> · |
604 | 616 | <a href="https://github.com/AtlasAnalyticsLab/PathoSynVLM">Code</a> · |
| 617 | + <a href="https://huggingface.co/AtlasAnalyticsLab/PathoSynVLM">Model</a> · |
605 | 618 | <a href="https://arxiv.org/abs/2605.30716">Paper</a> · |
606 | 619 | <a href="https://github.com/AtlasAnalyticsLab/PathoSynVLM/blob/main/LICENSE">CC BY-NC-SA 4.0</a> |
607 | 620 | </p> |
|
0 commit comments