-
Notifications
You must be signed in to change notification settings - Fork 23
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
A precheck function in customize.py #357
Labels
enhancement
New feature or request
Comments
arjunsuresh
added a commit
that referenced
this issue
Nov 29, 2024
* Delete tests directory * Delete report directory * Delete challenge directory * Added predeps function, fixes #357 * [Automated Commit] Format Codebase * Update format.yml | Avoid formatting deleted files * Added a meta option to turn off predeps * [Automated Commit] Format Codebase * Added a meta option to turn off predeps * [Automated Commit] Format Codebase * Update README-extra.md --------- Co-authored-by: mlcommons-bot <[email protected]>
github-project-automation
bot
moved this from Todo
to Done
in CM as next generation of CK
Nov 29, 2024
arjunsuresh
added a commit
that referenced
this issue
Dec 1, 2024
* Delete tests directory * Delete report directory * Delete challenge directory * Added predeps function, fixes #357 * [Automated Commit] Format Codebase * Update format.yml | Avoid formatting deleted files * Added a meta option to turn off predeps * [Automated Commit] Format Codebase * Added a meta option to turn off predeps * [Automated Commit] Format Codebase * Update README-extra.md * Added pandas deps for sdxl --------- Co-authored-by: mlcommons-bot <[email protected]>
arjunsuresh
added a commit
that referenced
this issue
Dec 3, 2024
* Delete tests directory * Delete report directory * Delete challenge directory * Added predeps function, fixes #357 * [Automated Commit] Format Codebase * Update format.yml | Avoid formatting deleted files * Added a meta option to turn off predeps * [Automated Commit] Format Codebase * Added a meta option to turn off predeps * [Automated Commit] Format Codebase * Update README-extra.md * Added pandas deps for sdxl --------- Co-authored-by: mlcommons-bot <[email protected]>
arjunsuresh
added a commit
to mlcommons/mlperf-automations_archived
that referenced
this issue
Dec 4, 2024
* Delete tests directory * Delete report directory * Delete challenge directory * Added predeps function, fixes mlcommons#357 * [Automated Commit] Format Codebase * Update format.yml | Avoid formatting deleted files * Added a meta option to turn off predeps * [Automated Commit] Format Codebase * Added a meta option to turn off predeps * [Automated Commit] Format Codebase * Update README-extra.md --------- Co-authored-by: mlcommons-bot <[email protected]> Former-commit-id: 4ca0eb2
arjunsuresh
added a commit
to mlcommons/mlperf-automations_archived
that referenced
this issue
Dec 4, 2024
* Support input conf_file for mlperf-power-server * Support num_analyzers input * Don't save console log for mlperf power, revisit later * Update format.yml * [Automated Commit] Format Codebase * Added predeps function, removed unused dirs (mlcommons#629) * Delete tests directory * Delete report directory * Delete challenge directory * Added predeps function, fixes mlcommons#357 * [Automated Commit] Format Codebase * Update format.yml | Avoid formatting deleted files * Added a meta option to turn off predeps * [Automated Commit] Format Codebase * Added a meta option to turn off predeps * [Automated Commit] Format Codebase * Update README-extra.md Former-commit-id: 3374925
arjunsuresh
pushed a commit
to mlcommons/mlperf-automations_archived
that referenced
this issue
Dec 4, 2024
* changes for igbh dataset download * changed logic precedence * handle if env not in dependency Former-commit-id: 69d670c Added pandas deps for sdxl reference implementation (mlcommons#637) * Delete tests directory * Delete report directory * Delete challenge directory * Added predeps function, fixes mlcommons#357 * [Automated Commit] Format Codebase * Update format.yml | Avoid formatting deleted files * Added a meta option to turn off predeps * [Automated Commit] Format Codebase * Added a meta option to turn off predeps * [Automated Commit] Format Codebase * Update README-extra.md * Added pandas deps for sdxl --------- Former-commit-id: f2e18e6
arjunsuresh
added a commit
to mlcommons/mlperf-automations_archived
that referenced
this issue
Dec 4, 2024
* Delete tests directory * Delete report directory * Delete challenge directory * Added predeps function, fixes mlcommons#357 * [Automated Commit] Format Codebase * Update format.yml | Avoid formatting deleted files * Added a meta option to turn off predeps * [Automated Commit] Format Codebase * Added a meta option to turn off predeps * [Automated Commit] Format Codebase * Update README-extra.md * Added pandas deps for sdxl --------- Co-authored-by: mlcommons-bot <[email protected]> Former-commit-id: 8b69f08 Update README.md Former-commit-id: 8acaa22
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We do have cases where we want to turn on some dependencies based on some input validation. For example, if a model path is given and we might want to validate the presence of model (say using md5sum check) and only if it fails turn on the model download dependency. Currently this is possible via doing the check in preprocess function and doing the download as a prehook dependency. It'll be a cleaner approach if we can do this check in a
precheck
function and use normal dependencies instead of prehook dependencies.The text was updated successfully, but these errors were encountered: