-
i found exp_manager.exp_dir will save log and tensorboard together.i want to separate save in diff dir ,how to set ? |
Beta Was this translation helpful? Give feedback.
Answered by
VahidooX
Oct 6, 2021
Replies: 1 comment 1 reply
-
We don't have that feature, but you may have two options: +change the code here and pass another path to the loggers: https://github.com/NVIDIA/NeMo/blob/main/nemo/utils/exp_manager.py#L283 +create a symbolic link for the checkpoint folder at the same path (which points to somewhere else) so that the checkpoints can be saved in another place. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jaffe-fly
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We don't have that feature, but you may have two options:
+change the code here and pass another path to the loggers: https://github.com/NVIDIA/NeMo/blob/main/nemo/utils/exp_manager.py#L283
+create a symbolic link for the checkpoint folder at the same path (which points to somewhere else) so that the checkpoints can be saved in another place.