mshumer / gpt-llm-trainer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Logging into wandb.ai

Afo92 opened this issue · comments

commented

Hello!
the cell after"Load Datasets and Train" throw me a prompt to enter API details for wandb.ai. here is the message I get:

Failed to detect the name of this notebook, you can set it manually with the WANDB_NOTEBOOK_NAME environment variable to enable code saving.
wandb: Logging into wandb.ai. (Learn how to deploy a W&B server locally: https://wandb.me/wandb-server)
wandb: You can find your API key in your browser here: https://wandb.ai/authorize
wandb: Paste an API key from your profile and hit enter, or press ctrl+c to quit:

I want to run everything locally, I already replace the codes that goes to openai, but i don't see where this wandb is call and how to avoid it!
Before I'm looking at (Learn how to deploy a W&B server locally: https://wandb.me/wandb-server) Can you help with directions on how to not use wandb?
thank you

import os
os.environ[“WANDB_DISABLED”] = “true” will do the job
https://discuss.huggingface.co/t/how-to-turn-wandb-off-in-trainer/6237