starcoder icon indicating copy to clipboard operation
starcoder copied to clipboard

How to disable "wandb" while running finetune.py

Open leemgs opened this issue 1 year ago • 3 comments

Hi there. I am wondering how to disable the functionality of wanddb, when running finetune.py. Is it possible to do this by executing the "$wandb offline" command?

Or are there any options instead of "report_to="wandb"" when running Starcoder's finetune.py file?

  • https://github.com/bigcode-project/starcoder/blob/main/finetune/finetune.py#L285

leemgs avatar May 21 '23 07:05 leemgs

report_to=[] is ok

amwork2020 avatar May 23 '23 02:05 amwork2020

You can remove that argument in Trainer, or change where you want to report your logs, e.g. report_to=["tensorboard"]. In this case you will have to make sure that it is properly installed.

ArmelRandy avatar May 30 '23 10:05 ArmelRandy

I did something like WANDB_MODE=disabled python finetune.py --args when doing a testing run.

ywen666 avatar Jun 06 '23 19:06 ywen666

You can remove that argument in Trainer, or change where you want to report your logs, e.g. report_to=["tensorboard"]. In this case you will have to make sure that it is properly installed.

remove is not working

CEfanmin avatar Oct 11 '23 06:10 CEfanmin