WandB: Any ways to disable artifacts logs every steps but the scores? #12097
-
Hi all, Happy new year to you all! It seems that wandb stores artifact locally as well as on the cloud storage. Since I use it mainly to look at the scores and hyperparameter-tuning, I do not really see advantages of saving every-single model checkpoint to the artifact. This gets really large in several runs and pressuring both local machine (both my local local machine) and the cloud storage. How do people usually manage these in their training process? It seems that there is one line of code where Spacy.loggers do artifact logging. Should I fork and create my own version to modify this line so that it won't save the artifact every-single logging steps? I could not find a global setting on WandB end to disable artifact logging. I have been running Thank you so much! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can simply pass |
Beta Was this translation helpful? Give feedback.
You can simply pass
None
as the argument to themodel_log_interval
,log_dataset_dir
,log_best_dir
,log_latest_dir
parameters ofWandbLogger.v4
to disable the storage of artifacts.