-
Notifications
You must be signed in to change notification settings - Fork 205
[benchmarking] Adds image curation benchmark to nightly #1341
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
rlratzel
wants to merge
20
commits into
NVIDIA-NeMo:main
Choose a base branch
from
rlratzel:26.02-add_image_bench
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
…images with :latest by default, adds session name to slack report. Signed-off-by: rlratzel <rratzel@nvidia.com>
Signed-off-by: rlratzel <rratzel@nvidia.com>
Signed-off-by: rlratzel <rratzel@nvidia.com>
…a_updates Signed-off-by: rlratzel <rratzel@nvidia.com>
…atzel/curator into 2602_benchmark_infra_updates Signed-off-by: rlratzel <rratzel@nvidia.com>
Signed-off-by: rlratzel <rratzel@nvidia.com>
…g script to allow for more flexibility. Signed-off-by: rlratzel <rratzel@nvidia.com>
…n-readable output is needed, updates paths to benchmark output dir. Signed-off-by: rlratzel <rratzel@nvidia.com>
…sults Signed-off-by: rlratzel <rratzel@nvidia.com>
Signed-off-by: rlratzel <rratzel@nvidia.com>
Signed-off-by: rlratzel <rratzel@nvidia.com>
Signed-off-by: rlratzel <rratzel@nvidia.com>
Signed-off-by: rlratzel <rratzel@nvidia.com>
|
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
Signed-off-by: rlratzel <rratzel@nvidia.com>
Signed-off-by: rlratzel <rratzel@nvidia.com>
Signed-off-by: rlratzel <rratzel@nvidia.com>
…laceholders were silently ignored, comment cleanup. Signed-off-by: rlratzel <rratzel@nvidia.com>
Signed-off-by: rlratzel <rratzel@nvidia.com>
Contributor
Greptile SummaryAdded image curation benchmark to nightly runs using the getting-started tutorial script, along with required MSCOCO datasets configuration. Key Changes:
Implementation Quality:
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Config as nightly-benchmark.yaml
participant Session as Session.create_from_dict()
participant Entry as Entry.get_command_to_run()
participant Reserved as substitute_reserved_placeholders()
participant Paths as substitute_container_or_host_paths()
participant DatasetResolver
participant PathResolver
Config->>Session: Load config with image_curation entry
Session->>Entry: Create Entry with script="{curator_repo_dir}/..."
Note over Entry: Process script field
Entry->>Reserved: substitute_reserved_placeholders(script)
Reserved->>Reserved: Replace {curator_repo_dir} with absolute path
Reserved-->>Entry: /github/nvidia-nemo/curator/tutorials/.../script.py
Entry->>Paths: substitute_container_or_host_paths(script)
Paths-->>Entry: script unchanged (no path placeholders)
Entry->>Entry: script_path = base_path / script<br/>(returns script since absolute)
Note over Entry: Construct full command
Entry->>Entry: cmd = f"python {script_path} {args}"
Note over Entry: Process full command
Entry->>Reserved: substitute_reserved_placeholders(cmd)
Reserved->>DatasetResolver: resolve("mscoco", "wds")
DatasetResolver-->>Reserved: "{datasets_path}/mscoco/wds/..."
Reserved->>Reserved: Replace {session_entry_dir}
Reserved-->>Entry: cmd with {datasets_path} still present
Entry->>Paths: substitute_container_or_host_paths(cmd)
Paths->>PathResolver: resolve("datasets_path")
PathResolver-->>Paths: /path/to/datasets
Paths-->>Entry: Fully resolved command
Entry-->>Session: Return executable command
|
sarahyurick
approved these changes
Jan 7, 2026
Signed-off-by: rlratzel <rratzel@nvidia.com>
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.
Adds image curation benchmark to nightly run. This uses the image curation "getting started" tutorial.