LLaVA icon indicating copy to clipboard operation
LLaVA copied to clipboard

[Question] How to set Wandb names?

Open attnmamba opened this issue 1 year ago • 2 comments

Question

How do you set the wandb names for the project and run?

It is currently defaulting to the project4 name huggingface and a random name is assigned for the run.

attnmamba avatar Jan 29 '24 04:01 attnmamba

I add the following scripts:

os.environ["WANDB_PROJECT"]="YOUR_PROJECT_NAME" in LLaVA/llava/train/train_mem.py

and --run_name 'YOUR_RUN_NAME' \ to training arguments

LeoLee7 avatar Jan 29 '24 23:01 LeoLee7

I add the following scripts:

os.environ["WANDB_PROJECT"]="YOUR_PROJECT_NAME" in LLaVA/llava/train/train_mem.py

and --run_name 'YOUR_RUN_NAME' \ to training arguments

same with you

HenryHZY avatar Jan 30 '24 01:01 HenryHZY