Closed jing-zhao9 closed 1 year ago
Error in call to target 'pytorch_lightning.loggers.wandb.WandbLogger':
UsageError('api_key not configured (no-tty). call wandb.login(key=[your_api_key])')
full_key: logger.wandb
Seems like you have not configured wandb
(ie Weights&Biases) with your API key. When running from the CLI for the first time, you should normally be prompted a message asking you to provide your API key. See W&B documentation for more information.
If you do not want to use the wandb
logger, you can disable it in your train.yaml
config:
logger: null
Or by specifying it from the CLI:
python src/train.py experiment=s3dis logger=null
Please let me know if this solves your problem.
I consider this issue closed. Feel free to re-open it if necessary.
Hi,When I ran
train.py
, I encountered the following error