Hey guys,
I am totally new to W&B. I am getting a Traceback error when I want to run “wandb.init(project=”…“)”. Last week it still did work. Any tips what to do?? Thank you so much.
Traceback (most recent call last):
File "/home/p/pthielge/.local/lib/python3.6/site-packages/wandb/sdk/wandb_init.py", line 999, in init
run = wi.init()
File "/home/p/pthielge/.local/lib/python3.6/site-packages/wandb/sdk/wandb_init.py", line 651, in init
backend.cleanup()
File "/home/p/pthielge/.local/lib/python3.6/site-packages/wandb/sdk/backend/backend.py", line 246, in cleanup
self.interface.join()
File "/home/p/pthielge/.local/lib/python3.6/site-packages/wandb/sdk/interface/interface_shared.py", line 475, in join
super().join()
File "/home/p/pthielge/.local/lib/python3.6/site-packages/wandb/sdk/interface/interface.py", line 666, in join
_ = self._communicate_shutdown()
File "/home/p/pthielge/.local/lib/python3.6/site-packages/wandb/sdk/interface/interface_shared.py", line 472, in _communicate_shutdown
_ = self._communicate(record)
File "/home/p/pthielge/.local/lib/python3.6/site-packages/wandb/sdk/interface/interface_shared.py", line 226, in _communicate
return self._communicate_async(rec, local=local).get(timeout=timeout)
File "/home/p/pthielge/.local/lib/python3.6/site-packages/wandb/sdk/interface/interface_shared.py", line 231, in _communicate_async
raise Exception("The wandb backend process has shutdown")
Exception: The wandb backend process has shutdown
wandb: ERROR Abnormal program exit
---------------------------------------------------------------------------
Exception Traceback (most recent call last)
~/.local/lib/python3.6/site-packages/wandb/sdk/wandb_init.py in init(job_type, dir, config, project, entity, reinit, tags, group, name, notes, magic, config_exclude_keys, config_include_keys, anonymous, mode, allow_val_change, resume, force, tensorboard, sync_tensorboard, monitor_gym, save_code, id, settings)
998 try:
--> 999 run = wi.init()
1000 except_exit = wi.settings._except_exit
~/.local/lib/python3.6/site-packages/wandb/sdk/wandb_init.py in init(self)
650 # we don't need to do console cleanup at this point
--> 651 backend.cleanup()
652 self.teardown()
~/.local/lib/python3.6/site-packages/wandb/sdk/backend/backend.py in cleanup(self)
245 if self.interface:
--> 246 self.interface.join()
247 if self.wandb_process:
~/.local/lib/python3.6/site-packages/wandb/sdk/interface/interface_shared.py in join(self)
474 def join(self) -> None:
--> 475 super().join()
476
~/.local/lib/python3.6/site-packages/wandb/sdk/interface/interface.py in join(self)
665 return
--> 666 _ = self._communicate_shutdown()
667
~/.local/lib/python3.6/site-packages/wandb/sdk/interface/interface_shared.py in _communicate_shutdown(self)
471 record = self._make_record(request=request)
--> 472 _ = self._communicate(record)
473
~/.local/lib/python3.6/site-packages/wandb/sdk/interface/interface_shared.py in _communicate(self, rec, timeout, local)
225 ) -> Optional[pb.Result]:
--> 226 return self._communicate_async(rec, local=local).get(timeout=timeout)
227
~/.local/lib/python3.6/site-packages/wandb/sdk/interface/interface_shared.py in _communicate_async(self, rec, local)
230 if self._process_check and self._process and not self._process.is_alive():
--> 231 raise Exception("The wandb backend process has shutdown")
232 future = self._router.send_and_receive(rec, local=local)
Exception: The wandb backend process has shutdown
The above exception was the direct cause of the following exception:
Exception Traceback (most recent call last)
<ipython-input-49-e3734aa09c65> in <module>
1 #Login to wandb
2 # #! wandb login config_dict["wandb_key"]
----> 3 wandb.init()
4 #run_name = wandb.run.name
~/.local/lib/python3.6/site-packages/wandb/sdk/wandb_init.py in init(job_type, dir, config, project, entity, reinit, tags, group, name, notes, magic, config_exclude_keys, config_include_keys, anonymous, mode, allow_val_change, resume, force, tensorboard, sync_tensorboard, monitor_gym, save_code, id, settings)
1035 if except_exit:
1036 os._exit(-1)
-> 1037 raise Exception("problem") from error_seen
1038 return run
Exception: problem