Enhance MONAI Label tutorial on using VISTA3D#1860
Closed
Conversation
Author
|
@bhashemian 👋 This repository doesn't have Copilot instructions. With Copilot instructions, I can understand the repository better, work faster and produce higher quality PRs. I can generate a .github/copilot-instructions.md file for you automatically. Click here to open a pre-filled issue and assign it to me. I'll write the instructions, and then tag you for review. |
Co-authored-by: bhashemian <3968947+bhashemian@users.noreply.github.com>
Co-authored-by: bhashemian <3968947+bhashemian@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Enhance MONAI label tutorial on using VISTA3D
Enhance MONAI Label tutorial on using VISTA3D
Sep 17, 2025
Copilot stopped work on behalf of
bhashemian due to an error
September 17, 2025 14:46
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds comprehensive VISTA3D tutorials and documentation to MONAI Label, addressing the need for enhanced guidance on using the VISTA3D universal segmentation model.
What's Added
Comprehensive Tutorial Documentation
docs/source/tutorials/vista3d_tutorial.md): 270+ line comprehensive guide covering setup, usage, troubleshooting, and clinical workflowsdocs/source/tutorials/vista3d_quickstart.md): Fast setup guide for immediate VISTA3D deploymentdocs/source/tutorials/vista3d_configurations.md): Sample configurations for various deployment scenarios including memory optimization, PACS integration, and Docker deploymentMain README Enhancements
MONAIBundle App Integration
sample-apps/monaibundle/README.mdFormal Documentation System
docs/source/tutorials.rstfor Sphinx documentation integrationdocs/source/index.rst)Key Features Covered
Setup and Installation:
Usage Workflows:
Viewer Integration:
Deployment Scenarios:
Clinical Applications:
The tutorials provide both quick-start capabilities for immediate use and comprehensive guidance for advanced deployment scenarios, making VISTA3D's universal segmentation capabilities accessible to users across different experience levels.
Fixes #1859.
Warning
Firewall rules blocked me from connecting to one or more addresses (expand for details)
I tried to connect to the following addresses, but was blocked by firewall rules:
https://api.github.com/repos/Project-MONAI/model-zoo/contents/modelspython -c import requests try: response = requests.get('REDACTED') if response.status_code == 200: models = response.json() vista_models = [model['name'] for model in models if 'vista' in model['name'].lower()] print('VISTA models in Model Zoo:', vista_models) else: print('Could not fetch model zoo contents') except Exception as e: print('Error fetching model zoo:', str(e))(http block)import requests
try:
# Check the public model zoo for VISTA3D models
url = 'REDACTED'
response = requests.get(url, timeout=10)
if response.status_code == 200:
print('VISTA3D found in model zoo')
print(response.text[:200])
else:
print('VISTA3D not found at expected location')
except Exception as e:
print(f'Error: {e}')` (http block)
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.