Please see a complete traceback below.
are you sure you are logging to the correct entity?
I go through the authentication without a problem.
I used the params that you suggested (adjusted for spelling) -
wandb.init(project='HDBSCAN_Clustering')
sweep_id = wandb.sweep(hdbscan_config, entity='drob', project='HDBSCAN_Clustering')
I have also tried:
wandb.init(project='HDBSCAN_Clustering')
sweep_id = wandb.sweep(hdbscan_config, entity='teamberkeley', project='HDBSCAN_Clustering')
Neither works. If I remove the ‘entity’ setting from sweep() I am definately logged in because I can execute sweeps and everything works. However, the issue is that everything winds up in ‘uncategorized’.
Here is a link to my colab notebook. As you can see it is very stripped down:
Perhaps you could point me to code that works that does what I’m trying to do?
Changes to your `wandb` environment variables will be ignored because your `wandb` session has already started. For more information on how to modify your settings with `wandb.init()` arguments, please refer to the W&B docs.
Problem at: <ipython-input-13-68824eaa576c> 1 <module>
Traceback (most recent call last):
File "/usr/local/lib/python3.7/dist-packages/wandb/sdk/wandb_init.py", line 999, in init
run = wi.init()
File "/usr/local/lib/python3.7/dist-packages/wandb/sdk/wandb_init.py", line 651, in init
backend.cleanup()
File "/usr/local/lib/python3.7/dist-packages/wandb/sdk/backend/backend.py", line 246, in cleanup
self.interface.join()
File "/usr/local/lib/python3.7/dist-packages/wandb/sdk/interface/interface_shared.py", line 475, in join
super().join()
File "/usr/local/lib/python3.7/dist-packages/wandb/sdk/interface/interface.py", line 666, in join
_ = self._communicate_shutdown()
File "/usr/local/lib/python3.7/dist-packages/wandb/sdk/interface/interface_shared.py", line 472, in _communicate_shutdown
_ = self._communicate(record)
File "/usr/local/lib/python3.7/dist-packages/wandb/sdk/interface/interface_shared.py", line 226, in _communicate
return self._communicate_async(rec, local=local).get(timeout=timeout)
File "/usr/local/lib/python3.7/dist-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)
/usr/local/lib/python3.7/dist-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
8 frames
/usr/local/lib/python3.7/dist-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()
/usr/local/lib/python3.7/dist-packages/wandb/sdk/backend/backend.py in cleanup(self)
245 if self.interface:
--> 246 self.interface.join()
247 if self.wandb_process:
/usr/local/lib/python3.7/dist-packages/wandb/sdk/interface/interface_shared.py in join(self)
474 def join(self) -> None:
--> 475 super().join()
476
/usr/local/lib/python3.7/dist-packages/wandb/sdk/interface/interface.py in join(self)
665 return
--> 666 _ = self._communicate_shutdown()
667
/usr/local/lib/python3.7/dist-packages/wandb/sdk/interface/interface_shared.py in _communicate_shutdown(self)
471 record = self._make_record(request=request)
--> 472 _ = self._communicate(record)
473
/usr/local/lib/python3.7/dist-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
/usr/local/lib/python3.7/dist-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-13-68824eaa576c> in <module>()
----> 1 wandb.init(project='HDBSCAN_Clustering')
2 sweep_id = wandb.sweep(hdbscan_config, entity='drob', project='HDBSCAN_Clustering')
/usr/local/lib/python3.7/dist-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