Skip to content

Commit 41a4cc2

Browse files
website: add model download quickstart
Link the official Hugging Face release throughout the project page and document the tested multi-WSI case-report inference workflow.
1 parent e7027db commit 41a4cc2

2 files changed

Lines changed: 19 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ This orphan `gh-pages` branch contains the project website for [PathoSynVLM](htt
77
- Production URL: <https://atlasanalyticslab.github.io/PathoSynVLM/>
88
- Paper: <https://arxiv.org/abs/2605.30716>
99
- Research code: <https://github.com/AtlasAnalyticsLab/PathoSynVLM/tree/main>
10+
- Model weights: <https://huggingface.co/AtlasAnalyticsLab/PathoSynVLM>
1011
- Maintainer guide: [DEVELOPMENT.md](DEVELOPMENT.md)
1112

1213
The default `main` working tree contains no website files. A standard multi-branch clone may still fetch the `gh-pages` Git objects; use the single-branch command below when transfer-level isolation matters.

index.html

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@
4444
"mainEntityOfPage": "https://atlasanalyticslab.github.io/PathoSynVLM/",
4545
"sameAs": [
4646
"https://arxiv.org/abs/2605.30716",
47-
"https://github.com/AtlasAnalyticsLab/PathoSynVLM"
47+
"https://github.com/AtlasAnalyticsLab/PathoSynVLM",
48+
"https://huggingface.co/AtlasAnalyticsLab/PathoSynVLM"
4849
],
4950
"license": "https://creativecommons.org/licenses/by-nc-sa/4.0/"
5051
}
@@ -111,6 +112,7 @@ <h1 class="hero-title">PathoSynVLM</h1>
111112
<nav class="link-row" aria-label="Project links">
112113
<a href="https://arxiv.org/abs/2605.30716">📄 Paper</a>
113114
<a href="https://github.com/AtlasAnalyticsLab/PathoSynVLM">💻 Code</a>
115+
<a href="https://huggingface.co/AtlasAnalyticsLab/PathoSynVLM">Model weights</a>
114116
</nav>
115117
</div>
116118

@@ -144,13 +146,23 @@ <h2 class="section-heading">Quick Start</h2>
144146
cd PathoSynVLM
145147
conda create -n pathosynvlm python=3.11 -y
146148
conda activate pathosynvlm
149+
export PYTHONNOUSERSITE=1
147150
pip install -e .
148151

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>
151162
<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.
154166
</p>
155167
</div>
156168
</section>
@@ -602,6 +614,7 @@ <h2 class="section-heading">Citation</h2>
602614
PathoSynVLM ·
603615
<a href="https://atlasanalyticslab.github.io/">Atlas Analytics Lab</a> ·
604616
<a href="https://github.com/AtlasAnalyticsLab/PathoSynVLM">Code</a> ·
617+
<a href="https://huggingface.co/AtlasAnalyticsLab/PathoSynVLM">Model</a> ·
605618
<a href="https://arxiv.org/abs/2605.30716">Paper</a> ·
606619
<a href="https://github.com/AtlasAnalyticsLab/PathoSynVLM/blob/main/LICENSE">CC BY-NC-SA 4.0</a>
607620
</p>

0 commit comments

Comments
 (0)