-
Notifications
You must be signed in to change notification settings - Fork 343
Minor DoMINO training bug fixes #907
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
base: main
Are you sure you want to change the base?
Conversation
/blossom-ci |
/blossom-ci |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This version change should not happen in the main branch
@@ -596,8 +596,8 @@ def main(cfg: DictConfig) -> None: | |||
vol_save_path = os.path.join(cfg.project_dir, "volume_scaling_factors.npy") | |||
surf_save_path = os.path.join(cfg.project_dir, "surface_scaling_factors.npy") | |||
if os.path.exists(vol_save_path) and os.path.exists(surf_save_path): | |||
vol_factors = np.load(vol_save_path) | |||
surf_factors = np.load(surf_save_path) | |||
vol_factors = np.load(vol_save_path, allow_pickle=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this a must?
Security vulnerability to support using pickle
PhysicsNeMo Pull Request
Minor DoMINO training bug fixes
Description
Checklist
Dependencies