Are you seeing: wandb: ERROR Error while calling W&B API: An internal error occurred. Please contact support. (<Response [500]>)
every time you call wandb.init? if so:
Could we try completely resetting your login information and see if that works for you?
run rm ~/.netrc (will remove and refreshes login credentials)
run wandb login --relogin --cloud
Or alternatively, in your testing script you can include: wandb.login( key="<your api key>")
import wandb
run = wandb.init()
run.log({"test":1234})
run.finish()
And then send me the full console log output of that run.
If the run throws an error, could you please provide the debug.log and debug-internal.log files associated with the run where you are running into this issue? These files should be located in the wandb folder relative to your working directory.