Error while calling W&B API: permission denied
See original GitHub issueHello,
I am training a model on a remote server and I got this error after running on the terminal wandb login
and running the training script itself.
wandb: Tracking run with wandb version 0.8.15
wandb: Run data is saved locally in wandb/run-20191107_074736-rjih2419
wandb: ERROR Error while calling W&B API: permission denied (<Response [403]>)
wandb: ERROR Launch exception: Permission denied to access wandb/Dressyou Recommender system/rjih2419
wandb: ERROR To disable wandb syncing set WANDB_MODE=dryrun
wandb: ERROR W&B process (PID 19599) did not respond
wandb: ERROR W&B process failed to launch, see: wandb/debug.log
Traceback (most recent call last):
File "script/train.py", line 168, in <module>
wandb.init(entity="wandb", project="Dressyou Recommender system")
File "/home/amal/miniconda3/envs/all_dep_cuda/lib/python3.7/site-packages/wandb/__init__.py", line 1051, in init
_init_headless(run)
File "/home/amal/miniconda3/envs/all_dep_cuda/lib/python3.7/site-packages/wandb/__init__.py", line 288, in _init_headless
"W&B process failed to launch, see: {}".format(path))
wandb.run_manager.LaunchError: W&B process failed to launch, see: wandb/debug.log
Do you have an idea how to solve this please ?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:19 (8 by maintainers)
Top Results From Across the Web
Error while calling W&B API: permission denied · Issue #673
I am training a model on a remote server and I got this error after running on the terminal wandb login and running...
Read more >Got "Permission Denied" error message when use ... - MSDN
When I click the button "mmmmm!" to call the web service, I always got the error message "Permission Denied", I am not sure...
Read more >Permission denied error while call webservice using HTTP in ...
I'm working in android application. I create a web service in Java. Now i want to refer a web service using HTTP. But...
Read more >Troubleshoot IAM policy access denied or unauthorized ...
This error message includes the API name, API caller, and target resource. Be sure that the IAM identity that called the API has...
Read more >Error "Access Denied" in call "Update a User" from Users
Hi, I am testing the Users APIs, but in the request call “Update a User” I am receiving the error response “403 Access...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hey @bamal it looks like you’re trying to launch runs into the “wandb” team. The quickest fix is to set entity=“bamal” (or your wandb username) when you call wandb.init
Hey @radoye that’s a permission error. You’re trying to save results to
entity="wandb", project="set-run-name-to-id"
which you don’t have permission to. In your call to init, addentity="YOUR_USERNAME"
and try again.