-
Notifications
You must be signed in to change notification settings - Fork 59
Feat/training report metadata #992
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
Merged
podkidyshev
merged 4 commits into
NVIDIA:main
from
blugassi:feat/training-report-metadata
Aug 12, 2026
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
e710cee
feat(training_report): add resolved run metadata
blugassi 2fea893
feat(training_report): add scenario-level reporter
blugassi f5efccd
feat(training_report): add configuration source paths
blugassi d588f09
Merge branch 'main' into feat/training-report-metadata
blugassi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| Reports | ||
| ======= | ||
|
|
||
| CloudAI report schemas describe the generated output for supported workload categories. | ||
|
|
||
| .. toctree:: | ||
| :maxdepth: 1 | ||
|
|
||
| training-report-schema |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,67 @@ | ||
| Training Report Schema | ||
| ====================== | ||
|
|
||
| ``training_report.json`` is the unified training output for NeMoRun, MegatronRun, and Megatron-Bridge. | ||
|
|
||
| Versioning | ||
| ---------- | ||
|
|
||
| The top-level ``schema_version`` field uses ``MAJOR.MINOR`` versioning: | ||
|
|
||
| - Increment **MAJOR** when removing, renaming, or incompatibly changing a field. | ||
| - Increment **MINOR** when adding an optional field or otherwise making a backward-compatible schema change. | ||
| - Do not change the schema version for implementation fixes that leave the JSON contract unchanged. | ||
|
|
||
| Consumers should reject unsupported major versions and tolerate unknown fields within a supported major version. | ||
|
|
||
| Version History | ||
| --------------- | ||
|
|
||
| 1.0 — 2026-07-14 | ||
| ~~~~~~~~~~~~~~~~ | ||
|
|
||
| Added to ``root``: | ||
|
|
||
| - ``schema_version``: ``str`` | ||
|
|
||
| Added to ``root.config``: | ||
|
|
||
| - ``test_id``: ``str`` | ||
| - ``test_name``: ``str`` | ||
| - ``description``: ``str`` | ||
| - ``test_scenario_name``: ``str`` | ||
| - ``system_path``: ``str`` | ||
| - ``tests_dir_path``: ``str`` | ||
| - ``test_scenario_path``: ``str`` | ||
| - ``container_image``: ``str`` | ||
| - ``cloudai_execution_node``: ``str`` | ||
| - ``env_vars``: ``dict[str, Any]`` | ||
| - ``gpus_per_node``: ``Optional[int]`` | ||
| - ``nodes``: ``list[str]`` | ||
| - ``clique_size``: ``Optional[int]`` | ||
| - ``fp8``: ``Optional[str]`` | ||
| - ``fp8_recipe``: ``Optional[str]`` | ||
| - ``expert_tensor_parallel_size``: ``int`` | ||
|
coderabbitai[bot] marked this conversation as resolved.
|
||
|
|
||
| Training Report Models | ||
| ---------------------- | ||
|
|
||
| .. autoclass:: cloudai.report_generator.training.models.TrainingResults | ||
| :members: | ||
| :exclude-members: __init__ | ||
|
|
||
| .. autoclass:: cloudai.report_generator.training.models.TrainingConfig | ||
| :members: | ||
| :exclude-members: __init__ | ||
|
|
||
| .. autoclass:: cloudai.report_generator.training.models.TrainingStep | ||
| :members: | ||
| :exclude-members: __init__ | ||
|
|
||
| .. autoclass:: cloudai.report_generator.training.models.StepAggregation | ||
| :members: | ||
| :exclude-members: __init__, from_steps | ||
|
|
||
| .. autoclass:: cloudai.report_generator.training.models.MetricStats | ||
| :members: | ||
| :exclude-members: __init__, from_values | ||
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.