Update nvsegment-ct readme - #15
Conversation
Greptile SummaryThis PR expands and clarifies the NV-Segment-CT README and adds a minor wording improvement to the NV-Segment-CTMR README to make model-weight caching behavior explicit.
Confidence Score: 5/5Documentation-only changes; no runtime code is modified. Both files are pure Markdown. The key factual fix — the GitHub URL for No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[User runs inference command] --> B{First run?}
B -- Yes --> C[Download checkpoint from Hugging Face]
C --> D[Link to models/model.pt]
D --> E[Run inference]
B -- No --> E[Run inference / reuse cached weights]
E --> F{Batch or single image?}
F -- Single image --> G[Save to output_dir/basename/basename_trans.nii.gz]
F -- Batch --> H{batch_resume_skip_existing?}
H -- true --> I[Queue only missing/empty outputs]
H -- false --> J[Queue all discovered *.nii.gz]
I --> K{Multi-GPU torchrun?}
J --> K
K -- Yes --> L[Rank 0 builds input_list, writes JSON cache]
L --> M[Other ranks read cache]
M --> N[Distribute volumes across GPUs]
K -- No --> O[Single process runs all volumes]
N --> G
O --> G
Reviews (1): Last reviewed commit: "Update nvsegment-ct readme" | Re-trigger Greptile |
No description provided.